rconf 0.6.24 → 0.6.25
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 +2 -2
- data/lib/rconf/version.rb +1 -1
- metadata +1 -1
data/bin/rconf
CHANGED
|
@@ -125,14 +125,14 @@ where [options] are:
|
|
|
125
125
|
gemsets = gemsets[i + 1..-1]
|
|
126
126
|
gemsets.each do |gs|
|
|
127
127
|
report_check("Checking rconf for #{ruby}@#{gs}")
|
|
128
|
-
rconf = Command.execute('rvm', "#{ruby}@#{gs}", '
|
|
128
|
+
rconf = Command.execute('rvm', "#{ruby}@#{gs}", 'gem', 'list', 'rconf').output
|
|
129
129
|
if rconf =~ /rconf \(#{version}/
|
|
130
130
|
report_success
|
|
131
131
|
next
|
|
132
132
|
else
|
|
133
133
|
report_failure
|
|
134
134
|
report_check("Updating rconf for #{ruby}@#{gs}")
|
|
135
|
-
res = Command.execute('rvm', "#{ruby}@#{gs}", '
|
|
135
|
+
res = Command.execute('rvm', "#{ruby}@#{gs}", 'gem', 'install', 'rconf', '--no-ri', '--no-rdoc')
|
|
136
136
|
report_result(res.success?)
|
|
137
137
|
end
|
|
138
138
|
end
|
data/lib/rconf/version.rb
CHANGED