Skip to content

Instantly share code, notes, and snippets.

View alitheg's full-sized avatar
😅

Alastair McFarlane alitheg

😅
View GitHub Profile
### Keybase proof
I hereby claim:
* I am alitheg on github.
* I am alitheg (https://keybase.io/alitheg) on keybase.
* I have a public key whose fingerprint is F1D3 3CD4 41A0 E9B5 6C30 6B1C FD5C 998D 9838 8C3E
To claim this, I am signing this object:
@alitheg
alitheg / rbenv-install.sh
Last active August 29, 2015 13:56
Install rbenv and ruby build
git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
source ~/.bash_profile
git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build