The quickest way to get from nothing to Ruby and Rails

How to get Ruby on Rails set up easily and quickly on your Mac

This is the quickest/easiest way I can see for someone running Mac OSx to get up and running with Ruby on Rails assuming they are starting with a blank slate.

Just dumping it here for future reference;

curl -L https://get.rvm.io | bash
source "/Users/your-username/.rvm/scripts/rvm"
rvm get stable
rvm reload
rvm install 2.0.0 (this might take some time and you may need to enter your password a couple of times)
gem install rails

Now you are ready to call rails new my_awesome_app.


Recent posts View all

Web Dev

Updating payment method email addresses in Stripe

You can't update the email address associated with a payment method in Stripe via their dashboard, you need to use the Stripe CLI

Ruby

Irreversible Rails Migrations

What are irreversible migrations and how might we use them to our advantage?