koding.com ruby on rails setup
John Davison photo
Get notifications about new tutorials, code and events.

click: follow along with the source code

TODO

VERIFY GIT, INSTALL: RVM, RUBY, RAILS

CREATE AND RUN A NEW APP

verify git

git –version

isntall rvm, open a terminal

\curl -L https://get.rvm.io bash -s stable –ruby

source ~/.rvm/scripts/rvm

rvm requirements

– this one requires your koding password,
– it takes a while to run so be patient

install ruby 2.1.1

rvm install ruby 2.1.1

ruby -v

suppress ri documentation installation

touch ~/.gemrc

modify ~/.gemrc with the ace koding tool

#### we don’t want docs installed, it is slow

  gem: --no-document

install rails

gem install rails

mkdir apps

cd apps

create a new application call it what you want

rails new restaurantly

cd restaurantly

rails server

you are ready to rock!!!

we will install posgresql on koding in another video,

Mad Props to Lee @koding, he puts up with me, I’m demanding and un-abashed about it.

Get notifications about new tutorials, code and events.