diff options
author | wycats <wycats@gmail.com> | 2010-07-09 13:00:20 -0700 |
---|---|---|
committer | wycats <wycats@gmail.com> | 2010-07-09 13:00:20 -0700 |
commit | d7e1dc1ef387eea787a634382d8f7401bffcdeea (patch) | |
tree | 15b86b493db537bbea3d3635afe7587b2160cc48 /spec/cache | |
parent | ce7db1b17ffe43582258b18fb196aad0ec67bc42 (diff) | |
download | bundler-d7e1dc1ef387eea787a634382d8f7401bffcdeea.tar.gz |
Remove standalone #git in the DSL. Instead, use the block form of #git and put in the associated gems
Diffstat (limited to 'spec/cache')
-rw-r--r-- | spec/cache/gems_spec.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/cache/gems_spec.rb b/spec/cache/gems_spec.rb index 3a9bb773db..8f80b6e5cc 100644 --- a/spec/cache/gems_spec.rb +++ b/spec/cache/gems_spec.rb @@ -58,9 +58,10 @@ describe "bundle cache" do install_gemfile <<-G source "file://#{gem_repo1}" - git "#{lib_path("foo-1.0")}" + git "#{lib_path("foo-1.0")}" do + gem 'foo' + end gem 'rack' - gem 'foo' G bundle :cache |