Skip to content

Instantly share code, notes, and snippets.

@baweaver
Created October 22, 2013 23:00
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 baweaver/7109673 to your computer and use it in GitHub Desktop.
Save baweaver/7109673 to your computer and use it in GitHub Desktop.
A Blueprint for installing Rails. Demonstration for upcoming Handyman gem.
# Blueprint for Installing Rails
# ==============================
#
# Makes Ruby 2 and Rails 4
Ruby:
RVM:
- 'apt-get install curl'
- 'curl -L https://get.rvm.io | bash'
- 'rvm install 2.0'
Bundler:
- 'gem install bundler --pre'
Rails:
- 'gem install rails --no-rdoc --no-ri'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment