bin/rconf in rconf-0.6.24 vs bin/rconf in rconf-0.6.25

- old
+ new

@@ -123,17 +123,17 @@ gemsets = Command.execute('rvm', ruby, 'gemset', 'list').output.split("\n") i = gemsets.index { |gs| gs =~ /^gemsets for #{ruby} / } gemsets = gemsets[i + 1..-1] gemsets.each do |gs| report_check("Checking rconf for #{ruby}@#{gs}") - rconf = Command.execute('rvm', "#{ruby}@#{gs}", 'exec', 'gem', 'list', 'rconf').output + rconf = Command.execute('rvm', "#{ruby}@#{gs}", 'gem', 'list', 'rconf').output if rconf =~ /rconf \(#{version}/ report_success next else report_failure report_check("Updating rconf for #{ruby}@#{gs}") - res = Command.execute('rvm', "#{ruby}@#{gs}", 'exec', 'gem', 'install', 'rconf') + res = Command.execute('rvm', "#{ruby}@#{gs}", 'gem', 'install', 'rconf', '--no-ri', '--no-rdoc') report_result(res.success?) end end end end