Skip to content

Commit

Permalink
Do not use --local option when installing the gems
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Feb 25, 2013
1 parent c0bc9ce commit 2eb8962
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

%w( activesupport activemodel activerecord actionpack actionmailer railties ).each do |framework|
puts "Installing #{framework}..."
`cd #{framework} && gem build #{framework}.gemspec && gem install #{framework}-#{version}.gem --local --no-ri --no-rdoc && rm #{framework}-#{version}.gem`
`cd #{framework} && gem build #{framework}.gemspec && gem install #{framework}-#{version}.gem --no-ri --no-rdoc && rm #{framework}-#{version}.gem`
end

puts "Installing Rails..."
puts "Installing rails..."
`gem build rails.gemspec`
`gem install rails-#{version}.gem --local --no-ri --no-rdoc `
`gem install rails-#{version}.gem --no-ri --no-rdoc `
`rm rails-#{version}.gem`

0 comments on commit 2eb8962

Please sign in to comment.