Skip to content

Instantly share code, notes, and snippets.

@tutysara
Last active December 30, 2015 17:19
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 tutysara/7860334 to your computer and use it in GitHub Desktop.
Save tutysara/7860334 to your computer and use it in GitHub Desktop.
Install rails on osx
# adapted from - https://github.com/saasbook/courseware/blob/master/vm-setup/configure-image-0.10.2.sh
# install rvm and ruby
curl -L https://get.rvm.io | bash -s stable --ruby=1.9.3
source /home/ubuntu/.rvm/scripts/rvm
# install gems
## GEMS
# install rails 3.2.13
gem install rails -v 3.2.13
# sqlite 3 gem
gem install sqlite3-ruby
# other gems
gem install cucumber -v 1.3.2
gem install cucumber-rails -v 1.0.0
gem install cucumber-rails-training-wheels
gem install rspec
gem install autotest
gem install spork
gem install metric_fu
gem install debugger
gem install timecop -v 0.6.1
gem install chronic -v 0.9.1
gem install omniauth
gem install omniauth-twitter
gem install nokogiri
gem install ruby-tmdb -v 0.2.1
gem install ruby-graphviz
gem install reek
gem install flog
gem install flay
rvm 1.9.3 do gem install jquery-rails
gem install fakeweb
# install nodejs and npm
brew install nodejs
# install graphviz
brew install graphviz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment