-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenc3-load-sim.gemspec
43 lines (37 loc) · 1.54 KB
/
openc3-load-sim.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
41
42
43
# encoding: ascii-8bit
# Copyright 2022 Ball Aerospace & Technologies Corp.
# All Rights Reserved.
#
# This program is free software; you can modify and/or redistribute it
# under the terms of the GNU Affero General Public License
# as published by the Free Software Foundation; version 3 with
# attribution addendums as found in the LICENSE.txt
#
# 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. See the
# GNU Affero General Public License for more details.
# Modified by OpenC3, Inc.
# All changes Copyright 2022, OpenC3, Inc.
# All Rights Reserved
# Create the overall gemspec
spec = Gem::Specification.new do |s|
s.name = 'openc3-load-sim'
s.summary = 'OpenC3 Load Simulator'
s.description = <<-EOF
This plugin provides a load simulator target and interface to OpenC3.
Provide key performance variables and this plugin will generate a target that produces a representative load of telemetry packets.
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 = ['AGPL-3.0-only', 'Nonstandard']
s.files = Dir.glob("{targets,lib,procedures,tools,microservices}/**/*") + %w(Rakefile LICENSE.txt README.md plugin.txt)
end