Created
November 28, 2011 08:24
-
-
Save hmcfletch/1399601 to your computer and use it in GitHub Desktop.
Get the latest Rails up and running locally
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this was for Rails 3.2.0 before the RC dropped | |
rvm gemset create rails-master | |
rvm gemset use rails-master | |
cd ~/src | |
git clone git://github.com/rails/arel.git | |
cd arel | |
gem build arel.gemspec | |
gem install arel-*.gem | |
cd .. | |
git clone git://github.com/rails/journey.git | |
cd journey | |
gem build journey.gemspec | |
gem install journey-*.gem | |
cd .. | |
git clone git://github.com/rails/rails.git | |
cd rails | |
cat RAILS_VERSION | xargs ruby install.rb | |
ruby -r 'rails' -e 'puts Rails::VERSION::STRING' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment