rconf 0.9.4 → 0.9.6
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/rconf +1 -0
- data/lib/rconf/version.rb +1 -1
- metadata +2 -2
data/bin/rconf
CHANGED
@@ -135,6 +135,7 @@ where [options] are:
|
|
135
135
|
def run_in_all_gemsets(&callback)
|
136
136
|
rubies = Command.execute('rvm', 'list').output
|
137
137
|
rubies = rubies.split("\n")[3..-1]
|
138
|
+
report_fatal 'Failed to list install rubies (is rvm in your path?)' unless rubies
|
138
139
|
rubies.each do |ruby|
|
139
140
|
ruby =~ /(\s+| =>)([^ ]*)\s.*/
|
140
141
|
ruby = Regexp.last_match(2)
|
data/lib/rconf/version.rb
CHANGED