rconf 0.9.4 → 0.9.6
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/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