now installs rubygems (bundler, overcommit)

This commit is contained in:
Jeffrey Paul 2016-10-07 21:11:15 -04:00
parent d25516c078
commit ef5452b3a7
5 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1 @@
gem: --user-install

View File

@ -0,0 +1,5 @@
if [[ -d $HOME/Library/RubyGems/ruby ]]; then
for DIR in $HOME/Library/RubyGems/ruby/*/bin ; do
PATH+=":$DIR"
done
fi

View File

@ -0,0 +1,7 @@
if [[ ! -d ~/Library/RubyGems ]]; then
mkdir ~/Library/RubyGems
fi
if [[ ! -e ~/.gem ]]; then
ln -s ~/Library/RubyGems ~/.gem
fi

View File

@ -1,5 +1,6 @@
PYTHON_PKGS="
awscli
awsebcli
virtualenv
"

View File

@ -0,0 +1,13 @@
#!/bin/bash
# set up paths and whatnot
source $HOME/.profile
RUBYGEM_PKGS="
bundler
overcommit
"
for PKG in $RUBYGEM_PKGS ; do
gem install $PKG
done