Sha256: ab0a10fe7d5abb0a05252d9330782fb4ee884cf4f3f858c45a82e1d7573d355e
Contents?: true
Size: 777 Bytes
Versions: 2
Compression:
Stored size: 777 Bytes
Contents
# encoding: ascii-8bit # Create the overall gemspec spec = Gem::Specification.new do |s| s.name = '<%= plugin_name %>' s.summary = 'Ball Aerospace COSMOS <%= plugin_name %> plugin' s.description = <<-EOF <%= plugin_name %> plugin for deployment to COSMOS EOF s.license = 'AGPL-3.0-only' s.authors = ['Anonymous'] s.email = ['name@domain.com'] s.homepage = 'https://github.com/BallAerospace/COSMOS' s.platform = Gem::Platform::RUBY time = Time.now.strftime("%Y%m%d%H%M%S") if ENV['VERSION'] s.version = ENV['VERSION'].dup + ".#{time}" else s.version = '0.0.0' + ".#{time}" end s.files = Dir.glob("{targets,lib,procedures,tools,microservices}/**/*") + %w(Rakefile README.md plugin.txt) s.add_runtime_dependency 'cosmos', '~> 5.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cosmos-5.0.2 | templates/plugin-template/plugin.gemspec |
cosmos-5.0.2.pre.beta2 | templates/plugin-template/plugin.gemspec |