Skip to content

Instantly share code, notes, and snippets.

@wjordan
Created May 15, 2014 22:20
Show Gist options
  • Save wjordan/2bbda8e686a1bf196ad5 to your computer and use it in GitHub Desktop.
Save wjordan/2bbda8e686a1bf196ad5 to your computer and use it in GitHub Desktop.
ruby2.0 in 14.04
#!/bin/sh
# Run as root
rm /usr/bin/ruby /usr/bin/gem /usr/bin/irb /usr/bin/rdoc /usr/bin/erb
ln -s /usr/bin/ruby2.0 /usr/bin/ruby
ln -s /usr/bin/gem2.0 /usr/bin/gem
ln -s /usr/bin/irb2.0 /usr/bin/irb
ln -s /usr/bin/rdoc2.0 /usr/bin/rdoc
ln -s /usr/bin/erb2.0 /usr/bin/erb
gem update --system
gem pristine --all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment