01 Init a Rails 4.2.0.beta4 Project - getfretless/elevennote GitHub Wiki
Create a new Rails project
$ rvm install 2.1.4
$ rvm use 2.1.4
$ gem install rails --version '4.2.0.beta4'
$ rails _4.2.0.beta4_ new elevennote -d postgresql
$ cd elevennote
$ git init
$ git add .
$ git commit -m "Init new rails project with 4.2.0.beta4"
Create a GitHub repo
Create a new repository in your GitHub account. Follow the instructions to add this repo as a remote for your local project, and push to that remote.
$ git remote add origin [email protected]:[YOUR GITHUB]/elevennote.git
$ git push -u origin master