Skip to content

Instantly share code, notes, and snippets.

@nneal
Created June 11, 2012 00:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nneal/2907930 to your computer and use it in GitHub Desktop.
Save nneal/2907930 to your computer and use it in GitHub Desktop.
Ubuntu Ruby install - rbenv and ruby-build
#!/bin/bash
# Install rbenv
# https://github.com/sstephenson/rbenv
cd ~
git clone git://github.com/sstephenson/rbenv.git .rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> .bash_profile
echo 'eval "$(rbenv init -)"' >> .bash_profile
# reload .bash_profile
source ~/.bash_profile
# install ruby-build
# https://github.com/sstephenson/ruby-build
git clone git://github.com/sstephenson/ruby-build.git
cd ruby-build
sudo ./install.sh
# list available ruby versions
ruby-build --definitions
# install ruby
rbenv install 1.9.2-p290
# Install shims for all Ruby binaries
rbenv rehash
# Set default Ruby version
rbenv global 1.9.2-p290
# Check Ruby
ruby -v # => ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-linux]
# Check OpenSSL
irb
require 'openssl' # => true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment