features/tool.feature in vendorificator-0.5.git.v0.4.0.63.g8e9d54d vs features/tool.feature in vendorificator-0.5.0

- old
+ new

@@ -21,11 +21,11 @@ gem "hello" """ When I run vendor command "install" Then following has been conjured: | Name | bundler | - | Path | cache | + | Path | vendor/cache | | With file | hello-0.0.1.gem | | Without file | first-0.gem | Scenario: Bundler correctly downloads and caches dependencies Given I have following Gemfile: @@ -34,11 +34,11 @@ gem "first" """ When I run vendor command "install" Then following has been conjured: | Name | bundler | - | Path | cache | + | Path | vendor/cache | | Without file | hello-0.0.1.gem | | With file | first-0.gem | | With file | second-0.gem | Scenario: directory contents are completely replaced on re-vendoring @@ -48,20 +48,22 @@ gem "hello" """ When I run vendor command "install" Then following has been conjured: | Name | bundler | - | Path | cache | + | Path | vendor/cache | | With file | hello-0.0.1.gem | | Without file | first-0.gem | When I change Gemfile to: """ruby source "file://#{ENV['FIXTURES_DIR']}/rubygems" gem "first" """ + And I run `git commit -a -m bump` And I run vendor command "install" Then following has been conjured: | Name | bundler | - | Path | cache | + | Path | vendor/cache | | Without file | hello-0.0.1.gem | | With file | first-0.gem | | With file | second-0.gem | +