mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
f1637bf2bb
Dear Active Resource, It's not that I hate you or anything, but you didn't get much attention lately. There're so many alternatives out there, and I think people have made their choice to use them than you. I think it's time for you to have a big rest, peacefully in this Git repository. I will miss you, @sikachu.
11 lines
441 B
Ruby
11 lines
441 B
Ruby
version = ARGV.pop
|
|
|
|
%w( activesupport activemodel activerecord 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`
|