Created
July 24, 2012 17:48
-
-
Save eugeniy/3171464 to your computer and use it in GitHub Desktop.
rbenv 1.9.3
This file contains 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
cd ~ | |
git clone git://github.com/sstephenson/rbenv.git .rbenv | |
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.zshrc | |
echo 'eval "$(rbenv init -)"' >> ~/.zshrc | |
exec $SHELL | |
mkdir -p ~/.rbenv/plugins | |
cd ~/.rbenv/plugins | |
git clone git://github.com/sstephenson/ruby-build.git | |
rbenv install 1.9.3-p194 | |
rbenv rehash | |
cd ~/projects/whichbus | |
bundle install | |
bundle exec rails s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment