Sha256: 35cd33faf7f217164b1d1787579c12e616d0b1b1479ca79b6f8f3cdd69ec13f9

Contents?: true

Size: 681 Bytes

Versions: 18

Compression:

Stored size: 681 Bytes

Contents

# encoding: ascii-8bit

# Create the overall gemspec
Gem::Specification.new do |s|
  s.name = '<%= plugin_name %>'
  s.summary = 'OpenC3 <%= plugin_name %> plugin'
  s.description = <<-EOF
    <%= plugin_name %> plugin for deployment to OpenC3
  EOF
  s.license = 'MIT'
  s.authors = ['Anonymous']
  s.email = ['name@domain.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

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
openc3-6.2.1 templates/plugin/plugin.gemspec
openc3-6.2.0 templates/plugin/plugin.gemspec
openc3-6.1.0 templates/plugin/plugin.gemspec
openc3-6.0.2 templates/plugin/plugin.gemspec
openc3-6.0.1 templates/plugin/plugin.gemspec
openc3-6.0.0 templates/plugin/plugin.gemspec
openc3-5.20.0 templates/plugin/plugin.gemspec
openc3-5.19.0 templates/plugin/plugin.gemspec
openc3-5.18.0 templates/plugin/plugin.gemspec
openc3-5.17.1 templates/plugin/plugin.gemspec
openc3-5.17.0 templates/plugin/plugin.gemspec
openc3-5.16.0 templates/plugin/plugin.gemspec
openc3-5.15.2 templates/plugin/plugin.gemspec
openc3-5.15.1 templates/plugin/plugin.gemspec
openc3-5.15.0 templates/plugin/plugin.gemspec
openc3-5.14.2 templates/plugin/plugin.gemspec
openc3-5.14.1 templates/plugin/plugin.gemspec
openc3-5.14.0 templates/plugin/plugin.gemspec