Sha256: 84b687f3bf412e3aa84b379b90ac8f4bf4a0c21e0262b0d529c512e52c1d4bad
Contents?: true
Size: 708 Bytes
Versions: 6
Compression:
Stored size: 708 Bytes
Contents
# encoding: ascii-8bit # Create the overall gemspec spec = 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 = 'AGPL-3.0-only' s.authors = ['Anonymous'] s.email = ['name@domain.com'] s.homepage = 'https://github.com/OpenC3/openc3' 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) end
Version data entries
6 entries across 6 versions & 1 rubygems