Skip to content

Instantly share code, notes, and snippets.

@LucasArruda
Created September 27, 2012 20:42
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 LucasArruda/3796355 to your computer and use it in GitHub Desktop.
Save LucasArruda/3796355 to your computer and use it in GitHub Desktop.
Install Rails - Ubuntu 12.04
#!/bin/sh
# Install Ruby 1.9.3 on rbenv and get Rails
cd
mkdir -p .rbenv/plugins
cd .rbenv/plugins
git clone git://github.com/sstephenson/ruby-build.git
cd
rbenv install 1.9.3-p194
rbenv rehash
rbenv global 1.9.3-p194
gem install rails
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment