features/tool.feature in vendorificator-0.5.git.v0.4.0.17.g26d50d8 vs features/tool.feature in vendorificator-0.5.git.v0.4.0.60.g9c35209
- old
+ new
@@ -18,11 +18,11 @@
Given I have following Gemfile:
"""ruby
source "file://#{ENV['FIXTURES_DIR']}/rubygems"
gem "hello"
"""
- When I run vendor command "sync"
+ When I run vendor command "install"
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 run vendor command "sync"
+ When I run vendor command "install"
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 run vendor command "sync"
+ When I run vendor command "install"
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 run vendor command "sync"
+ And I run vendor command "install"
Then following has been conjured:
| Name | bundler |
| Path | cache |
| Without file | hello-0.0.1.gem |
| With file | first-0.gem |