Skip to content

Commit

Permalink
add .rvmrc to stop HttpTest from barfing when old rubies are on path
Browse files Browse the repository at this point in the history
  • Loading branch information
braintreeps committed Jun 7, 2013
1 parent bb4f374 commit 4193ab9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .rvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env bash

RVMRC="ree-1.8.7-2012.02@gateway"
RUBYGEM_VERSION="1.3.7"

rvm use $RVMRC --create --install

if [[ `gem --version` != $RUBYGEM_VERSION ]] ; then
echo "Switching to RubyGems $RUBYGEM_VERSION"
rvm rubygems $RUBYGEM_VERSION
fi

0 comments on commit 4193ab9

Please sign in to comment.