Artifact [3ac12245a3]
Artifact 3ac12245a36537105035d6551cf972e6baf0a15b:
- File Rakefile — part of check-in [9111aeaef0] at 2011-01-04 01:25:06 on branch trunk — - Add gem packaging (user: jls@semicomplete.com size: 304)
task :default => [:package]
task :test do
system("cd test; ruby alltests.rb")
end
task :package => [:test, :package_real] do
end
task :package_real do
system("gem build fpm.gemspec")
end
task :publish do
latest_gem = %x{ls -t fpm*.gem}.split("\n").first
system("gem push #{latest_gem}")
end