Created
March 9, 2012 13:56
-
-
Save bobmaerten/2006609 to your computer and use it in GitHub Desktop.
Ubuntu Ruby install - rbenv and ruby-build
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
#!/bin/bash | |
# pre-requisites | |
sudo apt-get install curl libssl-dev | |
# 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