This project is my learning ruby by following a tutorial
The following steps will create the same environment on your local machine and you will be able to clone this project so that it will work on your Mac.
$ xcode-select --install$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"$ brew update
$ brew install rbenv ruby-build
$ echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
$ echo 'export PATH="$HOME/.rbenv/shims:$PATH"' >> ~/.bash_profile
$ source ~/.bash_profile$ rbenv install 2.2.1
$ rbenv global 2.2.1
$ ruby -v$ gem install rails -v 4.2.0 --no-ri --no-rdoc
$ rbenv rehash$ ruby -v
# ruby 2.2.1
$ rails -v
# Rails 4.2.0$ bundle installrails s