-
-
Save werm/5330232 to your computer and use it in GitHub Desktop.
Revisions
-
werm revised this gist
Apr 7, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,4 +2,4 @@ Installs ruby-2.0.0-p0 on ubuntu via checkinstall so it's in your package manage Quick install: curl -L https://gist.github.com/werm/5330232/raw/02da122ae042af2b814f39d27db335639e403237/ruby-2-install-ubuntu.sh | bash -s -
werm revised this gist
Apr 7, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -e sudo apt-get build-dep ruby1.9.3 wget -c http://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p0.tar.gz tar xzf ruby-2.0.0-p0.tar.gz -
ngauthier revised this gist
Feb 26, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -12,4 +12,4 @@ make sudo checkinstall -y \ --pkgversion 2.0.0-p0 \ --provides "ruby-interpreter" -
ngauthier revised this gist
Feb 26, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,4 +2,4 @@ Installs ruby-2.0.0-p0 on ubuntu via checkinstall so it's in your package manage Quick install: curl -L https://gist.github.com/ngauthier/5039249/raw/1868bf4714052b40e2bb7fdf3f40fbeb5d730bca/ruby-2-install-ubuntu.sh | bash -s -
ngauthier created this gist
Feb 26, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ Installs ruby-2.0.0-p0 on ubuntu via checkinstall so it's in your package manager and you can remove it. Quick install: curl -L https://gist.github.com/anonymous/5039225/raw/1868bf4714052b40e2bb7fdf3f40fbeb5d730bca/ruby-2-ubuntu-install.sh | bash -s This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ #!/usr/bin/env bash set -e sudo apt-get build-dep ruby1.9.1 wget -c http://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p0.tar.gz tar xzf ruby-2.0.0-p0.tar.gz cd ruby-2.0.0-p0 ./configure make sudo checkinstall -y \ --pkgversion 2.0.0-p0 \ --provides "ruby-interpreter" \