Created
January 31, 2012 22:30
-
-
Save batter/1713468 to your computer and use it in GitHub Desktop.
RVM's .rvmrc file gemset case sensitivity test
This file contains 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
source "/Users/batkins/.rvm/scripts/rvm" # status=0 | |
rvm --version # status=0; match=/rvm 1.10.0/ | |
mkdir ABC-abc # status=0 | |
cd ABC-abc # status=0 | |
rvm use 1.9.2@ABC-abc --rvmrc --create # status=0; match=/Using .*ruby-1.9.2-p290 with gemset ABC-abc/ | |
rvm current # status=0; match=/ruby-1.9.2-p290@ABC-abc/ | |
rvm gemset list # status=0; match=/=> ABC-abc/ | |
cd ../ # status=0; | |
rvm gemset use global # status=0; match=/Using .*\/ruby-1.9.2-p290 with gemset global/ | |
cd ABC-abc # status=0; | |
rvm rvmrc trust . # status=0; match=/Marked .*\/ABC-abc\/.rvmrc as trusted/ | |
rvm rvmrc load . # status=0; match=/Using .*\/ruby-1.9.2-p290@ABC-abc/ | |
rvm gemset list # status=0; match=/=> ABC-abc/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment