Skip to content

Instantly share code, notes, and snippets.

@hmcfletch
Created November 28, 2011 08:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hmcfletch/1399601 to your computer and use it in GitHub Desktop.
Save hmcfletch/1399601 to your computer and use it in GitHub Desktop.
Get the latest Rails up and running locally
# 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