Adding geminstaller as build dependency

This commit is contained in:
David Goudreau & Rajan Agaskar 2009-12-28 16:02:09 -08:00
parent c78460289a
commit ca841c9248
1 changed files with 8 additions and 1 deletions

View File

@ -56,7 +56,7 @@ namespace :jasmine do
end end
desc 'Builds lib/jasmine from source' desc 'Builds lib/jasmine from source'
task :build => :lint do task :build => [:lint, 'gems:geminstaller'] do
puts 'Building Jasmine from source' puts 'Building Jasmine from source'
require 'json' require 'json'
@ -143,3 +143,10 @@ jasmine.version_= {
end end
end end
namespace :gems do
desc "Run geminstaller."
task :geminstaller do
`geminstaller --sudo -c config/geminstaller.yml`
end
end