osx/custompkg/root/etc/skel/Library/user-setup/200.install-rubygem-package...

14 lines
164 B
Bash

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