Skip to content

Commit

Permalink
avoid guard-cucumber versions with :cli
Browse files Browse the repository at this point in the history
  • Loading branch information
e2 committed Aug 6, 2016
1 parent 0c7c9a1 commit 7c6a077
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -28,7 +28,7 @@ end
# #
group :test do group :test do
# Both guard-rspec and guard-cucumber are used by cucumber features # Both guard-rspec and guard-cucumber are used by cucumber features
gem "guard-cucumber", require: false gem "guard-cucumber", "~> 2.1", require: false
gem "guard-rspec", require: false gem "guard-rspec", require: false


gem "codeclimate-test-reporter", require: nil gem "codeclimate-test-reporter", require: nil
Expand Down
2 changes: 1 addition & 1 deletion config/Guardfile
Expand Up @@ -31,7 +31,7 @@ group :specs, halt_on_fail: true do
watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) } watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end end


guard "cucumber", keep_failed: true, all_on_start: false, cli: '--profile guard' do guard "cucumber", keep_failed: true, all_on_start: false, cmd_additional_args: '--profile guard' do
watch(%r{^features/.+\.feature$}) watch(%r{^features/.+\.feature$})
watch(%r{^features/support/.+$}) { "features" } watch(%r{^features/support/.+$}) { "features" }
watch(%r{^features/step_definitions/(.+)_steps\.rb$}) do |m| watch(%r{^features/step_definitions/(.+)_steps\.rb$}) do |m|
Expand Down

0 comments on commit 7c6a077

Please sign in to comment.