Sha256: 3b3ffa030bb4f5ddf7caacdc833076d292d21c73cd495ff2a3f5327782340288
Contents?: true
Size: 906 Bytes
Versions: 12
Compression:
Stored size: 906 Bytes
Contents
require 'rubygems' require 'rake/gempackagetask' require 'rubygems/specification' require 'date' GEM = "simple_gem" 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.summary = SUMMARY s.description = s.summary s.author = AUTHOR s.email = EMAIL s.homepage = HOMEPAGE s.require_path = 'lib' s.files = %w(Rakefile) + Dir.glob("{lib}/**/*") end Rake::GemPackageTask.new(spec) do |pkg| pkg.gem_spec = spec end desc "install the gem locally" task :install => [:package] do sh %{sudo #{Gem.ruby} -S 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
12 entries across 6 versions & 1 rubygems