guard-cucumber 2.1.1 → 2.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d297a1a36c35059714e88d59882d8fa8efae7843
4
- data.tar.gz: 319a4d2d241076c7db0389ee4c063585bc2bec45
3
+ metadata.gz: 921ec815a9b71238e66089930b5f4767ebb0678b
4
+ data.tar.gz: a3d9d8d8482e4829ce2094e0ee277a7eb87cb553
5
5
  SHA512:
6
- metadata.gz: b1f72a8ffaa308826d1c0dfe1765d54a6497abf1656568ceb1cac33f571604283c59c0dffa8bf40626407563a34ffab55e5eb0e26c31f3015dc66163eb265ed4
7
- data.tar.gz: 7e4e85b6ea7a8e4d48b64d84cb8f178a87bc8e4ce0d1e60930538ba506142768a2c261a6fbfab16721aea25d803cc04dcaddd6065eaacfb74615b5717f0dabc3
6
+ metadata.gz: 25553c85199b8239ff1f9e1982f478570c82dd7c54e9117a6c7df8e7a9761fab269f3be6d48395b3cc5a84a6f2aeb67e172b1c5ec581f7a9a9a28e8576f5dd0d
7
+ data.tar.gz: 40f7e16f9430d0b1af77ea554613183f19e974ffd25e5bb31a5b72c0df07463aeca657295f1982d52432e7e0b3b94da873010a5f01a56c889780916939176558
data/README.md CHANGED
@@ -94,7 +94,7 @@ all_on_start: false # Don't run all the features at startup
94
94
  keep_failed: false # Keep failed features until they pass
95
95
  # default: true
96
96
 
97
- run_all: {cmd: "-p"} # Override any option when running all specs
97
+ run_all: {cmd_additional_args: "--format pretty"} # Override any option when running all specs
98
98
  # default: {}
99
99
 
100
100
  focus_on: 'dev' # Focus on scenarios tagged with '@dev'
@@ -49,7 +49,8 @@ module Guard
49
49
  all_after_pass: true,
50
50
  all_on_start: true,
51
51
  keep_failed: true,
52
- cmd_additional_args: "",
52
+ cmd: "cucumber",
53
+ cmd_additional_args: "--no-profile --color --format progress --strict",
53
54
  feature_sets: ["features"]
54
55
  }.update(options)
55
56
 
@@ -1,4 +1,20 @@
1
- guard "cucumber" do
1
+ cucumber_options = {
2
+ # Below are examples overriding defaults
3
+
4
+ # cmd: 'bin/cucumber',
5
+ # cmd_additional_args: '--profile guard',
6
+
7
+ # all_after_pass: false,
8
+ # all_on_start: false,
9
+ # keep_failed: false,
10
+ # feature_sets: ['features/frontend', 'features/experimental'],
11
+
12
+ # run_all: { cmd_additional_args: '--profile guard_all' },
13
+ # focus_on: { 'wip' }, # @wip
14
+ # notification: false
15
+ }
16
+
17
+ guard "cucumber", cucumber_options do
2
18
  watch(%r{^features/.+\.feature$})
3
19
  watch(%r{^features/support/.+$}) { "features" }
4
20
 
@@ -1,6 +1,6 @@
1
1
  module Guard
2
2
  module CucumberVersion
3
3
  # Guard::Cucumber version that is used for the Gem specification
4
- VERSION = "2.1.1".freeze
4
+ VERSION = "2.1.2".freeze
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-cucumber
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cezary Baginski
@@ -103,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
103
103
  version: 1.3.6
104
104
  requirements: []
105
105
  rubyforge_project:
106
- rubygems_version: 2.5.1
106
+ rubygems_version: 2.6.3
107
107
  signing_key:
108
108
  specification_version: 4
109
109
  summary: Guard plugin for Cucumber