capper 0.9.11 → 0.9.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/capper/rvm.rb +1 -1
- data/lib/capper/version.rb +1 -1
- metadata +1 -1
data/lib/capper/rvm.rb
CHANGED
|
@@ -35,7 +35,7 @@ export rvm_gem_options="--no-rdoc --no-ri"
|
|
|
35
35
|
# update rvm if version differs
|
|
36
36
|
run("source ~/.rvm/scripts/rvm && " +
|
|
37
37
|
"if ! rvm version | grep -q 'rvm #{rvm_version}'; then " +
|
|
38
|
-
"rvm get #{rvm_version}; fi",
|
|
38
|
+
"rvm get branch #{rvm_version}; fi",
|
|
39
39
|
:shell => "/bin/bash")
|
|
40
40
|
|
|
41
41
|
# install requested ruby version
|
data/lib/capper/version.rb
CHANGED