Skip to content

Instantly share code, notes, and snippets.

@eugeniy
Created July 24, 2012 17:48
Show Gist options
  • Save eugeniy/3171464 to your computer and use it in GitHub Desktop.
Save eugeniy/3171464 to your computer and use it in GitHub Desktop.
rbenv 1.9.3
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