openc3-cosmos-init/plugins/packages/openc3-cosmos-http-example/openc3-cosmos-http-example.gemspec
# encoding: ascii-8bit
# Create the overall gemspec
spec = Gem::Specification.new do |s|
s.name = 'openc3-cosmos-http-example'
s.summary = 'OpenC3 COSMOS Http Example'
s.description = <<-EOF
Provides an example target using the HttpClientInterface and HttpServerInterface
EOF
s.licenses = ['AGPL-3.0-only', 'Nonstandard']
s.authors = ['Ryan Melton']
s.email = ['ryan@openc3.com']
s.homepage = 'https://github.com/OpenC3/cosmos'
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.files = Dir.glob("{targets,lib,tools,microservices}/**/*") + %w(Rakefile README.md LICENSE.txt plugin.txt)
end