-
Notifications
You must be signed in to change notification settings - Fork 1
/
openc3-cosmos-cfdp.gemspec
40 lines (35 loc) · 1.24 KB
/
openc3-cosmos-cfdp.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# encoding: ascii-8bit
# Copyright 2023 OpenC3, Inc.
# All Rights Reserved.
#
# Licensed for Evaluation and Educational Use
#
# This file may only be used commercially under the terms of a commercial license
# purchased from OpenC3, Inc.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# The development of this software was funded in-whole or in-part by MethaneSAT LLC.
# Create the overall gemspec
spec = Gem::Specification.new do |s|
s.name = 'openc3-cosmos-cfdp'
s.summary = 'OpenC3 COSMOS CFDP'
s.description = <<-EOF
This plugin provides COSMOS Support for CFDP
EOF
s.authors = ['Ryan Melton', 'Jason Thomas']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'https://github.com/OpenC3/openc3'
s.platform = Gem::Platform::RUBY
if ENV['VERSION']
s.version = ENV['VERSION'].dup
else
time = Time.now.strftime("%Y%m%d%H%M%S")
s.version = '0.0.0' + ".#{time}"
end
s.licenses = ['Nonstandard']
s.require_paths = ['lib', 'microservices/CFDP/app/models']
s.files = Dir.glob("{targets,lib,tools,microservices}/**/*") + %w(Rakefile LICENSE.txt README.md plugin.txt)
end