Add rvm install script and key.

This commit is contained in:
David Tomaschik
2016-02-11 18:32:42 -08:00
parent 7ccc6ec6c0
commit 424febea00

View File

@@ -1,4 +1,14 @@
# Enable RVM if available # Enable RVM if available
if [[ -s ${HOME}/.rvm/scripts/rvm ]] ; then if [[ -s ${HOME}/.rvm/scripts/rvm ]] ; then
source ${HOME}/.rvm/scripts/rvm source ${HOME}/.rvm/scripts/rvm
else
function install_rvm {
export rvm_ignore_dotfiles=yes
pushd `mktemp -d`
curl -O https://raw.githubusercontent.com/rvm/rvm/master/binscripts/rvm-installer
curl -O https://raw.githubusercontent.com/rvm/rvm/master/binscripts/rvm-installer.asc
gpg --verify rvm-installer.asc && \
bash rvm-installer stable
popd
}
fi fi