diff options
author | Andre Arko <andre@arko.net> | 2015-03-30 14:53:04 +0100 |
---|---|---|
committer | Andre Arko <andre@arko.net> | 2015-03-30 15:02:53 +0100 |
commit | 39209ac134201d73dc501dd04ba1546ff8b74112 (patch) | |
tree | c64db4d426b3b1f74728d9827fe3cc655556eb61 | |
parent | 4e838cbdf97ea7782d9fccd7b16105c525dd9ed9 (diff) | |
download | bundler-39209ac134201d73dc501dd04ba1546ff8b74112.tar.gz |
of course new hashes don’t work on Ruby 1.8
this passed for me locally because my `rspec` bin was pointing to the
system Ruby 2.0 instead of Ruby 1.8.7 like it was supposed to be :open_mouth:
-rw-r--r-- | spec/install/gems/sources_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/install/gems/sources_spec.rb b/spec/install/gems/sources_spec.rb index a89afea627..e754b82930 100644 --- a/spec/install/gems/sources_spec.rb +++ b/spec/install/gems/sources_spec.rb @@ -302,8 +302,8 @@ describe "bundle install with gems on multiple sources" do gemfile <<-G source 'file://#{gem_repo1}' gem 'rack' - gem 'foo', '~> 0.1', source: 'file://#{gem_repo4}' - gem 'bar', '~> 0.1', source: 'file://#{gem_repo4}' + gem 'foo', '~> 0.1', :source => 'file://#{gem_repo4}' + gem 'bar', '~> 0.1', :source => 'file://#{gem_repo4}' G # 3. this lockfile. |