Created
January 30, 2012 10:20
Revisions
-
haarts revised this gist
Mar 22, 2012 . 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 @@ -3,7 +3,7 @@ apt-get update apt-get -y upgrade apt-get -y install build-essential apt-get -y install vim git-core curl zlib1g-dev libreadline-dev libssl-dev # Install rbenv if [ ! -d "/usr/local/rbenv" ]; then -
haarts revised this gist
Mar 1, 2012 . 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 @@ -3,7 +3,7 @@ apt-get update apt-get -y upgrade apt-get -y install build-essential apt-get -y install git-core curl zlib1g-dev libreadline-dev libssl-dev # Install rbenv if [ ! -d "/usr/local/rbenv" ]; then -
haarts revised this gist
Feb 28, 2012 . 1 changed file with 1 addition and 0 deletions.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,3 +1,4 @@ #!/bin/bash # Update, upgrade and install development tools: apt-get update apt-get -y upgrade -
haarts revised this gist
Feb 28, 2012 . 1 changed file with 3 additions and 3 deletions.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 @@ -27,9 +27,9 @@ if [ ! -f "/usr/local/bin/ruby-build" ]; then popd fi # Install Ruby 1.9.3-p125: rbenv install 1.9.3-p125 rbenv global 1.9.3-p125 # Rehash: rbenv rehash -
haarts revised this gist
Feb 5, 2012 . 1 changed file with 3 additions and 3 deletions.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 @@ -19,9 +19,9 @@ pushd /tmp ./install.sh popd # Install Ruby 1.9.3-p0: rbenv install 1.9.3-p0 rbenv global 1.9.3-p0 # Rehash: rbenv rehash -
haarts revised this gist
Jan 30, 2012 . 1 changed file with 15 additions and 11 deletions.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,10 +2,12 @@ apt-get update apt-get -y upgrade apt-get -y install build-essential apt-get -y install git-core curl zlib1g-dev libreadline-dev libssl-dev libssl-dev # Install rbenv if [ ! -d "/usr/local/rbenv" ]; then git clone git://github.com/sstephenson/rbenv.git /usr/local/rbenv fi # Add rbenv to the path: echo '# rbenv setup' > /etc/profile.d/rbenv.sh @@ -17,15 +19,17 @@ chmod +x /etc/profile.d/rbenv.sh source /etc/profile.d/rbenv.sh # Install ruby-build: if [ ! -f "/usr/local/bin/ruby-build" ]; then pushd /tmp git clone git://github.com/sstephenson/ruby-build.git cd ruby-build ./install.sh popd fi # Install Ruby 1.9.3-p0: rbenv install 1.9.3-p0 rbenv global 1.9.3-p0 # Rehash: rbenv rehash -
fesplugas revised this gist
Sep 23, 2011 . 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 @@ -14,7 +14,7 @@ echo 'export PATH="$RBENV_ROOT/bin:$PATH"' >> /etc/profile.d/rbenv.sh echo 'eval "$(rbenv init -)"' >> /etc/profile.d/rbenv.sh chmod +x /etc/profile.d/rbenv.sh source /etc/profile.d/rbenv.sh # Install ruby-build: pushd /tmp -
fesplugas revised this gist
Sep 22, 2011 . 3 changed files with 37 additions and 11 deletions.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,31 @@ # Update, upgrade and install development tools: apt-get update apt-get -y upgrade apt-get -y install build-essential apt-get -y install git-core # Install rbenv git clone git://github.com/sstephenson/rbenv.git /usr/local/rbenv # Add rbenv to the path: echo '# rbenv setup' > /etc/profile.d/rbenv.sh echo 'export RBENV_ROOT=/usr/local/rbenv' >> /etc/profile.d/rbenv.sh echo 'export PATH="$RBENV_ROOT/bin:$PATH"' >> /etc/profile.d/rbenv.sh echo 'eval "$(rbenv init -)"' >> /etc/profile.d/rbenv.sh chmod +x /etc/profile.d/rbenv.sh /etc/profile.d/rbenv.sh # Install ruby-build: pushd /tmp git clone git://github.com/sstephenson/ruby-build.git cd ruby-build ./install.sh popd # Install Ruby 1.9.2-p290: rbenv install 1.9.2-p290 rbenv global 1.9.2-p290 # Rehash: rbenv rehash 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,26 +1,27 @@ # Update, upgrade and install development tools: apt-get update apt-get -y upgrade apt-get -y install build-essential apt-get -y install git-core # Install rbenv: git clone git://github.com/sstephenson/rbenv.git ~/.rbenv # Add rbenv to the path: echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> .bash_profile echo 'eval "$(rbenv init -)"' >> .bash_profile source ~/.bash_profile # Install ruby-build: pushd /tmp git clone git://github.com/sstephenson/ruby-build.git cd ruby-build ./install.sh popd # Install Ruby 1.9.2-p290: rbenv install 1.9.2-p290 rbenv global 1.9.2-p290 # Rehash: rbenv rehash 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,6 +0,0 @@ -
fesplugas revised this gist
Sep 22, 2011 . 1 changed file with 6 additions and 0 deletions.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,6 @@ echo '# rbenv setup' > /etc/profile.d/rbenv.sh echo 'export RBENV_ROOT=/usr/local/rbenv' >> /etc/profile.d/rbenv.sh echo 'export PATH="$RBENV_ROOT/bin:$PATH"' >> /etc/profile.d/rbenv.sh echo 'eval "$(rbenv init -)"' >> /etc/profile.d/rbenv.sh chmod +x /etc/profile.d/rbenv.sh -
fesplugas revised this gist
Sep 22, 2011 . 1 changed file with 3 additions and 0 deletions.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 @@ -21,3 +21,6 @@ popd # Install Ruby 1.9.2-p290 rbenv install 1.9.2-p290 rbenv global 1.9.2-p290 # Rehash! rbenv rehash -
fesplugas revised this gist
Sep 22, 2011 . 1 changed file with 4 additions and 2 deletions.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 @@ -4,10 +4,12 @@ apt-get -y install build-essential apt-get -y install git-core # And now install rbenv git clone git://github.com/sstephenson/rbenv.git ~/.rbenv # Add rbenv to your path echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> .bash_profile echo 'eval "$(rbenv init -)"' >> .bash_profile source ~/.bash_profile # Install ruby-build pushd /tmp -
fesplugas created this gist
Sep 22, 2011 .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,21 @@ apt-get update apt-get -y upgrade apt-get -y install build-essential apt-get -y install git-core # And now install rbenv git clone git://github.com/sstephenson/rbenv.git .rbenv echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> .bash_profile echo 'eval "$(rbenv init -)"' >> .bash_profile exec # Install ruby-build pushd /tmp git clone git://github.com/sstephenson/ruby-build.git cd ruby-build ./install.sh popd # Install Ruby 1.9.2-p290 rbenv install 1.9.2-p290 rbenv global 1.9.2-p290