rconf 0.6.16 → 0.6.17
Sign up to get free protection for your applications and to get access to all the features.
data/lib/rconf/version.rb
CHANGED
@@ -41,9 +41,8 @@ describe RightConf::BundlerConfigurator do
|
|
41
41
|
flexmock(RightConf::Command.instance).should_receive(:execute).once.with(
|
42
42
|
'gem', 'uninstall', 'bundler', '-a', '-x').and_return(success_result)
|
43
43
|
flexmock(RightConf::Command.instance).should_receive(:execute).once.with(
|
44
|
-
'gem', 'install',
|
45
|
-
|
46
|
-
'--no-ri', '--no-rdoc', {:abort_on_failure=>"Failed to install bundler"}).once.and_return(success_result)
|
44
|
+
'gem', 'install', 'bundler', '-v', '0', '--no-ri', '--no-rdoc',
|
45
|
+
{:abort_on_failure=>"Failed to install bundler"}).once.and_return(success_result)
|
47
46
|
@configurator.run_linux
|
48
47
|
end
|
49
48
|
|