Sha256: 5d7de0aac105e9ba64efec230f7510f01cb78c4cf4d523c6f175e699f86345c7
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
require 'rubygems' require 'rake/gempackagetask' require 'rubygems/specification' require 'date' GEM = "<%= name %>" GEM_VERSION = "0.0.1" AUTHOR = "Your Name" EMAIL = "Your Email" HOMEPAGE = "http://example.com" SUMMARY = "A gem that provides..." spec = Gem::Specification.new do |s| s.name = GEM s.version = GEM_VERSION s.platform = Gem::Platform::RUBY s.has_rdoc = true s.extra_rdoc_files = ["README", "LICENSE", 'TODO'] s.summary = SUMMARY s.description = s.summary s.author = AUTHOR s.email = EMAIL s.homepage = HOMEPAGE # Uncomment this to add a dependency # s.add_dependency "foo" s.require_path = 'lib' s.autorequire = GEM s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs}/**/*") end Rake::GemPackageTask.new(spec) do |pkg| pkg.gem_spec = spec end desc "install the gem locally" task :install => [:package] do sh %{sudo gem install pkg/#{GEM}-#{GEM_VERSION}} end desc "create a gemspec file" task :make_spec do File.open("#{GEM}.gemspec", "w") do |file| file.puts spec.to_ruby end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
newgem-0.24.0 | app_generators/newgem_simple/templates/Rakefile |
newgem-0.25.0 | app_generators/newgem_simple/templates/Rakefile |