guard-cucumber 0.7.3 → 0.7.4
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.
- data/README.md +90 -57
- data/lib/guard/cucumber.rb +1 -0
- data/lib/guard/cucumber/inspector.rb +2 -2
- data/lib/guard/cucumber/version.rb +1 -1
- metadata +17 -20
- data/lib/guard/cucumber.rbc +0 -1816
- data/lib/guard/cucumber/inspector.rbc +0 -1234
- data/lib/guard/cucumber/runner.rbc +0 -1256
- data/lib/guard/cucumber/version.rbc +0 -203
data/README.md
CHANGED
@@ -2,25 +2,28 @@
|
|
2
2
|
|
3
3
|
Guard::Cucumber allows you to automatically run Cucumber features when files are modified.
|
4
4
|
|
5
|
-
Tested on MRI Ruby 1.8.7, 1.9.2, REE and the latest versions of JRuby & Rubinius.
|
5
|
+
Tested on MRI Ruby 1.8.7, 1.9.2, 1.9.3, REE and the latest versions of JRuby & Rubinius.
|
6
6
|
|
7
7
|
If you have any questions please join us on our [Google group](http://groups.google.com/group/guard-dev) or on `#guard` (irc.freenode.net).
|
8
8
|
|
9
9
|
## Install
|
10
10
|
|
11
|
-
|
11
|
+
The simplest way to install Guard is to use [Bundler](http://gembundler.com/).
|
12
|
+
Please make sure to have [Guard](https://github.com/guard/guard) installed before continue.
|
12
13
|
|
13
|
-
|
14
|
+
Add Guard::Cucumber to your `Gemfile`:
|
14
15
|
|
15
|
-
|
16
|
+
```bash
|
17
|
+
group :development do
|
18
|
+
gem 'guard-cucumber'
|
19
|
+
end
|
20
|
+
```
|
16
21
|
|
17
|
-
Add
|
22
|
+
Add the default Guard::Cucumber template to your `Guardfile` by running:
|
18
23
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
$ guard init cucumber
|
24
|
+
```bash
|
25
|
+
$ guard init cucumber
|
26
|
+
```
|
24
27
|
|
25
28
|
## Usage
|
26
29
|
|
@@ -30,11 +33,13 @@ Please read the [Guard usage documentation](https://github.com/guard/guard#readm
|
|
30
33
|
|
31
34
|
Guard::Cucumber can be adapted to all kind of projects and comes with a default template that looks like this:
|
32
35
|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
36
|
+
```ruby
|
37
|
+
guard 'cucumber' do
|
38
|
+
watch(%r{^features/.+\.feature$})
|
39
|
+
watch(%r{^features/support/.+$}) { 'features' }
|
40
|
+
watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' }
|
41
|
+
end
|
42
|
+
```
|
38
43
|
|
39
44
|
Expressed in plain English, this configuration tells Guard::Cucumber:
|
40
45
|
|
@@ -50,39 +55,43 @@ Please read the [Guard documentation](http://github.com/guard/guard#readme) for
|
|
50
55
|
|
51
56
|
You can pass any of the standard Cucumber CLI options using the :cli option:
|
52
57
|
|
53
|
-
|
58
|
+
```ruby
|
59
|
+
guard 'cucumber', :cli => '-c --drb --port 1234 --profile guard'
|
60
|
+
```
|
54
61
|
|
55
62
|
Former `:color`, `:drb`, `:port` and `:profile` options are thus deprecated and have no effect anymore.
|
56
63
|
|
57
64
|
### List of available options
|
58
65
|
|
59
|
-
|
60
|
-
|
66
|
+
```ruby
|
67
|
+
:cli => '--profile guard -c' # Pass arbitrary Cucumber CLI arguments,
|
68
|
+
# default: '--no-profile --color --format progress --strict'
|
61
69
|
|
62
|
-
|
63
|
-
|
70
|
+
:bundler => false # Don't use "bundle exec" to run the Cucumber command
|
71
|
+
# default: true
|
64
72
|
|
65
|
-
|
66
|
-
|
73
|
+
:rvm => ['1.8.7', '1.9.2'] # Directly run your features on multiple ruby versions
|
74
|
+
# default: nil
|
67
75
|
|
68
|
-
|
69
|
-
|
76
|
+
:notification => false # Don't display Growl (or Libnotify) notification
|
77
|
+
# default: true
|
70
78
|
|
71
|
-
|
72
|
-
|
79
|
+
:all_after_pass => false # Don't run all features after changed features pass
|
80
|
+
# default: true
|
73
81
|
|
74
|
-
|
75
|
-
|
82
|
+
:all_on_start => false # Don't run all the features at startup
|
83
|
+
# default: true
|
76
84
|
|
77
|
-
|
78
|
-
|
85
|
+
:keep_failed => false # Keep failed features until they pass
|
86
|
+
# default: true
|
79
87
|
|
80
|
-
|
81
|
-
|
88
|
+
:run_all => { :cli => "-p" } # Override any option when running all specs
|
89
|
+
# default: {}
|
82
90
|
|
83
|
-
|
84
|
-
|
85
|
-
|
91
|
+
:change_format => 'pretty' # Use a different cucumber format when running individual features
|
92
|
+
# This replaces the Cucumber --format option within the :cli option
|
93
|
+
# default: nil
|
94
|
+
```
|
86
95
|
|
87
96
|
## Cucumber configuration
|
88
97
|
|
@@ -102,7 +111,9 @@ If you want to configure Cucumber from Guard solely, then you should pass `--no-
|
|
102
111
|
|
103
112
|
Since guard-cucumber version 0.3.2, the default `:cli` options are:
|
104
113
|
|
105
|
-
|
114
|
+
```ruby
|
115
|
+
:cli => '--no-profile --color --format progress --strict'
|
116
|
+
```
|
106
117
|
|
107
118
|
This default configuration has been chosen to avoid strange behavior when mixing configurations form
|
108
119
|
the cucumber.yml default profile with the guard-cucumber `:cli` option.
|
@@ -114,7 +125,9 @@ You can safely remove `config/cucumber.yml`, since all configuration is done in
|
|
114
125
|
If you're using different profiles with Cucumber then you should create a profile for Guard in cucumber.yml,
|
115
126
|
something like this:
|
116
127
|
|
117
|
-
|
128
|
+
```yaml
|
129
|
+
guard: --format progress --strict --tags ~@wip
|
130
|
+
```
|
118
131
|
|
119
132
|
Now you want to make guard-cucumber use that profile by passing `--profile guard` to the `:cli`.
|
120
133
|
|
@@ -123,42 +136,62 @@ Now you want to make guard-cucumber use that profile by passing `--profile guard
|
|
123
136
|
To use Guard::Cucumber with [Spork](https://github.com/timcharper/spork), you should install
|
124
137
|
[Guard::Spork](https://github.com/guard/guard-spork) and use the following configuration:
|
125
138
|
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
+
```ruby
|
140
|
+
guard 'spork' do
|
141
|
+
watch('config/application.rb')
|
142
|
+
watch('config/environment.rb')
|
143
|
+
watch(%r{^config/environments/.*\.rb$})
|
144
|
+
watch(%r{^config/initializers/.*\.rb$})
|
145
|
+
watch('spec/spec_helper.rb')
|
146
|
+
end
|
147
|
+
|
148
|
+
guard 'cucumber', :cli => '--drb --format progress --no-profile' do
|
149
|
+
watch(%r{^features/.+\.feature$})
|
150
|
+
watch(%r{^features/support/.+$}) { 'features' }
|
151
|
+
watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' }
|
152
|
+
end
|
153
|
+
```
|
139
154
|
|
140
155
|
There is a section with alternative configurations on the [Wiki](https://github.com/netzpirat/guard-cucumber/wiki/Spork-configurations).
|
141
156
|
|
157
|
+
Issues
|
158
|
+
------
|
159
|
+
|
160
|
+
You can report issues and feature requests to [GitHub Issues](https://github.com/netzpirat/guard-cucumber/issues). Try to figure out
|
161
|
+
where the issue belongs to: Is it an issue with Guard itself or with Guard::Cucumber? Please don't
|
162
|
+
ask question in the issue tracker, instead join us in our [Google group](http://groups.google.com/group/guard-dev) or on
|
163
|
+
`#guard` (irc.freenode.net).
|
164
|
+
|
165
|
+
When you file an issue, please try to follow to these simple rules if applicable:
|
166
|
+
|
167
|
+
* Make sure you run Guard with `bundle exec` first.
|
168
|
+
* Add debug information to the issue by running Guard with the `--debug` option.
|
169
|
+
* Add your `Guardfile` and `Gemfile` to the issue.
|
170
|
+
* Make sure that the issue is reproducible with your description.
|
171
|
+
|
142
172
|
## Development
|
143
173
|
|
144
174
|
- Documentation hosted at [RubyDoc](http://rubydoc.info/github/guard/guard-cucumber/master/frames).
|
145
175
|
- Source hosted at [GitHub](https://github.com/netzpirat/guard-cucumber).
|
146
|
-
- Report issues and feature requests to [GitHub Issues](https://github.com/netzpirat/guard-cucumber/issues).
|
147
176
|
|
148
|
-
Pull requests are very welcome! Please try to follow these simple
|
177
|
+
Pull requests are very welcome! Please try to follow these simple rules if applicable:
|
149
178
|
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
179
|
+
* Please create a topic branch for every separate change you make.
|
180
|
+
* Make sure your patches are well tested.
|
181
|
+
* Update the [Yard](http://yardoc.org/) documentation.
|
182
|
+
* Update the README.
|
183
|
+
* Update the CHANGELOG for noteworthy changes.
|
184
|
+
* Please **do not change** the version number.
|
154
185
|
|
155
|
-
For questions please join us
|
186
|
+
For questions please join us in our [Google group](http://groups.google.com/group/guard-dev) or on
|
187
|
+
`#guard` (irc.freenode.net).
|
156
188
|
|
157
189
|
## Contributors
|
158
190
|
|
159
191
|
* [Aleksei Gusev](https://github.com/hron)
|
160
192
|
* [Larry Marburger](https://github.com/lmarburger)
|
161
193
|
* [Loren Norman](https://github.com/lorennorman)
|
194
|
+
* [Neil Matatall](https://github.com/oreoshake)
|
162
195
|
* [Nicholas A Clark](https://github.com/NickClark)
|
163
196
|
* [Oriol Gual](https://github.com/oriolgual)
|
164
197
|
* [Robert Sanders](https://github.com/robertzx)
|
data/lib/guard/cucumber.rb
CHANGED
@@ -66,9 +66,9 @@ module Guard
|
|
66
66
|
#
|
67
67
|
def included_in_other_path?(path, paths)
|
68
68
|
paths = paths.select { |p| p != path }
|
69
|
-
|
69
|
+
massaged = path[0...(path.index(":")||path.size)]
|
70
|
+
paths.any? { |p| (path.include?(p) && (path.gsub(p, '')).include?('/')) || massaged.include?(p) }
|
70
71
|
end
|
71
|
-
|
72
72
|
end
|
73
73
|
end
|
74
74
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-cucumber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 11
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 7
|
9
|
-
-
|
10
|
-
version: 0.7.
|
9
|
+
- 4
|
10
|
+
version: 0.7.4
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Michael Kessler
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-11-09 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: guard
|
@@ -71,11 +71,11 @@ dependencies:
|
|
71
71
|
requirements:
|
72
72
|
- - ~>
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
hash:
|
74
|
+
hash: 13
|
75
75
|
segments:
|
76
76
|
- 2
|
77
|
-
-
|
78
|
-
version: "2.
|
77
|
+
- 7
|
78
|
+
version: "2.7"
|
79
79
|
type: :development
|
80
80
|
version_requirements: *id004
|
81
81
|
- !ruby/object:Gem::Dependency
|
@@ -86,11 +86,11 @@ dependencies:
|
|
86
86
|
requirements:
|
87
87
|
- - ~>
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
hash:
|
89
|
+
hash: 1
|
90
90
|
segments:
|
91
91
|
- 0
|
92
|
-
-
|
93
|
-
version: "0.
|
92
|
+
- 5
|
93
|
+
version: "0.5"
|
94
94
|
type: :development
|
95
95
|
version_requirements: *id005
|
96
96
|
- !ruby/object:Gem::Dependency
|
@@ -110,19 +110,19 @@ dependencies:
|
|
110
110
|
type: :development
|
111
111
|
version_requirements: *id006
|
112
112
|
- !ruby/object:Gem::Dependency
|
113
|
-
name:
|
113
|
+
name: redcarpet
|
114
114
|
prerelease: false
|
115
115
|
requirement: &id007 !ruby/object:Gem::Requirement
|
116
116
|
none: false
|
117
117
|
requirements:
|
118
118
|
- - ~>
|
119
119
|
- !ruby/object:Gem::Version
|
120
|
-
hash:
|
120
|
+
hash: 87
|
121
121
|
segments:
|
122
|
-
-
|
123
|
-
-
|
124
|
-
-
|
125
|
-
version:
|
122
|
+
- 1
|
123
|
+
- 17
|
124
|
+
- 2
|
125
|
+
version: 1.17.2
|
126
126
|
type: :development
|
127
127
|
version_requirements: *id007
|
128
128
|
description: Guard::Cucumber automatically run your features (much like autotest)
|
@@ -136,15 +136,11 @@ extra_rdoc_files: []
|
|
136
136
|
|
137
137
|
files:
|
138
138
|
- lib/guard/cucumber/inspector.rb
|
139
|
-
- lib/guard/cucumber/inspector.rbc
|
140
139
|
- lib/guard/cucumber/notification_formatter.rb
|
141
140
|
- lib/guard/cucumber/runner.rb
|
142
|
-
- lib/guard/cucumber/runner.rbc
|
143
141
|
- lib/guard/cucumber/templates/Guardfile
|
144
142
|
- lib/guard/cucumber/version.rb
|
145
|
-
- lib/guard/cucumber/version.rbc
|
146
143
|
- lib/guard/cucumber.rb
|
147
|
-
- lib/guard/cucumber.rbc
|
148
144
|
- LICENSE
|
149
145
|
- README.md
|
150
146
|
homepage: http://github.com/netzpirat/guard-cucumber
|
@@ -184,3 +180,4 @@ specification_version: 3
|
|
184
180
|
summary: Guard gem for Cucumber
|
185
181
|
test_files: []
|
186
182
|
|
183
|
+
has_rdoc:
|
data/lib/guard/cucumber.rbc
DELETED
@@ -1,1816 +0,0 @@
|
|
1
|
-
!RBIX
|
2
|
-
16846133056282117387
|
3
|
-
x
|
4
|
-
M
|
5
|
-
1
|
6
|
-
n
|
7
|
-
n
|
8
|
-
x
|
9
|
-
10
|
10
|
-
__script__
|
11
|
-
i
|
12
|
-
55
|
13
|
-
5
|
14
|
-
7
|
15
|
-
0
|
16
|
-
64
|
17
|
-
47
|
18
|
-
49
|
19
|
-
1
|
20
|
-
1
|
21
|
-
15
|
22
|
-
5
|
23
|
-
7
|
24
|
-
2
|
25
|
-
64
|
26
|
-
47
|
27
|
-
49
|
28
|
-
1
|
29
|
-
1
|
30
|
-
15
|
31
|
-
5
|
32
|
-
7
|
33
|
-
3
|
34
|
-
64
|
35
|
-
47
|
36
|
-
49
|
37
|
-
1
|
38
|
-
1
|
39
|
-
15
|
40
|
-
99
|
41
|
-
7
|
42
|
-
4
|
43
|
-
65
|
44
|
-
49
|
45
|
-
5
|
46
|
-
2
|
47
|
-
13
|
48
|
-
99
|
49
|
-
12
|
50
|
-
7
|
51
|
-
6
|
52
|
-
12
|
53
|
-
7
|
54
|
-
7
|
55
|
-
12
|
56
|
-
65
|
57
|
-
12
|
58
|
-
49
|
59
|
-
8
|
60
|
-
4
|
61
|
-
15
|
62
|
-
49
|
63
|
-
6
|
64
|
-
0
|
65
|
-
15
|
66
|
-
2
|
67
|
-
11
|
68
|
-
I
|
69
|
-
6
|
70
|
-
I
|
71
|
-
0
|
72
|
-
I
|
73
|
-
0
|
74
|
-
I
|
75
|
-
0
|
76
|
-
n
|
77
|
-
p
|
78
|
-
9
|
79
|
-
s
|
80
|
-
5
|
81
|
-
guard
|
82
|
-
x
|
83
|
-
7
|
84
|
-
require
|
85
|
-
s
|
86
|
-
11
|
87
|
-
guard/guard
|
88
|
-
s
|
89
|
-
8
|
90
|
-
cucumber
|
91
|
-
x
|
92
|
-
5
|
93
|
-
Guard
|
94
|
-
x
|
95
|
-
11
|
96
|
-
open_module
|
97
|
-
x
|
98
|
-
15
|
99
|
-
__module_init__
|
100
|
-
M
|
101
|
-
1
|
102
|
-
n
|
103
|
-
n
|
104
|
-
x
|
105
|
-
5
|
106
|
-
Guard
|
107
|
-
i
|
108
|
-
31
|
109
|
-
5
|
110
|
-
66
|
111
|
-
99
|
112
|
-
7
|
113
|
-
0
|
114
|
-
45
|
115
|
-
1
|
116
|
-
2
|
117
|
-
65
|
118
|
-
49
|
119
|
-
3
|
120
|
-
3
|
121
|
-
13
|
122
|
-
99
|
123
|
-
12
|
124
|
-
7
|
125
|
-
4
|
126
|
-
12
|
127
|
-
7
|
128
|
-
5
|
129
|
-
12
|
130
|
-
65
|
131
|
-
12
|
132
|
-
49
|
133
|
-
6
|
134
|
-
4
|
135
|
-
15
|
136
|
-
49
|
137
|
-
4
|
138
|
-
0
|
139
|
-
11
|
140
|
-
I
|
141
|
-
6
|
142
|
-
I
|
143
|
-
0
|
144
|
-
I
|
145
|
-
0
|
146
|
-
I
|
147
|
-
0
|
148
|
-
n
|
149
|
-
p
|
150
|
-
7
|
151
|
-
x
|
152
|
-
8
|
153
|
-
Cucumber
|
154
|
-
x
|
155
|
-
5
|
156
|
-
Guard
|
157
|
-
n
|
158
|
-
x
|
159
|
-
10
|
160
|
-
open_class
|
161
|
-
x
|
162
|
-
14
|
163
|
-
__class_init__
|
164
|
-
M
|
165
|
-
1
|
166
|
-
n
|
167
|
-
n
|
168
|
-
x
|
169
|
-
8
|
170
|
-
Cucumber
|
171
|
-
i
|
172
|
-
126
|
173
|
-
5
|
174
|
-
66
|
175
|
-
5
|
176
|
-
7
|
177
|
-
0
|
178
|
-
7
|
179
|
-
1
|
180
|
-
64
|
181
|
-
47
|
182
|
-
49
|
183
|
-
2
|
184
|
-
2
|
185
|
-
15
|
186
|
-
5
|
187
|
-
7
|
188
|
-
3
|
189
|
-
7
|
190
|
-
4
|
191
|
-
64
|
192
|
-
47
|
193
|
-
49
|
194
|
-
2
|
195
|
-
2
|
196
|
-
15
|
197
|
-
99
|
198
|
-
7
|
199
|
-
5
|
200
|
-
7
|
201
|
-
6
|
202
|
-
65
|
203
|
-
67
|
204
|
-
49
|
205
|
-
7
|
206
|
-
0
|
207
|
-
49
|
208
|
-
8
|
209
|
-
4
|
210
|
-
15
|
211
|
-
99
|
212
|
-
7
|
213
|
-
9
|
214
|
-
7
|
215
|
-
10
|
216
|
-
65
|
217
|
-
67
|
218
|
-
49
|
219
|
-
7
|
220
|
-
0
|
221
|
-
49
|
222
|
-
8
|
223
|
-
4
|
224
|
-
15
|
225
|
-
99
|
226
|
-
7
|
227
|
-
11
|
228
|
-
7
|
229
|
-
12
|
230
|
-
65
|
231
|
-
67
|
232
|
-
49
|
233
|
-
7
|
234
|
-
0
|
235
|
-
49
|
236
|
-
8
|
237
|
-
4
|
238
|
-
15
|
239
|
-
99
|
240
|
-
7
|
241
|
-
13
|
242
|
-
7
|
243
|
-
14
|
244
|
-
65
|
245
|
-
67
|
246
|
-
49
|
247
|
-
7
|
248
|
-
0
|
249
|
-
49
|
250
|
-
8
|
251
|
-
4
|
252
|
-
15
|
253
|
-
99
|
254
|
-
7
|
255
|
-
15
|
256
|
-
7
|
257
|
-
16
|
258
|
-
65
|
259
|
-
67
|
260
|
-
49
|
261
|
-
7
|
262
|
-
0
|
263
|
-
49
|
264
|
-
8
|
265
|
-
4
|
266
|
-
15
|
267
|
-
5
|
268
|
-
48
|
269
|
-
17
|
270
|
-
15
|
271
|
-
99
|
272
|
-
7
|
273
|
-
18
|
274
|
-
7
|
275
|
-
19
|
276
|
-
65
|
277
|
-
67
|
278
|
-
49
|
279
|
-
7
|
280
|
-
0
|
281
|
-
49
|
282
|
-
8
|
283
|
-
4
|
284
|
-
15
|
285
|
-
99
|
286
|
-
7
|
287
|
-
20
|
288
|
-
7
|
289
|
-
21
|
290
|
-
65
|
291
|
-
67
|
292
|
-
49
|
293
|
-
7
|
294
|
-
0
|
295
|
-
49
|
296
|
-
8
|
297
|
-
4
|
298
|
-
11
|
299
|
-
I
|
300
|
-
5
|
301
|
-
I
|
302
|
-
0
|
303
|
-
I
|
304
|
-
0
|
305
|
-
I
|
306
|
-
0
|
307
|
-
n
|
308
|
-
p
|
309
|
-
22
|
310
|
-
x
|
311
|
-
6
|
312
|
-
Runner
|
313
|
-
s
|
314
|
-
21
|
315
|
-
guard/cucumber/runner
|
316
|
-
x
|
317
|
-
8
|
318
|
-
autoload
|
319
|
-
x
|
320
|
-
9
|
321
|
-
Inspector
|
322
|
-
s
|
323
|
-
24
|
324
|
-
guard/cucumber/inspector
|
325
|
-
x
|
326
|
-
10
|
327
|
-
initialize
|
328
|
-
M
|
329
|
-
1
|
330
|
-
n
|
331
|
-
n
|
332
|
-
x
|
333
|
-
10
|
334
|
-
initialize
|
335
|
-
i
|
336
|
-
86
|
337
|
-
23
|
338
|
-
0
|
339
|
-
10
|
340
|
-
9
|
341
|
-
35
|
342
|
-
0
|
343
|
-
19
|
344
|
-
0
|
345
|
-
15
|
346
|
-
23
|
347
|
-
1
|
348
|
-
10
|
349
|
-
23
|
350
|
-
44
|
351
|
-
43
|
352
|
-
0
|
353
|
-
78
|
354
|
-
49
|
355
|
-
1
|
356
|
-
1
|
357
|
-
19
|
358
|
-
1
|
359
|
-
15
|
360
|
-
54
|
361
|
-
89
|
362
|
-
2
|
363
|
-
15
|
364
|
-
44
|
365
|
-
43
|
366
|
-
0
|
367
|
-
4
|
368
|
-
4
|
369
|
-
49
|
370
|
-
1
|
371
|
-
1
|
372
|
-
13
|
373
|
-
7
|
374
|
-
3
|
375
|
-
2
|
376
|
-
49
|
377
|
-
4
|
378
|
-
2
|
379
|
-
15
|
380
|
-
13
|
381
|
-
7
|
382
|
-
5
|
383
|
-
2
|
384
|
-
49
|
385
|
-
4
|
386
|
-
2
|
387
|
-
15
|
388
|
-
13
|
389
|
-
7
|
390
|
-
6
|
391
|
-
2
|
392
|
-
49
|
393
|
-
4
|
394
|
-
2
|
395
|
-
15
|
396
|
-
13
|
397
|
-
7
|
398
|
-
7
|
399
|
-
7
|
400
|
-
8
|
401
|
-
64
|
402
|
-
49
|
403
|
-
4
|
404
|
-
2
|
405
|
-
15
|
406
|
-
20
|
407
|
-
1
|
408
|
-
49
|
409
|
-
9
|
410
|
-
1
|
411
|
-
38
|
412
|
-
10
|
413
|
-
15
|
414
|
-
3
|
415
|
-
38
|
416
|
-
11
|
417
|
-
15
|
418
|
-
35
|
419
|
-
0
|
420
|
-
38
|
421
|
-
12
|
422
|
-
11
|
423
|
-
I
|
424
|
-
6
|
425
|
-
I
|
426
|
-
2
|
427
|
-
I
|
428
|
-
0
|
429
|
-
I
|
430
|
-
2
|
431
|
-
n
|
432
|
-
p
|
433
|
-
13
|
434
|
-
x
|
435
|
-
4
|
436
|
-
Hash
|
437
|
-
x
|
438
|
-
16
|
439
|
-
new_from_literal
|
440
|
-
x
|
441
|
-
10
|
442
|
-
initialize
|
443
|
-
x
|
444
|
-
14
|
445
|
-
all_after_pass
|
446
|
-
x
|
447
|
-
3
|
448
|
-
[]=
|
449
|
-
x
|
450
|
-
12
|
451
|
-
all_on_start
|
452
|
-
x
|
453
|
-
11
|
454
|
-
keep_failed
|
455
|
-
x
|
456
|
-
3
|
457
|
-
cli
|
458
|
-
s
|
459
|
-
47
|
460
|
-
--no-profile --color --format progress --strict
|
461
|
-
x
|
462
|
-
6
|
463
|
-
update
|
464
|
-
x
|
465
|
-
8
|
466
|
-
@options
|
467
|
-
x
|
468
|
-
12
|
469
|
-
@last_failed
|
470
|
-
x
|
471
|
-
13
|
472
|
-
@failed_paths
|
473
|
-
p
|
474
|
-
23
|
475
|
-
I
|
476
|
-
-1
|
477
|
-
I
|
478
|
-
1d
|
479
|
-
I
|
480
|
-
17
|
481
|
-
I
|
482
|
-
1e
|
483
|
-
I
|
484
|
-
1b
|
485
|
-
I
|
486
|
-
24
|
487
|
-
I
|
488
|
-
24
|
489
|
-
I
|
490
|
-
20
|
491
|
-
I
|
492
|
-
2c
|
493
|
-
I
|
494
|
-
21
|
495
|
-
I
|
496
|
-
34
|
497
|
-
I
|
498
|
-
22
|
499
|
-
I
|
500
|
-
3c
|
501
|
-
I
|
502
|
-
23
|
503
|
-
I
|
504
|
-
45
|
505
|
-
I
|
506
|
-
24
|
507
|
-
I
|
508
|
-
4a
|
509
|
-
I
|
510
|
-
1f
|
511
|
-
I
|
512
|
-
4d
|
513
|
-
I
|
514
|
-
26
|
515
|
-
I
|
516
|
-
51
|
517
|
-
I
|
518
|
-
27
|
519
|
-
I
|
520
|
-
56
|
521
|
-
x
|
522
|
-
62
|
523
|
-
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
524
|
-
p
|
525
|
-
2
|
526
|
-
x
|
527
|
-
8
|
528
|
-
watchers
|
529
|
-
x
|
530
|
-
7
|
531
|
-
options
|
532
|
-
x
|
533
|
-
17
|
534
|
-
method_visibility
|
535
|
-
x
|
536
|
-
15
|
537
|
-
add_defn_method
|
538
|
-
x
|
539
|
-
5
|
540
|
-
start
|
541
|
-
M
|
542
|
-
1
|
543
|
-
n
|
544
|
-
n
|
545
|
-
x
|
546
|
-
5
|
547
|
-
start
|
548
|
-
i
|
549
|
-
16
|
550
|
-
39
|
551
|
-
0
|
552
|
-
7
|
553
|
-
1
|
554
|
-
49
|
555
|
-
2
|
556
|
-
1
|
557
|
-
9
|
558
|
-
14
|
559
|
-
5
|
560
|
-
48
|
561
|
-
3
|
562
|
-
8
|
563
|
-
15
|
564
|
-
1
|
565
|
-
11
|
566
|
-
I
|
567
|
-
2
|
568
|
-
I
|
569
|
-
0
|
570
|
-
I
|
571
|
-
0
|
572
|
-
I
|
573
|
-
0
|
574
|
-
n
|
575
|
-
p
|
576
|
-
4
|
577
|
-
x
|
578
|
-
8
|
579
|
-
@options
|
580
|
-
x
|
581
|
-
12
|
582
|
-
all_on_start
|
583
|
-
x
|
584
|
-
2
|
585
|
-
[]
|
586
|
-
x
|
587
|
-
7
|
588
|
-
run_all
|
589
|
-
p
|
590
|
-
7
|
591
|
-
I
|
592
|
-
-1
|
593
|
-
I
|
594
|
-
2e
|
595
|
-
I
|
596
|
-
0
|
597
|
-
I
|
598
|
-
2f
|
599
|
-
I
|
600
|
-
f
|
601
|
-
I
|
602
|
-
0
|
603
|
-
I
|
604
|
-
10
|
605
|
-
x
|
606
|
-
62
|
607
|
-
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
608
|
-
p
|
609
|
-
0
|
610
|
-
x
|
611
|
-
7
|
612
|
-
run_all
|
613
|
-
M
|
614
|
-
1
|
615
|
-
n
|
616
|
-
n
|
617
|
-
x
|
618
|
-
7
|
619
|
-
run_all
|
620
|
-
i
|
621
|
-
113
|
622
|
-
45
|
623
|
-
0
|
624
|
-
1
|
625
|
-
7
|
626
|
-
2
|
627
|
-
64
|
628
|
-
35
|
629
|
-
1
|
630
|
-
5
|
631
|
-
48
|
632
|
-
3
|
633
|
-
5
|
634
|
-
48
|
635
|
-
3
|
636
|
-
7
|
637
|
-
4
|
638
|
-
49
|
639
|
-
5
|
640
|
-
1
|
641
|
-
13
|
642
|
-
10
|
643
|
-
30
|
644
|
-
15
|
645
|
-
44
|
646
|
-
43
|
647
|
-
6
|
648
|
-
78
|
649
|
-
49
|
650
|
-
7
|
651
|
-
1
|
652
|
-
49
|
653
|
-
8
|
654
|
-
1
|
655
|
-
44
|
656
|
-
43
|
657
|
-
6
|
658
|
-
79
|
659
|
-
49
|
660
|
-
7
|
661
|
-
1
|
662
|
-
13
|
663
|
-
7
|
664
|
-
9
|
665
|
-
7
|
666
|
-
10
|
667
|
-
64
|
668
|
-
49
|
669
|
-
11
|
670
|
-
2
|
671
|
-
15
|
672
|
-
49
|
673
|
-
8
|
674
|
-
1
|
675
|
-
49
|
676
|
-
12
|
677
|
-
2
|
678
|
-
19
|
679
|
-
0
|
680
|
-
15
|
681
|
-
20
|
682
|
-
0
|
683
|
-
9
|
684
|
-
69
|
685
|
-
35
|
686
|
-
0
|
687
|
-
38
|
688
|
-
13
|
689
|
-
8
|
690
|
-
86
|
691
|
-
39
|
692
|
-
14
|
693
|
-
7
|
694
|
-
15
|
695
|
-
49
|
696
|
-
5
|
697
|
-
1
|
698
|
-
9
|
699
|
-
85
|
700
|
-
5
|
701
|
-
48
|
702
|
-
16
|
703
|
-
38
|
704
|
-
13
|
705
|
-
8
|
706
|
-
86
|
707
|
-
1
|
708
|
-
15
|
709
|
-
20
|
710
|
-
0
|
711
|
-
10
|
712
|
-
94
|
713
|
-
2
|
714
|
-
8
|
715
|
-
95
|
716
|
-
3
|
717
|
-
38
|
718
|
-
17
|
719
|
-
15
|
720
|
-
20
|
721
|
-
0
|
722
|
-
9
|
723
|
-
105
|
724
|
-
1
|
725
|
-
8
|
726
|
-
112
|
727
|
-
5
|
728
|
-
7
|
729
|
-
18
|
730
|
-
47
|
731
|
-
49
|
732
|
-
19
|
733
|
-
1
|
734
|
-
11
|
735
|
-
I
|
736
|
-
8
|
737
|
-
I
|
738
|
-
1
|
739
|
-
I
|
740
|
-
0
|
741
|
-
I
|
742
|
-
0
|
743
|
-
n
|
744
|
-
p
|
745
|
-
20
|
746
|
-
x
|
747
|
-
6
|
748
|
-
Runner
|
749
|
-
n
|
750
|
-
s
|
751
|
-
8
|
752
|
-
features
|
753
|
-
x
|
754
|
-
7
|
755
|
-
options
|
756
|
-
x
|
757
|
-
7
|
758
|
-
run_all
|
759
|
-
x
|
760
|
-
2
|
761
|
-
[]
|
762
|
-
x
|
763
|
-
4
|
764
|
-
Hash
|
765
|
-
x
|
766
|
-
16
|
767
|
-
new_from_literal
|
768
|
-
x
|
769
|
-
5
|
770
|
-
merge
|
771
|
-
x
|
772
|
-
7
|
773
|
-
message
|
774
|
-
s
|
775
|
-
20
|
776
|
-
Running all features
|
777
|
-
x
|
778
|
-
3
|
779
|
-
[]=
|
780
|
-
x
|
781
|
-
3
|
782
|
-
run
|
783
|
-
x
|
784
|
-
13
|
785
|
-
@failed_paths
|
786
|
-
x
|
787
|
-
8
|
788
|
-
@options
|
789
|
-
x
|
790
|
-
11
|
791
|
-
keep_failed
|
792
|
-
x
|
793
|
-
20
|
794
|
-
read_failed_features
|
795
|
-
x
|
796
|
-
12
|
797
|
-
@last_failed
|
798
|
-
x
|
799
|
-
15
|
800
|
-
task_has_failed
|
801
|
-
x
|
802
|
-
5
|
803
|
-
throw
|
804
|
-
p
|
805
|
-
19
|
806
|
-
I
|
807
|
-
-1
|
808
|
-
I
|
809
|
-
36
|
810
|
-
I
|
811
|
-
0
|
812
|
-
I
|
813
|
-
37
|
814
|
-
I
|
815
|
-
3b
|
816
|
-
I
|
817
|
-
39
|
818
|
-
I
|
819
|
-
3f
|
820
|
-
I
|
821
|
-
3a
|
822
|
-
I
|
823
|
-
45
|
824
|
-
I
|
825
|
-
3c
|
826
|
-
I
|
827
|
-
56
|
828
|
-
I
|
829
|
-
0
|
830
|
-
I
|
831
|
-
57
|
832
|
-
I
|
833
|
-
3f
|
834
|
-
I
|
835
|
-
62
|
836
|
-
I
|
837
|
-
41
|
838
|
-
I
|
839
|
-
70
|
840
|
-
I
|
841
|
-
0
|
842
|
-
I
|
843
|
-
71
|
844
|
-
x
|
845
|
-
62
|
846
|
-
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
847
|
-
p
|
848
|
-
1
|
849
|
-
x
|
850
|
-
6
|
851
|
-
passed
|
852
|
-
x
|
853
|
-
6
|
854
|
-
reload
|
855
|
-
M
|
856
|
-
1
|
857
|
-
n
|
858
|
-
n
|
859
|
-
x
|
860
|
-
6
|
861
|
-
reload
|
862
|
-
i
|
863
|
-
5
|
864
|
-
35
|
865
|
-
0
|
866
|
-
38
|
867
|
-
0
|
868
|
-
11
|
869
|
-
I
|
870
|
-
1
|
871
|
-
I
|
872
|
-
0
|
873
|
-
I
|
874
|
-
0
|
875
|
-
I
|
876
|
-
0
|
877
|
-
n
|
878
|
-
p
|
879
|
-
1
|
880
|
-
x
|
881
|
-
13
|
882
|
-
@failed_paths
|
883
|
-
p
|
884
|
-
5
|
885
|
-
I
|
886
|
-
-1
|
887
|
-
I
|
888
|
-
48
|
889
|
-
I
|
890
|
-
0
|
891
|
-
I
|
892
|
-
49
|
893
|
-
I
|
894
|
-
5
|
895
|
-
x
|
896
|
-
62
|
897
|
-
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
898
|
-
p
|
899
|
-
0
|
900
|
-
x
|
901
|
-
13
|
902
|
-
run_on_change
|
903
|
-
M
|
904
|
-
1
|
905
|
-
n
|
906
|
-
n
|
907
|
-
x
|
908
|
-
13
|
909
|
-
run_on_change
|
910
|
-
i
|
911
|
-
196
|
912
|
-
39
|
913
|
-
0
|
914
|
-
7
|
915
|
-
1
|
916
|
-
49
|
917
|
-
2
|
918
|
-
1
|
919
|
-
9
|
920
|
-
19
|
921
|
-
20
|
922
|
-
0
|
923
|
-
39
|
924
|
-
3
|
925
|
-
81
|
926
|
-
4
|
927
|
-
19
|
928
|
-
0
|
929
|
-
8
|
930
|
-
20
|
931
|
-
1
|
932
|
-
15
|
933
|
-
45
|
934
|
-
5
|
935
|
-
6
|
936
|
-
20
|
937
|
-
0
|
938
|
-
49
|
939
|
-
7
|
940
|
-
1
|
941
|
-
19
|
942
|
-
0
|
943
|
-
15
|
944
|
-
39
|
945
|
-
0
|
946
|
-
7
|
947
|
-
8
|
948
|
-
49
|
949
|
-
2
|
950
|
-
1
|
951
|
-
9
|
952
|
-
55
|
953
|
-
5
|
954
|
-
39
|
955
|
-
0
|
956
|
-
7
|
957
|
-
8
|
958
|
-
49
|
959
|
-
2
|
960
|
-
1
|
961
|
-
47
|
962
|
-
49
|
963
|
-
8
|
964
|
-
1
|
965
|
-
8
|
966
|
-
57
|
967
|
-
39
|
968
|
-
0
|
969
|
-
19
|
970
|
-
1
|
971
|
-
15
|
972
|
-
45
|
973
|
-
9
|
974
|
-
10
|
975
|
-
20
|
976
|
-
0
|
977
|
-
20
|
978
|
-
0
|
979
|
-
7
|
980
|
-
11
|
981
|
-
64
|
982
|
-
49
|
983
|
-
12
|
984
|
-
1
|
985
|
-
9
|
986
|
-
99
|
987
|
-
20
|
988
|
-
1
|
989
|
-
44
|
990
|
-
43
|
991
|
-
13
|
992
|
-
79
|
993
|
-
49
|
994
|
-
14
|
995
|
-
1
|
996
|
-
13
|
997
|
-
7
|
998
|
-
15
|
999
|
-
7
|
1000
|
-
16
|
1001
|
-
64
|
1002
|
-
49
|
1003
|
-
17
|
1004
|
-
2
|
1005
|
-
15
|
1006
|
-
49
|
1007
|
-
18
|
1008
|
-
1
|
1009
|
-
8
|
1010
|
-
101
|
1011
|
-
20
|
1012
|
-
1
|
1013
|
-
49
|
1014
|
-
19
|
1015
|
-
2
|
1016
|
-
19
|
1017
|
-
2
|
1018
|
-
15
|
1019
|
-
20
|
1020
|
-
2
|
1021
|
-
9
|
1022
|
-
155
|
1023
|
-
39
|
1024
|
-
0
|
1025
|
-
7
|
1026
|
-
1
|
1027
|
-
49
|
1028
|
-
2
|
1029
|
-
1
|
1030
|
-
9
|
1031
|
-
130
|
1032
|
-
39
|
1033
|
-
3
|
1034
|
-
20
|
1035
|
-
0
|
1036
|
-
82
|
1037
|
-
20
|
1038
|
-
38
|
1039
|
-
3
|
1040
|
-
8
|
1041
|
-
131
|
1042
|
-
1
|
1043
|
-
15
|
1044
|
-
39
|
1045
|
-
21
|
1046
|
-
13
|
1047
|
-
9
|
1048
|
-
145
|
1049
|
-
15
|
1050
|
-
39
|
1051
|
-
0
|
1052
|
-
7
|
1053
|
-
22
|
1054
|
-
49
|
1055
|
-
2
|
1056
|
-
1
|
1057
|
-
9
|
1058
|
-
152
|
1059
|
-
5
|
1060
|
-
48
|
1061
|
-
23
|
1062
|
-
8
|
1063
|
-
153
|
1064
|
-
1
|
1065
|
-
8
|
1066
|
-
180
|
1067
|
-
39
|
1068
|
-
0
|
1069
|
-
7
|
1070
|
-
1
|
1071
|
-
49
|
1072
|
-
2
|
1073
|
-
1
|
1074
|
-
9
|
1075
|
-
175
|
1076
|
-
39
|
1077
|
-
3
|
1078
|
-
5
|
1079
|
-
48
|
1080
|
-
24
|
1081
|
-
81
|
1082
|
-
4
|
1083
|
-
38
|
1084
|
-
3
|
1085
|
-
8
|
1086
|
-
176
|
1087
|
-
1
|
1088
|
-
15
|
1089
|
-
2
|
1090
|
-
38
|
1091
|
-
21
|
1092
|
-
15
|
1093
|
-
20
|
1094
|
-
2
|
1095
|
-
9
|
1096
|
-
188
|
1097
|
-
1
|
1098
|
-
8
|
1099
|
-
195
|
1100
|
-
5
|
1101
|
-
7
|
1102
|
-
25
|
1103
|
-
47
|
1104
|
-
49
|
1105
|
-
26
|
1106
|
-
1
|
1107
|
-
11
|
1108
|
-
I
|
1109
|
-
a
|
1110
|
-
I
|
1111
|
-
3
|
1112
|
-
I
|
1113
|
-
1
|
1114
|
-
I
|
1115
|
-
1
|
1116
|
-
n
|
1117
|
-
p
|
1118
|
-
27
|
1119
|
-
x
|
1120
|
-
8
|
1121
|
-
@options
|
1122
|
-
x
|
1123
|
-
11
|
1124
|
-
keep_failed
|
1125
|
-
x
|
1126
|
-
2
|
1127
|
-
[]
|
1128
|
-
x
|
1129
|
-
13
|
1130
|
-
@failed_paths
|
1131
|
-
x
|
1132
|
-
1
|
1133
|
-
+
|
1134
|
-
x
|
1135
|
-
9
|
1136
|
-
Inspector
|
1137
|
-
n
|
1138
|
-
x
|
1139
|
-
5
|
1140
|
-
clean
|
1141
|
-
x
|
1142
|
-
13
|
1143
|
-
change_format
|
1144
|
-
x
|
1145
|
-
6
|
1146
|
-
Runner
|
1147
|
-
n
|
1148
|
-
s
|
1149
|
-
8
|
1150
|
-
features
|
1151
|
-
x
|
1152
|
-
8
|
1153
|
-
include?
|
1154
|
-
x
|
1155
|
-
4
|
1156
|
-
Hash
|
1157
|
-
x
|
1158
|
-
16
|
1159
|
-
new_from_literal
|
1160
|
-
x
|
1161
|
-
7
|
1162
|
-
message
|
1163
|
-
s
|
1164
|
-
20
|
1165
|
-
Running all features
|
1166
|
-
x
|
1167
|
-
3
|
1168
|
-
[]=
|
1169
|
-
x
|
1170
|
-
5
|
1171
|
-
merge
|
1172
|
-
x
|
1173
|
-
3
|
1174
|
-
run
|
1175
|
-
x
|
1176
|
-
1
|
1177
|
-
-
|
1178
|
-
x
|
1179
|
-
12
|
1180
|
-
@last_failed
|
1181
|
-
x
|
1182
|
-
14
|
1183
|
-
all_after_pass
|
1184
|
-
x
|
1185
|
-
7
|
1186
|
-
run_all
|
1187
|
-
x
|
1188
|
-
20
|
1189
|
-
read_failed_features
|
1190
|
-
x
|
1191
|
-
15
|
1192
|
-
task_has_failed
|
1193
|
-
x
|
1194
|
-
5
|
1195
|
-
throw
|
1196
|
-
p
|
1197
|
-
39
|
1198
|
-
I
|
1199
|
-
-1
|
1200
|
-
I
|
1201
|
-
51
|
1202
|
-
I
|
1203
|
-
0
|
1204
|
-
I
|
1205
|
-
52
|
1206
|
-
I
|
1207
|
-
14
|
1208
|
-
I
|
1209
|
-
0
|
1210
|
-
I
|
1211
|
-
15
|
1212
|
-
I
|
1213
|
-
53
|
1214
|
-
I
|
1215
|
-
20
|
1216
|
-
I
|
1217
|
-
54
|
1218
|
-
I
|
1219
|
-
39
|
1220
|
-
I
|
1221
|
-
54
|
1222
|
-
I
|
1223
|
-
3c
|
1224
|
-
I
|
1225
|
-
55
|
1226
|
-
I
|
1227
|
-
65
|
1228
|
-
I
|
1229
|
-
55
|
1230
|
-
I
|
1231
|
-
6b
|
1232
|
-
I
|
1233
|
-
57
|
1234
|
-
I
|
1235
|
-
6f
|
1236
|
-
I
|
1237
|
-
59
|
1238
|
-
I
|
1239
|
-
83
|
1240
|
-
I
|
1241
|
-
0
|
1242
|
-
I
|
1243
|
-
84
|
1244
|
-
I
|
1245
|
-
5b
|
1246
|
-
I
|
1247
|
-
99
|
1248
|
-
I
|
1249
|
-
0
|
1250
|
-
I
|
1251
|
-
9b
|
1252
|
-
I
|
1253
|
-
5e
|
1254
|
-
I
|
1255
|
-
b0
|
1256
|
-
I
|
1257
|
-
0
|
1258
|
-
I
|
1259
|
-
b1
|
1260
|
-
I
|
1261
|
-
60
|
1262
|
-
I
|
1263
|
-
b4
|
1264
|
-
I
|
1265
|
-
0
|
1266
|
-
I
|
1267
|
-
b5
|
1268
|
-
I
|
1269
|
-
63
|
1270
|
-
I
|
1271
|
-
c3
|
1272
|
-
I
|
1273
|
-
0
|
1274
|
-
I
|
1275
|
-
c4
|
1276
|
-
x
|
1277
|
-
62
|
1278
|
-
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
1279
|
-
p
|
1280
|
-
3
|
1281
|
-
x
|
1282
|
-
5
|
1283
|
-
paths
|
1284
|
-
x
|
1285
|
-
7
|
1286
|
-
options
|
1287
|
-
x
|
1288
|
-
6
|
1289
|
-
passed
|
1290
|
-
x
|
1291
|
-
7
|
1292
|
-
private
|
1293
|
-
x
|
1294
|
-
20
|
1295
|
-
read_failed_features
|
1296
|
-
M
|
1297
|
-
1
|
1298
|
-
n
|
1299
|
-
n
|
1300
|
-
x
|
1301
|
-
20
|
1302
|
-
read_failed_features
|
1303
|
-
i
|
1304
|
-
53
|
1305
|
-
35
|
1306
|
-
0
|
1307
|
-
19
|
1308
|
-
0
|
1309
|
-
15
|
1310
|
-
45
|
1311
|
-
0
|
1312
|
-
1
|
1313
|
-
7
|
1314
|
-
2
|
1315
|
-
64
|
1316
|
-
49
|
1317
|
-
3
|
1318
|
-
1
|
1319
|
-
9
|
1320
|
-
48
|
1321
|
-
45
|
1322
|
-
0
|
1323
|
-
4
|
1324
|
-
7
|
1325
|
-
2
|
1326
|
-
64
|
1327
|
-
49
|
1328
|
-
5
|
1329
|
-
1
|
1330
|
-
49
|
1331
|
-
6
|
1332
|
-
0
|
1333
|
-
7
|
1334
|
-
7
|
1335
|
-
64
|
1336
|
-
49
|
1337
|
-
8
|
1338
|
-
1
|
1339
|
-
19
|
1340
|
-
0
|
1341
|
-
15
|
1342
|
-
45
|
1343
|
-
0
|
1344
|
-
9
|
1345
|
-
7
|
1346
|
-
2
|
1347
|
-
64
|
1348
|
-
49
|
1349
|
-
10
|
1350
|
-
1
|
1351
|
-
8
|
1352
|
-
49
|
1353
|
-
1
|
1354
|
-
15
|
1355
|
-
20
|
1356
|
-
0
|
1357
|
-
11
|
1358
|
-
I
|
1359
|
-
3
|
1360
|
-
I
|
1361
|
-
1
|
1362
|
-
I
|
1363
|
-
0
|
1364
|
-
I
|
1365
|
-
0
|
1366
|
-
n
|
1367
|
-
p
|
1368
|
-
11
|
1369
|
-
x
|
1370
|
-
4
|
1371
|
-
File
|
1372
|
-
n
|
1373
|
-
s
|
1374
|
-
9
|
1375
|
-
rerun.txt
|
1376
|
-
x
|
1377
|
-
6
|
1378
|
-
exist?
|
1379
|
-
n
|
1380
|
-
x
|
1381
|
-
4
|
1382
|
-
open
|
1383
|
-
x
|
1384
|
-
4
|
1385
|
-
read
|
1386
|
-
s
|
1387
|
-
1
|
1388
|
-
|
1389
|
-
x
|
1390
|
-
5
|
1391
|
-
split
|
1392
|
-
n
|
1393
|
-
x
|
1394
|
-
6
|
1395
|
-
delete
|
1396
|
-
p
|
1397
|
-
17
|
1398
|
-
I
|
1399
|
-
-1
|
1400
|
-
I
|
1401
|
-
6d
|
1402
|
-
I
|
1403
|
-
0
|
1404
|
-
I
|
1405
|
-
6e
|
1406
|
-
I
|
1407
|
-
5
|
1408
|
-
I
|
1409
|
-
70
|
1410
|
-
I
|
1411
|
-
10
|
1412
|
-
I
|
1413
|
-
71
|
1414
|
-
I
|
1415
|
-
25
|
1416
|
-
I
|
1417
|
-
72
|
1418
|
-
I
|
1419
|
-
30
|
1420
|
-
I
|
1421
|
-
70
|
1422
|
-
I
|
1423
|
-
31
|
1424
|
-
I
|
1425
|
-
0
|
1426
|
-
I
|
1427
|
-
32
|
1428
|
-
I
|
1429
|
-
75
|
1430
|
-
I
|
1431
|
-
35
|
1432
|
-
x
|
1433
|
-
62
|
1434
|
-
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
1435
|
-
p
|
1436
|
-
1
|
1437
|
-
x
|
1438
|
-
6
|
1439
|
-
failed
|
1440
|
-
x
|
1441
|
-
13
|
1442
|
-
change_format
|
1443
|
-
M
|
1444
|
-
1
|
1445
|
-
n
|
1446
|
-
n
|
1447
|
-
x
|
1448
|
-
13
|
1449
|
-
change_format
|
1450
|
-
i
|
1451
|
-
52
|
1452
|
-
39
|
1453
|
-
0
|
1454
|
-
7
|
1455
|
-
1
|
1456
|
-
49
|
1457
|
-
2
|
1458
|
-
1
|
1459
|
-
7
|
1460
|
-
3
|
1461
|
-
64
|
1462
|
-
49
|
1463
|
-
4
|
1464
|
-
1
|
1465
|
-
19
|
1466
|
-
1
|
1467
|
-
15
|
1468
|
-
20
|
1469
|
-
1
|
1470
|
-
56
|
1471
|
-
5
|
1472
|
-
50
|
1473
|
-
6
|
1474
|
-
0
|
1475
|
-
15
|
1476
|
-
39
|
1477
|
-
0
|
1478
|
-
44
|
1479
|
-
43
|
1480
|
-
7
|
1481
|
-
79
|
1482
|
-
49
|
1483
|
-
8
|
1484
|
-
1
|
1485
|
-
13
|
1486
|
-
7
|
1487
|
-
1
|
1488
|
-
20
|
1489
|
-
1
|
1490
|
-
7
|
1491
|
-
3
|
1492
|
-
64
|
1493
|
-
49
|
1494
|
-
9
|
1495
|
-
1
|
1496
|
-
49
|
1497
|
-
10
|
1498
|
-
2
|
1499
|
-
15
|
1500
|
-
49
|
1501
|
-
11
|
1502
|
-
1
|
1503
|
-
11
|
1504
|
-
I
|
1505
|
-
8
|
1506
|
-
I
|
1507
|
-
2
|
1508
|
-
I
|
1509
|
-
1
|
1510
|
-
I
|
1511
|
-
1
|
1512
|
-
n
|
1513
|
-
p
|
1514
|
-
12
|
1515
|
-
x
|
1516
|
-
8
|
1517
|
-
@options
|
1518
|
-
x
|
1519
|
-
3
|
1520
|
-
cli
|
1521
|
-
x
|
1522
|
-
2
|
1523
|
-
[]
|
1524
|
-
s
|
1525
|
-
1
|
1526
|
-
|
1527
|
-
x
|
1528
|
-
5
|
1529
|
-
split
|
1530
|
-
M
|
1531
|
-
1
|
1532
|
-
p
|
1533
|
-
2
|
1534
|
-
x
|
1535
|
-
9
|
1536
|
-
for_block
|
1537
|
-
t
|
1538
|
-
n
|
1539
|
-
x
|
1540
|
-
13
|
1541
|
-
change_format
|
1542
|
-
i
|
1543
|
-
67
|
1544
|
-
58
|
1545
|
-
37
|
1546
|
-
19
|
1547
|
-
0
|
1548
|
-
15
|
1549
|
-
37
|
1550
|
-
19
|
1551
|
-
1
|
1552
|
-
15
|
1553
|
-
15
|
1554
|
-
20
|
1555
|
-
0
|
1556
|
-
7
|
1557
|
-
0
|
1558
|
-
64
|
1559
|
-
83
|
1560
|
-
1
|
1561
|
-
13
|
1562
|
-
9
|
1563
|
-
43
|
1564
|
-
15
|
1565
|
-
21
|
1566
|
-
1
|
1567
|
-
1
|
1568
|
-
20
|
1569
|
-
1
|
1570
|
-
80
|
1571
|
-
81
|
1572
|
-
2
|
1573
|
-
49
|
1574
|
-
3
|
1575
|
-
1
|
1576
|
-
7
|
1577
|
-
4
|
1578
|
-
64
|
1579
|
-
83
|
1580
|
-
1
|
1581
|
-
10
|
1582
|
-
42
|
1583
|
-
2
|
1584
|
-
8
|
1585
|
-
43
|
1586
|
-
3
|
1587
|
-
9
|
1588
|
-
65
|
1589
|
-
21
|
1590
|
-
1
|
1591
|
-
1
|
1592
|
-
20
|
1593
|
-
1
|
1594
|
-
79
|
1595
|
-
81
|
1596
|
-
2
|
1597
|
-
21
|
1598
|
-
1
|
1599
|
-
0
|
1600
|
-
13
|
1601
|
-
18
|
1602
|
-
3
|
1603
|
-
49
|
1604
|
-
5
|
1605
|
-
2
|
1606
|
-
15
|
1607
|
-
8
|
1608
|
-
66
|
1609
|
-
1
|
1610
|
-
11
|
1611
|
-
I
|
1612
|
-
7
|
1613
|
-
I
|
1614
|
-
2
|
1615
|
-
I
|
1616
|
-
2
|
1617
|
-
I
|
1618
|
-
2
|
1619
|
-
n
|
1620
|
-
p
|
1621
|
-
6
|
1622
|
-
s
|
1623
|
-
8
|
1624
|
-
--format
|
1625
|
-
x
|
1626
|
-
2
|
1627
|
-
==
|
1628
|
-
x
|
1629
|
-
1
|
1630
|
-
+
|
1631
|
-
x
|
1632
|
-
2
|
1633
|
-
[]
|
1634
|
-
s
|
1635
|
-
5
|
1636
|
-
--out
|
1637
|
-
x
|
1638
|
-
3
|
1639
|
-
[]=
|
1640
|
-
p
|
1641
|
-
11
|
1642
|
-
I
|
1643
|
-
0
|
1644
|
-
I
|
1645
|
-
7f
|
1646
|
-
I
|
1647
|
-
a
|
1648
|
-
I
|
1649
|
-
80
|
1650
|
-
I
|
1651
|
-
2d
|
1652
|
-
I
|
1653
|
-
81
|
1654
|
-
I
|
1655
|
-
41
|
1656
|
-
I
|
1657
|
-
80
|
1658
|
-
I
|
1659
|
-
42
|
1660
|
-
I
|
1661
|
-
0
|
1662
|
-
I
|
1663
|
-
43
|
1664
|
-
x
|
1665
|
-
62
|
1666
|
-
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
1667
|
-
p
|
1668
|
-
2
|
1669
|
-
x
|
1670
|
-
4
|
1671
|
-
part
|
1672
|
-
x
|
1673
|
-
5
|
1674
|
-
index
|
1675
|
-
x
|
1676
|
-
15
|
1677
|
-
each_with_index
|
1678
|
-
x
|
1679
|
-
4
|
1680
|
-
Hash
|
1681
|
-
x
|
1682
|
-
16
|
1683
|
-
new_from_literal
|
1684
|
-
x
|
1685
|
-
4
|
1686
|
-
join
|
1687
|
-
x
|
1688
|
-
3
|
1689
|
-
[]=
|
1690
|
-
x
|
1691
|
-
5
|
1692
|
-
merge
|
1693
|
-
p
|
1694
|
-
9
|
1695
|
-
I
|
1696
|
-
-1
|
1697
|
-
I
|
1698
|
-
7d
|
1699
|
-
I
|
1700
|
-
0
|
1701
|
-
I
|
1702
|
-
7e
|
1703
|
-
I
|
1704
|
-
10
|
1705
|
-
I
|
1706
|
-
7f
|
1707
|
-
I
|
1708
|
-
18
|
1709
|
-
I
|
1710
|
-
84
|
1711
|
-
I
|
1712
|
-
34
|
1713
|
-
x
|
1714
|
-
62
|
1715
|
-
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
1716
|
-
p
|
1717
|
-
2
|
1718
|
-
x
|
1719
|
-
6
|
1720
|
-
format
|
1721
|
-
x
|
1722
|
-
9
|
1723
|
-
cli_parts
|
1724
|
-
p
|
1725
|
-
21
|
1726
|
-
I
|
1727
|
-
2
|
1728
|
-
I
|
1729
|
-
c
|
1730
|
-
I
|
1731
|
-
d
|
1732
|
-
I
|
1733
|
-
d
|
1734
|
-
I
|
1735
|
-
18
|
1736
|
-
I
|
1737
|
-
1d
|
1738
|
-
I
|
1739
|
-
26
|
1740
|
-
I
|
1741
|
-
2e
|
1742
|
-
I
|
1743
|
-
34
|
1744
|
-
I
|
1745
|
-
36
|
1746
|
-
I
|
1747
|
-
42
|
1748
|
-
I
|
1749
|
-
48
|
1750
|
-
I
|
1751
|
-
50
|
1752
|
-
I
|
1753
|
-
51
|
1754
|
-
I
|
1755
|
-
5e
|
1756
|
-
I
|
1757
|
-
66
|
1758
|
-
I
|
1759
|
-
62
|
1760
|
-
I
|
1761
|
-
6d
|
1762
|
-
I
|
1763
|
-
70
|
1764
|
-
I
|
1765
|
-
7d
|
1766
|
-
I
|
1767
|
-
7e
|
1768
|
-
x
|
1769
|
-
62
|
1770
|
-
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
1771
|
-
p
|
1772
|
-
0
|
1773
|
-
x
|
1774
|
-
13
|
1775
|
-
attach_method
|
1776
|
-
p
|
1777
|
-
3
|
1778
|
-
I
|
1779
|
-
2
|
1780
|
-
I
|
1781
|
-
a
|
1782
|
-
I
|
1783
|
-
1f
|
1784
|
-
x
|
1785
|
-
62
|
1786
|
-
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
1787
|
-
p
|
1788
|
-
0
|
1789
|
-
x
|
1790
|
-
13
|
1791
|
-
attach_method
|
1792
|
-
p
|
1793
|
-
9
|
1794
|
-
I
|
1795
|
-
0
|
1796
|
-
I
|
1797
|
-
1
|
1798
|
-
I
|
1799
|
-
9
|
1800
|
-
I
|
1801
|
-
2
|
1802
|
-
I
|
1803
|
-
12
|
1804
|
-
I
|
1805
|
-
3
|
1806
|
-
I
|
1807
|
-
1b
|
1808
|
-
I
|
1809
|
-
5
|
1810
|
-
I
|
1811
|
-
37
|
1812
|
-
x
|
1813
|
-
62
|
1814
|
-
/Users/michi/Repositories/guard-cucumber/lib/guard/cucumber.rb
|
1815
|
-
p
|
1816
|
-
0
|