mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Add install script for testing gems locally
This commit is contained in:
parent
06b95314db
commit
f79f9a74a4
1 changed files with 11 additions and 0 deletions
11
install.rb
Normal file
11
install.rb
Normal file
|
@ -0,0 +1,11 @@
|
|||
version = ARGV.pop
|
||||
|
||||
%w( activesupport activemodel activerecord activeresource actionpack actionmailer railties ).each do |framework|
|
||||
puts "Installing #{framework}..."
|
||||
`cd #{framework} && gem build #{framework}.gemspec && gem install #{framework}-#{version}.gem --no-ri --no-rdoc && rm #{framework}-#{version}.gem`
|
||||
end
|
||||
|
||||
puts "Installing Rails..."
|
||||
`gem build rails.gemspec`
|
||||
`gem install rails-#{version}.gem --no-ri --no-rdoc `
|
||||
`rm rails-#{version}.gem`
|
Loading…
Reference in a new issue