Last active
December 30, 2015 17:19
-
-
Save tutysara/7860334 to your computer and use it in GitHub Desktop.
Install rails on osx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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