features/tool.feature in vendorificator-0.4.0 vs features/tool.feature in vendorificator-0.5.git.v0.4.0.17.g26d50d8

- old
+ new

@@ -18,11 +18,11 @@ Given I have following Gemfile: """ruby source "file://#{ENV['FIXTURES_DIR']}/rubygems" gem "hello" """ - When I successfully run `vendor sync` + When I run vendor command "sync" Then following has been conjured: | Name | bundler | | Path | cache | | With file | hello-0.0.1.gem | | Without file | first-0.gem | @@ -31,11 +31,11 @@ Given I have following Gemfile: """ruby source "file://#{ENV['FIXTURES_DIR']}/rubygems" gem "first" """ - When I successfully run `vendor sync` + When I run vendor command "sync" Then following has been conjured: | Name | bundler | | Path | cache | | Without file | hello-0.0.1.gem | | With file | first-0.gem | @@ -45,21 +45,21 @@ Given I have following Gemfile: """ruby source "file://#{ENV['FIXTURES_DIR']}/rubygems" gem "hello" """ - When I successfully run `vendor sync` + When I run vendor command "sync" Then following has been conjured: | Name | bundler | | Path | 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 successfully run `vendor sync` + And I run vendor command "sync" Then following has been conjured: | Name | bundler | | Path | cache | | Without file | hello-0.0.1.gem | | With file | first-0.gem |