Sha256: 3ec4405e7dd457dc7eb9ad9385c9463eb129c2dd1f77ed728ad222a852084b78

Contents?: true

Size: 810 Bytes

Versions: 12

Compression:

Stored size: 810 Bytes

Contents

require 'rake/gempackagetask'

version = File.read('VERSION').chomp

spec = Gem::Specification.new do |s|
  s.name             = 'ruby-station-runtime'
  s.version          = version
  s.has_rdoc         = false
#  s.extra_rdoc_files = %w(README.rdoc)
#  s.rdoc_options     = %w(--main README.rdoc)
  s.summary          = "Runtime library for RubyStation"
  s.author           = 'Yutaka HARA'
  s.email            = 'yutaka.hara/at/gmail.com'
#  s.homepage         = 'http://my-site.net'
  s.files            = %w(Rakefile) + Dir.glob("{lib}/**/*")
end

Rake::GemPackageTask.new(spec) do |pkg|
  pkg.gem_spec = spec
end

desc 'Generate the gemspec'
task :gemspec do
  file = File.dirname(__FILE__) + "/#{spec.name}.gemspec"
  File.open(file, 'w') {|f| f << spec.to_ruby }
  puts "Created gemspec: #{file}"
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
ruby-station-0.1.6 runtime/Rakefile
ruby-station-0.1.5 runtime/Rakefile
ruby-station-0.1.4 runtime/Rakefile
ruby-station-0.1.4.rc3 runtime/Rakefile
ruby-station-0.1.4.rc2 runtime/Rakefile
ruby-station-0.1.4.rc1 runtime/Rakefile
ruby-station-0.1.3 runtime/Rakefile
ruby-station-0.1.2 runtime/Rakefile
ruby-station-0.1.1 runtime/Rakefile
ruby-station-0.1.0 runtime/Rakefile
ruby-station-0.0.4 runtime/Rakefile
ruby-station-runtime-0.0.4 Rakefile