cucumber 1.1.2 → 1.1.3
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/.rvmrc +1 -0
- data/.travis.yml +12 -2
- data/History.md +14 -0
- data/cucumber.gemspec +2 -2
- data/cucumber.yml +1 -1
- data/features/.cucumber/stepdefs.json +1159 -0
- data/features/issue_57.feature +35 -0
- data/legacy_features/wire_protocol.feature +1 -1
- data/lib/cucumber/ast/feature.rb +1 -1
- data/lib/cucumber/ast/table.rb +52 -31
- data/lib/cucumber/cli/configuration.rb +4 -0
- data/lib/cucumber/cli/main.rb +1 -0
- data/lib/cucumber/cli/options.rb +3 -0
- data/lib/cucumber/constantize.rb +1 -1
- data/lib/cucumber/formatter/gherkin_formatter_adapter.rb +1 -1
- data/lib/cucumber/formatter/html.rb +6 -1
- data/lib/cucumber/formatter/rerun.rb +30 -7
- data/lib/cucumber/js_support/js_language.rb +1 -1
- data/lib/cucumber/language_support/language_methods.rb +0 -4
- data/lib/cucumber/platform.rb +1 -1
- data/lib/cucumber/py_support/py_language.rb +0 -4
- data/lib/cucumber/rb_support/rb_language.rb +0 -14
- data/lib/cucumber/rb_support/regexp_argument_matcher.rb +3 -3
- data/lib/cucumber/runtime.rb +39 -2
- data/lib/cucumber/step_match.rb +3 -3
- data/lib/cucumber/wire_support/wire_protocol.rb +0 -1
- data/lib/cucumber/wire_support/wire_protocol/requests.rb +3 -1
- data/spec/cucumber/ast/table_spec.rb +13 -0
- data/spec/cucumber/cli/main_spec.rb +1 -1
- data/spec/cucumber/constantize_spec.rb +12 -0
- data/spec/cucumber/rb_support/regexp_argument_matcher_spec.rb +2 -2
- metadata +54 -68
- data/.gitignore +0 -27
- data/examples/i18n/de/.gitignore +0 -1
- data/examples/i18n/en/.gitignore +0 -1
- data/examples/i18n/eo/.gitignore +0 -1
- data/examples/i18n/fi/.gitignore +0 -1
- data/examples/i18n/hu/.gitignore +0 -1
- data/examples/i18n/id/.gitignore +0 -1
- data/examples/i18n/ja/.gitignore +0 -1
- data/examples/i18n/ko/.gitignore +0 -1
- data/examples/i18n/lt/.gitignore +0 -1
- data/examples/i18n/pl/.gitignore +0 -1
- data/examples/i18n/sk/.gitignore +0 -1
- data/examples/i18n/tr/.gitignore +0 -1
- data/examples/i18n/zh-TW/.gitignore +0 -1
- data/examples/python/lib/.gitignore +0 -1
- data/examples/ruby2python/lib/.gitignore +0 -1
- data/examples/watir/.gitignore +0 -2
- data/fixtures/self_test/.gitignore +0 -1
- data/lib/cucumber/step_argument.rb +0 -9
data/lib/cucumber/step_match.rb
CHANGED
@@ -60,7 +60,7 @@ module Cucumber
|
|
60
60
|
s = string.dup
|
61
61
|
offset = past_offset = 0
|
62
62
|
step_arguments.each do |step_argument|
|
63
|
-
next if step_argument.
|
63
|
+
next if step_argument.offset.nil? || step_argument.offset < past_offset
|
64
64
|
|
65
65
|
replacement = if block_given?
|
66
66
|
proc.call(step_argument.val)
|
@@ -70,9 +70,9 @@ module Cucumber
|
|
70
70
|
format % step_argument.val
|
71
71
|
end
|
72
72
|
|
73
|
-
s[step_argument.
|
73
|
+
s[step_argument.offset + offset, step_argument.val.length] = replacement
|
74
74
|
offset += replacement.unpack('U*').length - step_argument.val.unpack('U*').length
|
75
|
-
past_offset = step_argument.
|
75
|
+
past_offset = step_argument.offset + step_argument.val.length
|
76
76
|
end
|
77
77
|
s
|
78
78
|
end
|
@@ -1,4 +1,6 @@
|
|
1
1
|
require 'cucumber/wire_support/request_handler'
|
2
|
+
require 'gherkin/formatter/argument'
|
3
|
+
|
2
4
|
module Cucumber
|
3
5
|
module WireSupport
|
4
6
|
module WireProtocol
|
@@ -25,7 +27,7 @@ module Cucumber
|
|
25
27
|
def create_step_match(raw_step_match)
|
26
28
|
step_definition = WireStepDefinition.new(@connection, raw_step_match)
|
27
29
|
step_args = raw_step_match['args'].map do |raw_arg|
|
28
|
-
|
30
|
+
Gherkin::Formatter::Argument.new(raw_arg['pos'], raw_arg['val'])
|
29
31
|
end
|
30
32
|
step_match(step_definition, step_args)
|
31
33
|
end
|
@@ -68,12 +68,14 @@ module Cucumber
|
|
68
68
|
it "should pass silently if a mapped column does not exist in non-strict mode" do
|
69
69
|
lambda {
|
70
70
|
@table.map_column!('two', false) { |v| v.to_i }
|
71
|
+
@table.hashes
|
71
72
|
}.should_not raise_error
|
72
73
|
end
|
73
74
|
|
74
75
|
it "should fail if a mapped column does not exist in strict mode" do
|
75
76
|
lambda {
|
76
77
|
@table.map_column!('two', true) { |v| v.to_i }
|
78
|
+
@table.hashes
|
77
79
|
}.should raise_error('The column named "two" does not exist')
|
78
80
|
end
|
79
81
|
|
@@ -132,6 +134,16 @@ module Cucumber
|
|
132
134
|
faulty_table.rows_hash
|
133
135
|
}.should raise_error('The table must have exactly 2 columns')
|
134
136
|
end
|
137
|
+
|
138
|
+
it "should support header and column mapping" do
|
139
|
+
table = Table.new([
|
140
|
+
%w{one 1111},
|
141
|
+
%w{two 22222}
|
142
|
+
])
|
143
|
+
table.map_headers!({ 'two' => 'Two' }) { |header| header.upcase }
|
144
|
+
table.map_column!('two', false) { |val| val.to_i }
|
145
|
+
table.rows_hash.should == { 'ONE' => '1111', 'Two' => 22222 }
|
146
|
+
end
|
135
147
|
end
|
136
148
|
|
137
149
|
describe '#map_headers' do
|
@@ -378,6 +390,7 @@ module Cucumber
|
|
378
390
|
])
|
379
391
|
lambda do
|
380
392
|
t1.map_headers!(/uk/ => 'u')
|
393
|
+
t1.hashes
|
381
394
|
end.should raise_error(%{2 headers matched /uk/: ["Cuke", "Duke"]})
|
382
395
|
end
|
383
396
|
|
@@ -95,7 +95,7 @@ module Cucumber
|
|
95
95
|
|
96
96
|
context "--drb" do
|
97
97
|
before(:each) do
|
98
|
-
@configuration = mock('Configuration', :drb? => true).as_null_object
|
98
|
+
@configuration = mock('Configuration', :drb? => true, :dotcucumber => false).as_null_object
|
99
99
|
Configuration.stub!(:new).and_return(@configuration)
|
100
100
|
|
101
101
|
@args = ['features']
|
@@ -6,12 +6,12 @@ module Cucumber
|
|
6
6
|
describe RegexpArgumentMatcher do
|
7
7
|
it "should create 2 arguments" do
|
8
8
|
arguments = RegexpArgumentMatcher.arguments_from(/I (\w+) (\w+)/, "I like fish")
|
9
|
-
arguments.map{|argument| [argument.val, argument.
|
9
|
+
arguments.map{|argument| [argument.val, argument.offset]}.should == [["like", 2], ["fish", 7]]
|
10
10
|
end
|
11
11
|
|
12
12
|
it "should create 2 arguments when first group is optional" do
|
13
13
|
arguments = RegexpArgumentMatcher.arguments_from(/should( not)? be flashed '([^']*?)'$/, "I should be flashed 'Login failed.'")
|
14
|
-
arguments.map{|argument| [argument.val, argument.
|
14
|
+
arguments.map{|argument| [argument.val, argument.offset]}.should == [[nil, nil], ["Login failed.", 21]]
|
15
15
|
end
|
16
16
|
end
|
17
17
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cucumber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,22 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-11-
|
12
|
+
date: 2011-11-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: gherkin
|
16
|
-
requirement: &
|
16
|
+
requirement: &2160950420 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 2.6.
|
21
|
+
version: 2.6.7
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *2160950420
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: term-ansicolor
|
27
|
-
requirement: &
|
27
|
+
requirement: &2160949840 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 1.0.6
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *2160949840
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: builder
|
38
|
-
requirement: &
|
38
|
+
requirement: &2160949280 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ! '>='
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: 2.1.2
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *2160949280
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: diff-lcs
|
49
|
-
requirement: &
|
49
|
+
requirement: &2160948700 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ! '>='
|
@@ -54,10 +54,10 @@ dependencies:
|
|
54
54
|
version: 1.1.2
|
55
55
|
type: :runtime
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *2160948700
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: json
|
60
|
-
requirement: &
|
60
|
+
requirement: &2160948060 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - ! '>='
|
@@ -65,10 +65,10 @@ dependencies:
|
|
65
65
|
version: 1.4.6
|
66
66
|
type: :runtime
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *2160948060
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: aruba
|
71
|
-
requirement: &
|
71
|
+
requirement: &2160946960 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
74
74
|
- - ~>
|
@@ -76,10 +76,10 @@ dependencies:
|
|
76
76
|
version: 0.4.7
|
77
77
|
type: :development
|
78
78
|
prerelease: false
|
79
|
-
version_requirements: *
|
79
|
+
version_requirements: *2160946960
|
80
80
|
- !ruby/object:Gem::Dependency
|
81
81
|
name: rake
|
82
|
-
requirement: &
|
82
|
+
requirement: &2160946500 !ruby/object:Gem::Requirement
|
83
83
|
none: false
|
84
84
|
requirements:
|
85
85
|
- - ! '>='
|
@@ -87,10 +87,10 @@ dependencies:
|
|
87
87
|
version: 0.9.2
|
88
88
|
type: :development
|
89
89
|
prerelease: false
|
90
|
-
version_requirements: *
|
90
|
+
version_requirements: *2160946500
|
91
91
|
- !ruby/object:Gem::Dependency
|
92
92
|
name: rspec
|
93
|
-
requirement: &
|
93
|
+
requirement: &2160945860 !ruby/object:Gem::Requirement
|
94
94
|
none: false
|
95
95
|
requirements:
|
96
96
|
- - ! '>='
|
@@ -98,10 +98,10 @@ dependencies:
|
|
98
98
|
version: 2.7.0
|
99
99
|
type: :development
|
100
100
|
prerelease: false
|
101
|
-
version_requirements: *
|
101
|
+
version_requirements: *2160945860
|
102
102
|
- !ruby/object:Gem::Dependency
|
103
103
|
name: nokogiri
|
104
|
-
requirement: &
|
104
|
+
requirement: &2160983320 !ruby/object:Gem::Requirement
|
105
105
|
none: false
|
106
106
|
requirements:
|
107
107
|
- - ! '>='
|
@@ -109,10 +109,10 @@ dependencies:
|
|
109
109
|
version: 1.5.0
|
110
110
|
type: :development
|
111
111
|
prerelease: false
|
112
|
-
version_requirements: *
|
112
|
+
version_requirements: *2160983320
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: prawn
|
115
|
-
requirement: &
|
115
|
+
requirement: &2160982640 !ruby/object:Gem::Requirement
|
116
116
|
none: false
|
117
117
|
requirements:
|
118
118
|
- - ~>
|
@@ -120,10 +120,10 @@ dependencies:
|
|
120
120
|
version: 0.8.4
|
121
121
|
type: :development
|
122
122
|
prerelease: false
|
123
|
-
version_requirements: *
|
123
|
+
version_requirements: *2160982640
|
124
124
|
- !ruby/object:Gem::Dependency
|
125
125
|
name: prawn-layout
|
126
|
-
requirement: &
|
126
|
+
requirement: &2160981980 !ruby/object:Gem::Requirement
|
127
127
|
none: false
|
128
128
|
requirements:
|
129
129
|
- - ~>
|
@@ -131,10 +131,10 @@ dependencies:
|
|
131
131
|
version: 0.8.4
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
|
-
version_requirements: *
|
134
|
+
version_requirements: *2160981980
|
135
135
|
- !ruby/object:Gem::Dependency
|
136
136
|
name: syntax
|
137
|
-
requirement: &
|
137
|
+
requirement: &2160981520 !ruby/object:Gem::Requirement
|
138
138
|
none: false
|
139
139
|
requirements:
|
140
140
|
- - ! '>='
|
@@ -142,10 +142,10 @@ dependencies:
|
|
142
142
|
version: 1.0.0
|
143
143
|
type: :development
|
144
144
|
prerelease: false
|
145
|
-
version_requirements: *
|
145
|
+
version_requirements: *2160981520
|
146
146
|
- !ruby/object:Gem::Dependency
|
147
147
|
name: spork
|
148
|
-
requirement: &
|
148
|
+
requirement: &2160981060 !ruby/object:Gem::Requirement
|
149
149
|
none: false
|
150
150
|
requirements:
|
151
151
|
- - ! '>='
|
@@ -153,10 +153,10 @@ dependencies:
|
|
153
153
|
version: 0.9.0.rc9
|
154
154
|
type: :development
|
155
155
|
prerelease: false
|
156
|
-
version_requirements: *
|
156
|
+
version_requirements: *2160981060
|
157
157
|
- !ruby/object:Gem::Dependency
|
158
158
|
name: simplecov
|
159
|
-
requirement: &
|
159
|
+
requirement: &2160980600 !ruby/object:Gem::Requirement
|
160
160
|
none: false
|
161
161
|
requirements:
|
162
162
|
- - ! '>='
|
@@ -164,10 +164,10 @@ dependencies:
|
|
164
164
|
version: 0.5.4
|
165
165
|
type: :development
|
166
166
|
prerelease: false
|
167
|
-
version_requirements: *
|
167
|
+
version_requirements: *2160980600
|
168
168
|
- !ruby/object:Gem::Dependency
|
169
169
|
name: yard
|
170
|
-
requirement: &
|
170
|
+
requirement: &2160980120 !ruby/object:Gem::Requirement
|
171
171
|
none: false
|
172
172
|
requirements:
|
173
173
|
- - ~>
|
@@ -175,10 +175,10 @@ dependencies:
|
|
175
175
|
version: 0.7.3
|
176
176
|
type: :development
|
177
177
|
prerelease: false
|
178
|
-
version_requirements: *
|
178
|
+
version_requirements: *2160980120
|
179
179
|
- !ruby/object:Gem::Dependency
|
180
180
|
name: rdiscount
|
181
|
-
requirement: &
|
181
|
+
requirement: &2160979660 !ruby/object:Gem::Requirement
|
182
182
|
none: false
|
183
183
|
requirements:
|
184
184
|
- - ~>
|
@@ -186,10 +186,10 @@ dependencies:
|
|
186
186
|
version: 1.6.8
|
187
187
|
type: :development
|
188
188
|
prerelease: false
|
189
|
-
version_requirements: *
|
189
|
+
version_requirements: *2160979660
|
190
190
|
- !ruby/object:Gem::Dependency
|
191
191
|
name: bcat
|
192
|
-
requirement: &
|
192
|
+
requirement: &2160979140 !ruby/object:Gem::Requirement
|
193
193
|
none: false
|
194
194
|
requirements:
|
195
195
|
- - ~>
|
@@ -197,10 +197,10 @@ dependencies:
|
|
197
197
|
version: 0.6.1
|
198
198
|
type: :development
|
199
199
|
prerelease: false
|
200
|
-
version_requirements: *
|
200
|
+
version_requirements: *2160979140
|
201
201
|
- !ruby/object:Gem::Dependency
|
202
202
|
name: ramaze
|
203
|
-
requirement: &
|
203
|
+
requirement: &2160978660 !ruby/object:Gem::Requirement
|
204
204
|
none: false
|
205
205
|
requirements:
|
206
206
|
- - ! '>='
|
@@ -208,10 +208,10 @@ dependencies:
|
|
208
208
|
version: '0'
|
209
209
|
type: :development
|
210
210
|
prerelease: false
|
211
|
-
version_requirements: *
|
211
|
+
version_requirements: *2160978660
|
212
212
|
- !ruby/object:Gem::Dependency
|
213
213
|
name: rack-test
|
214
|
-
requirement: &
|
214
|
+
requirement: &2160978020 !ruby/object:Gem::Requirement
|
215
215
|
none: false
|
216
216
|
requirements:
|
217
217
|
- - ! '>='
|
@@ -219,10 +219,10 @@ dependencies:
|
|
219
219
|
version: 0.6.1
|
220
220
|
type: :development
|
221
221
|
prerelease: false
|
222
|
-
version_requirements: *
|
222
|
+
version_requirements: *2160978020
|
223
223
|
- !ruby/object:Gem::Dependency
|
224
224
|
name: webrat
|
225
|
-
requirement: &
|
225
|
+
requirement: &2160977260 !ruby/object:Gem::Requirement
|
226
226
|
none: false
|
227
227
|
requirements:
|
228
228
|
- - ! '>='
|
@@ -230,10 +230,10 @@ dependencies:
|
|
230
230
|
version: 0.7.3
|
231
231
|
type: :development
|
232
232
|
prerelease: false
|
233
|
-
version_requirements: *
|
233
|
+
version_requirements: *2160977260
|
234
234
|
- !ruby/object:Gem::Dependency
|
235
235
|
name: sinatra
|
236
|
-
requirement: &
|
236
|
+
requirement: &2160991240 !ruby/object:Gem::Requirement
|
237
237
|
none: false
|
238
238
|
requirements:
|
239
239
|
- - ! '>='
|
@@ -241,10 +241,10 @@ dependencies:
|
|
241
241
|
version: 1.3.1
|
242
242
|
type: :development
|
243
243
|
prerelease: false
|
244
|
-
version_requirements: *
|
244
|
+
version_requirements: *2160991240
|
245
245
|
- !ruby/object:Gem::Dependency
|
246
246
|
name: capybara
|
247
|
-
requirement: &
|
247
|
+
requirement: &2160990660 !ruby/object:Gem::Requirement
|
248
248
|
none: false
|
249
249
|
requirements:
|
250
250
|
- - ! '>='
|
@@ -252,7 +252,7 @@ dependencies:
|
|
252
252
|
version: 1.1.1
|
253
253
|
type: :development
|
254
254
|
prerelease: false
|
255
|
-
version_requirements: *
|
255
|
+
version_requirements: *2160990660
|
256
256
|
description: Behaviour Driven Development with elegance and joy
|
257
257
|
email: cukes@googlegroups.com
|
258
258
|
executables:
|
@@ -261,7 +261,6 @@ extensions: []
|
|
261
261
|
extra_rdoc_files: []
|
262
262
|
files:
|
263
263
|
- .gitattributes
|
264
|
-
- .gitignore
|
265
264
|
- .gitmodules
|
266
265
|
- .rspec
|
267
266
|
- .rvmrc
|
@@ -296,7 +295,6 @@ files:
|
|
296
295
|
- examples/i18n/da/features/sammenlaegning.feature
|
297
296
|
- examples/i18n/da/features/step_definitons/lommeregner_steps.rb
|
298
297
|
- examples/i18n/da/lib/lommeregner.rb
|
299
|
-
- examples/i18n/de/.gitignore
|
300
298
|
- examples/i18n/de/Rakefile
|
301
299
|
- examples/i18n/de/features/addition.feature
|
302
300
|
- examples/i18n/de/features/division.feature
|
@@ -308,13 +306,11 @@ files:
|
|
308
306
|
- examples/i18n/en-lol/features/support/env.rb
|
309
307
|
- examples/i18n/en-lol/lib/basket.rb
|
310
308
|
- examples/i18n/en-lol/lib/belly.rb
|
311
|
-
- examples/i18n/en/.gitignore
|
312
309
|
- examples/i18n/en/Rakefile
|
313
310
|
- examples/i18n/en/features/addition.feature
|
314
311
|
- examples/i18n/en/features/division.feature
|
315
312
|
- examples/i18n/en/features/step_definitons/calculator_steps.rb
|
316
313
|
- examples/i18n/en/lib/calculator.rb
|
317
|
-
- examples/i18n/eo/.gitignore
|
318
314
|
- examples/i18n/eo/Rakefile
|
319
315
|
- examples/i18n/eo/features/adicio.feature
|
320
316
|
- examples/i18n/eo/features/divido.feature
|
@@ -329,7 +325,6 @@ files:
|
|
329
325
|
- examples/i18n/et/features/liitmine.feature
|
330
326
|
- examples/i18n/et/features/step_definitions/kalkulaator_steps.rb
|
331
327
|
- examples/i18n/et/lib/kalkulaator.rb
|
332
|
-
- examples/i18n/fi/.gitignore
|
333
328
|
- examples/i18n/fi/Rakefile
|
334
329
|
- examples/i18n/fi/features/jakolasku.feature
|
335
330
|
- examples/i18n/fi/features/step_definitons/laskin_steps.rb
|
@@ -346,13 +341,11 @@ files:
|
|
346
341
|
- examples/i18n/he/features/division.feature
|
347
342
|
- examples/i18n/he/features/step_definitons/calculator_steps.rb
|
348
343
|
- examples/i18n/he/lib/calculator.rb
|
349
|
-
- examples/i18n/hu/.gitignore
|
350
344
|
- examples/i18n/hu/Rakefile
|
351
345
|
- examples/i18n/hu/features/osszeadas.feature
|
352
346
|
- examples/i18n/hu/features/osztas.feature
|
353
347
|
- examples/i18n/hu/features/step_definitons/calculator_steps.rb
|
354
348
|
- examples/i18n/hu/lib/calculator.rb
|
355
|
-
- examples/i18n/id/.gitignore
|
356
349
|
- examples/i18n/id/Rakefile
|
357
350
|
- examples/i18n/id/features/addition.feature
|
358
351
|
- examples/i18n/id/features/division.feature
|
@@ -362,20 +355,17 @@ files:
|
|
362
355
|
- examples/i18n/it/features/somma.feature
|
363
356
|
- examples/i18n/it/features/step_definitons/calcolatrice_steps.rb
|
364
357
|
- examples/i18n/it/lib/calcolatrice.rb
|
365
|
-
- examples/i18n/ja/.gitignore
|
366
358
|
- examples/i18n/ja/Rakefile
|
367
359
|
- examples/i18n/ja/features/addition.feature
|
368
360
|
- examples/i18n/ja/features/division.feature
|
369
361
|
- examples/i18n/ja/features/step_definitons/calculator_steps.rb
|
370
362
|
- examples/i18n/ja/features/support/env.rb
|
371
363
|
- examples/i18n/ja/lib/calculator.rb
|
372
|
-
- examples/i18n/ko/.gitignore
|
373
364
|
- examples/i18n/ko/Rakefile
|
374
365
|
- examples/i18n/ko/features/addition.feature
|
375
366
|
- examples/i18n/ko/features/division.feature
|
376
367
|
- examples/i18n/ko/features/step_definitons/calculator_steps.rb
|
377
368
|
- examples/i18n/ko/lib/calculator.rb
|
378
|
-
- examples/i18n/lt/.gitignore
|
379
369
|
- examples/i18n/lt/Rakefile
|
380
370
|
- examples/i18n/lt/features/addition.feature
|
381
371
|
- examples/i18n/lt/features/division.feature
|
@@ -391,7 +381,6 @@ files:
|
|
391
381
|
- examples/i18n/no/features/summering.feature
|
392
382
|
- examples/i18n/no/features/support/env.rb
|
393
383
|
- examples/i18n/no/lib/kalkulator.rb
|
394
|
-
- examples/i18n/pl/.gitignore
|
395
384
|
- examples/i18n/pl/Rakefile
|
396
385
|
- examples/i18n/pl/features/addition.feature
|
397
386
|
- examples/i18n/pl/features/division.feature
|
@@ -415,7 +404,6 @@ files:
|
|
415
404
|
- examples/i18n/ru/features/support/env.rb
|
416
405
|
- examples/i18n/ru/features/support/world.rb
|
417
406
|
- examples/i18n/ru/lib/calculator.rb
|
418
|
-
- examples/i18n/sk/.gitignore
|
419
407
|
- examples/i18n/sk/Rakefile
|
420
408
|
- examples/i18n/sk/features/addition.feature
|
421
409
|
- examples/i18n/sk/features/division.feature
|
@@ -434,7 +422,6 @@ files:
|
|
434
422
|
- examples/i18n/sv/features/step_definitons/kalkulator_steps.rb
|
435
423
|
- examples/i18n/sv/features/summering.feature
|
436
424
|
- examples/i18n/sv/lib/kalkulator.rb
|
437
|
-
- examples/i18n/tr/.gitignore
|
438
425
|
- examples/i18n/tr/Rakefile
|
439
426
|
- examples/i18n/tr/features/bolme.feature
|
440
427
|
- examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb
|
@@ -460,7 +447,6 @@ files:
|
|
460
447
|
- examples/i18n/zh-CN/features/addition.feature
|
461
448
|
- examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb
|
462
449
|
- examples/i18n/zh-CN/lib/calculator.rb
|
463
|
-
- examples/i18n/zh-TW/.gitignore
|
464
450
|
- examples/i18n/zh-TW/Rakefile
|
465
451
|
- examples/i18n/zh-TW/features/addition.feature
|
466
452
|
- examples/i18n/zh-TW/features/division.feature
|
@@ -470,7 +456,6 @@ files:
|
|
470
456
|
- examples/python/Rakefile
|
471
457
|
- examples/python/features/fibonacci.feature
|
472
458
|
- examples/python/features/step_definitions/fib_steps.py
|
473
|
-
- examples/python/lib/.gitignore
|
474
459
|
- examples/python/lib/fib.py
|
475
460
|
- examples/ramaze/README.textile
|
476
461
|
- examples/ramaze/Rakefile
|
@@ -489,7 +474,6 @@ files:
|
|
489
474
|
- examples/ruby2python/features/fibonacci.feature
|
490
475
|
- examples/ruby2python/features/step_definitions/fib_steps.rb
|
491
476
|
- examples/ruby2python/features/support/env.rb
|
492
|
-
- examples/ruby2python/lib/.gitignore
|
493
477
|
- examples/ruby2python/lib/fib.py
|
494
478
|
- examples/sinatra/README.textile
|
495
479
|
- examples/sinatra/Rakefile
|
@@ -513,7 +497,6 @@ files:
|
|
513
497
|
- examples/v8/features/step_definitions/fib_steps.js
|
514
498
|
- examples/v8/features/support/env.js
|
515
499
|
- examples/v8/lib/fibonacci.js
|
516
|
-
- examples/watir/.gitignore
|
517
500
|
- examples/watir/README.textile
|
518
501
|
- examples/watir/Rakefile
|
519
502
|
- examples/watir/cucumber.yml
|
@@ -521,6 +504,7 @@ files:
|
|
521
504
|
- examples/watir/features/step_definitions/search_steps.rb
|
522
505
|
- examples/watir/features/support/env.rb
|
523
506
|
- examples/watir/features/support/screenshots.rb
|
507
|
+
- features/.cucumber/stepdefs.json
|
524
508
|
- features/background.feature
|
525
509
|
- features/bootstrap.feature
|
526
510
|
- features/custom_formatter.feature
|
@@ -529,6 +513,7 @@ files:
|
|
529
513
|
- features/hooks.feature
|
530
514
|
- features/iso-8859-1.feature
|
531
515
|
- features/issue_117.feature
|
516
|
+
- features/issue_57.feature
|
532
517
|
- features/json_formatter.feature
|
533
518
|
- features/nested_steps.feature
|
534
519
|
- features/stats_formatters.feature
|
@@ -550,7 +535,6 @@ files:
|
|
550
535
|
- fixtures/junit/features/scenario_outline.feature
|
551
536
|
- fixtures/junit/features/some_subdirectory/one_passing_one_failing.feature
|
552
537
|
- fixtures/junit/features/step_definitions/steps.rb
|
553
|
-
- fixtures/self_test/.gitignore
|
554
538
|
- fixtures/self_test/README.textile
|
555
539
|
- fixtures/self_test/Rakefile
|
556
540
|
- fixtures/self_test/features/call_undefined_step_from_step_def.feature
|
@@ -772,7 +756,6 @@ files:
|
|
772
756
|
- lib/cucumber/runtime/results.rb
|
773
757
|
- lib/cucumber/runtime/support_code.rb
|
774
758
|
- lib/cucumber/runtime/user_interface.rb
|
775
|
-
- lib/cucumber/step_argument.rb
|
776
759
|
- lib/cucumber/step_definition_light.rb
|
777
760
|
- lib/cucumber/step_definitions.rb
|
778
761
|
- lib/cucumber/step_match.rb
|
@@ -802,6 +785,7 @@ files:
|
|
802
785
|
- spec/cucumber/cli/options_spec.rb
|
803
786
|
- spec/cucumber/cli/profile_loader_spec.rb
|
804
787
|
- spec/cucumber/configuration_spec.rb
|
788
|
+
- spec/cucumber/constantize_spec.rb
|
805
789
|
- spec/cucumber/core_ext/proc_spec.rb
|
806
790
|
- spec/cucumber/formatter/ansicolor_spec.rb
|
807
791
|
- spec/cucumber/formatter/duration_spec.rb
|
@@ -834,7 +818,7 @@ post_install_message: ! '
|
|
834
818
|
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
835
819
|
|
836
820
|
|
837
|
-
Thank you for installing cucumber-1.1.
|
821
|
+
Thank you for installing cucumber-1.1.3.
|
838
822
|
|
839
823
|
Please be sure to read http://wiki.github.com/cucumber/cucumber/upgrading
|
840
824
|
|
@@ -866,7 +850,7 @@ rubyforge_project:
|
|
866
850
|
rubygems_version: 1.8.10
|
867
851
|
signing_key:
|
868
852
|
specification_version: 3
|
869
|
-
summary: cucumber-1.1.
|
853
|
+
summary: cucumber-1.1.3
|
870
854
|
test_files:
|
871
855
|
- features/background.feature
|
872
856
|
- features/bootstrap.feature
|
@@ -876,6 +860,7 @@ test_files:
|
|
876
860
|
- features/hooks.feature
|
877
861
|
- features/iso-8859-1.feature
|
878
862
|
- features/issue_117.feature
|
863
|
+
- features/issue_57.feature
|
879
864
|
- features/json_formatter.feature
|
880
865
|
- features/nested_steps.feature
|
881
866
|
- features/stats_formatters.feature
|
@@ -903,6 +888,7 @@ test_files:
|
|
903
888
|
- spec/cucumber/cli/options_spec.rb
|
904
889
|
- spec/cucumber/cli/profile_loader_spec.rb
|
905
890
|
- spec/cucumber/configuration_spec.rb
|
891
|
+
- spec/cucumber/constantize_spec.rb
|
906
892
|
- spec/cucumber/core_ext/proc_spec.rb
|
907
893
|
- spec/cucumber/formatter/ansicolor_spec.rb
|
908
894
|
- spec/cucumber/formatter/duration_spec.rb
|