Modify the Rakefile to support a jgem install.

This commit is contained in:
Stefan Penner 2009-02-24 21:55:06 -06:00 committed by Nathan Weizenbaum
parent 8a5ae5ba6d
commit 5e09c48227
1 changed files with 3 additions and 2 deletions

View File

@ -64,7 +64,8 @@ at_exit { File.delete('REVISION') rescue nil }
desc "Install Haml as a gem."
task :install => [:package] do
sudo = RUBY_PLATFORM =~ /win32/ ? '' : 'sudo'
sh %{#{sudo} gem install --no-ri pkg/haml-#{File.read('VERSION').strip}}
gem = RUBY_PLATFORM =~ /java/ ? 'jgem' : 'gem'
sh %{#{sudo} #{gem} install --no-ri pkg/haml-#{File.read('VERSION').strip}}
end
desc "Release a new Haml package to Rubyforge. Requires the NAME and VERSION flags."
@ -181,4 +182,4 @@ namespace :test do
`rm -rf test/rails`
end
end
end
end