rconf 0.6.34 → 0.6.35
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/rconf +4 -2
- data/lib/rconf/version.rb +1 -1
- metadata +1 -1
data/bin/rconf
CHANGED
@@ -133,8 +133,10 @@ where [options] are:
|
|
133
133
|
else
|
134
134
|
report_failure
|
135
135
|
report_check("Updating rconf for #{ruby}@#{gs}")
|
136
|
-
res = Command.execute('rvm', "#{ruby}@#{gs}", 'gem', 'install',
|
137
|
-
|
136
|
+
res = Command.execute('rvm', "#{ruby}@#{gs}", 'gem', 'install',
|
137
|
+
'rconf', '-v', version, '--no-ri', '--no-rdoc',
|
138
|
+
:abort_on_failure => "Failed to install rconf #{version}")
|
139
|
+
report_success
|
138
140
|
end
|
139
141
|
end
|
140
142
|
end
|
data/lib/rconf/version.rb
CHANGED