guard-cucumber 2.1.0 → 2.1.1
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 +4 -4
- data/lib/guard/cucumber.rb +5 -0
- data/lib/guard/cucumber/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d297a1a36c35059714e88d59882d8fa8efae7843
|
4
|
+
data.tar.gz: 319a4d2d241076c7db0389ee4c063585bc2bec45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1f72a8ffaa308826d1c0dfe1765d54a6497abf1656568ceb1cac33f571604283c59c0dffa8bf40626407563a34ffab55e5eb0e26c31f3015dc66163eb265ed4
|
7
|
+
data.tar.gz: 7e4e85b6ea7a8e4d48b64d84cb8f178a87bc8e4ce0d1e60930538ba506142768a2c261a6fbfab16721aea25d803cc04dcaddd6065eaacfb74615b5717f0dabc3
|
data/lib/guard/cucumber.rb
CHANGED
@@ -12,6 +12,9 @@ module Guard
|
|
12
12
|
attr_accessor :last_failed, :failed_path
|
13
13
|
|
14
14
|
KNOWN_OPTIONS = %w(
|
15
|
+
cmd
|
16
|
+
cmd_additional_args
|
17
|
+
|
15
18
|
all_after_pass
|
16
19
|
all_on_start
|
17
20
|
keep_failed
|
@@ -36,6 +39,8 @@ module Guard
|
|
36
39
|
# pass
|
37
40
|
# @option options [Boolean] :run_all run override any option when running
|
38
41
|
# all specs
|
42
|
+
# @option options [Boolean] :cmd the command to run
|
43
|
+
# @option options [Boolean] :cmd_additional_args additional args to append
|
39
44
|
#
|
40
45
|
def initialize(options = {})
|
41
46
|
super(options)
|