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 characters
#!/usr/bin/env bash | |
# Bare minimum Gems that are needed to keep a Ruby development environment in sync. This assumes | |
# that you use bundler in your workflow to control the installation of all other gems. If you need | |
# to bump the bundler or rubygem version across your team, change that here, then run bundler and | |
# and keep going. | |
RVMRC=1.9.2@my_gem_set | |
RUBYGEM_VERSION="1.6.2" | |
BUNDLER_VERSION="1.0.15" |