cucumber 0.8.5 → 0.8.6
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/.rspec +1 -1
- data/LICENSE +1 -1
- data/Rakefile +5 -51
- data/bin/cucumber +7 -1
- data/cucumber.gemspec +463 -679
- data/examples/i18n/ar/features/step_definitons/calculator_steps.rb +1 -1
- data/examples/i18n/he/features/step_definitons/calculator_steps.rb +1 -1
- data/examples/i18n/ro/features/step_definitons/calculator_steps.rb +4 -7
- data/examples/i18n/ru/features/division.feature +2 -2
- data/examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb +3 -3
- data/examples/sinatra/features/support/env.rb +2 -5
- data/examples/v8/features/fibonacci.feature +1 -1
- data/examples/watir/features/step_definitions/search_steps.rb +1 -1
- data/features/background.feature +284 -95
- data/features/custom_formatter.feature +3 -73
- data/features/json_formatter.feature +160 -245
- data/features/step_definitions/cucumber_steps.rb +7 -153
- data/features/support/env.rb +18 -140
- data/fixtures/junit/features/pending.feature +3 -1
- data/fixtures/self_test/features/support/env.rb +8 -0
- data/fixtures/tickets/features.html +1 -1
- data/gem_tasks/examples.rake +1 -1
- data/lib/cucumber.rb +12 -0
- data/lib/cucumber/ast.rb +1 -1
- data/lib/cucumber/ast/background.rb +21 -5
- data/lib/cucumber/ast/examples.rb +12 -4
- data/lib/cucumber/ast/feature.rb +13 -5
- data/lib/cucumber/ast/feature_element.rb +9 -4
- data/lib/cucumber/ast/outline_table.rb +4 -4
- data/lib/cucumber/ast/scenario.rb +7 -5
- data/lib/cucumber/ast/scenario_outline.rb +23 -15
- data/lib/cucumber/ast/step.rb +5 -0
- data/lib/cucumber/ast/step_invocation.rb +21 -15
- data/lib/cucumber/ast/table.rb +14 -8
- data/lib/cucumber/ast/tree_walker.rb +10 -48
- data/lib/cucumber/cli/configuration.rb +33 -8
- data/lib/cucumber/cli/main.rb +20 -35
- data/lib/cucumber/cli/options.rb +8 -7
- data/lib/cucumber/cli/profile_loader.rb +2 -0
- data/lib/cucumber/core_ext/proc.rb +2 -1
- data/lib/cucumber/feature_file.rb +47 -15
- data/lib/cucumber/formatter/ansicolor.rb +3 -5
- data/lib/cucumber/formatter/console.rb +27 -23
- data/lib/cucumber/formatter/cucumber.css +34 -17
- data/lib/cucumber/formatter/cucumber.sass +173 -182
- data/lib/cucumber/formatter/html.rb +46 -11
- data/lib/cucumber/formatter/io.rb +2 -4
- data/lib/cucumber/formatter/json.rb +15 -152
- data/lib/cucumber/formatter/json_pretty.rb +5 -6
- data/lib/cucumber/formatter/junit.rb +28 -22
- data/lib/cucumber/formatter/pdf.rb +6 -6
- data/lib/cucumber/formatter/pretty.rb +5 -5
- data/lib/cucumber/formatter/rerun.rb +22 -11
- data/lib/cucumber/formatter/unicode.rb +41 -20
- data/lib/cucumber/js_support/js_dsl.js +4 -4
- data/lib/cucumber/js_support/js_language.rb +9 -5
- data/lib/cucumber/js_support/js_snippets.rb +2 -2
- data/lib/cucumber/language_support.rb +2 -2
- data/lib/cucumber/parser/gherkin_builder.rb +35 -30
- data/lib/cucumber/platform.rb +8 -8
- data/lib/cucumber/py_support/py_language.rb +2 -2
- data/lib/cucumber/rake/task.rb +80 -31
- data/lib/cucumber/rb_support/rb_dsl.rb +1 -0
- data/lib/cucumber/rb_support/rb_language.rb +10 -8
- data/lib/cucumber/rb_support/rb_step_definition.rb +8 -0
- data/lib/cucumber/rb_support/rb_transform.rb +17 -0
- data/lib/cucumber/rb_support/rb_world.rb +26 -18
- data/lib/cucumber/rspec/doubles.rb +3 -3
- data/lib/cucumber/step_match.rb +6 -2
- data/lib/cucumber/step_mother.rb +6 -427
- data/lib/cucumber/wire_support/configuration.rb +4 -1
- data/lib/cucumber/wire_support/wire_language.rb +3 -10
- data/spec/cucumber/ast/background_spec.rb +68 -6
- data/spec/cucumber/ast/feature_factory.rb +5 -4
- data/spec/cucumber/ast/feature_spec.rb +4 -4
- data/spec/cucumber/ast/outline_table_spec.rb +1 -1
- data/spec/cucumber/ast/scenario_outline_spec.rb +15 -11
- data/spec/cucumber/ast/scenario_spec.rb +4 -4
- data/spec/cucumber/ast/step_spec.rb +3 -3
- data/spec/cucumber/ast/table_spec.rb +38 -2
- data/spec/cucumber/ast/tree_walker_spec.rb +2 -2
- data/spec/cucumber/broadcaster_spec.rb +1 -1
- data/spec/cucumber/cli/configuration_spec.rb +32 -6
- data/spec/cucumber/cli/drb_client_spec.rb +2 -3
- data/spec/cucumber/cli/main_spec.rb +43 -43
- data/spec/cucumber/cli/options_spec.rb +28 -1
- data/spec/cucumber/cli/profile_loader_spec.rb +1 -1
- data/spec/cucumber/core_ext/proc_spec.rb +1 -1
- data/spec/cucumber/formatter/ansicolor_spec.rb +1 -1
- data/spec/cucumber/formatter/duration_spec.rb +1 -1
- data/spec/cucumber/formatter/html_spec.rb +3 -5
- data/spec/cucumber/formatter/junit_spec.rb +16 -2
- data/spec/cucumber/formatter/progress_spec.rb +1 -1
- data/spec/cucumber/formatter/spec_helper.rb +11 -12
- data/spec/cucumber/rb_support/rb_language_spec.rb +241 -28
- data/spec/cucumber/rb_support/rb_step_definition_spec.rb +33 -28
- data/spec/cucumber/rb_support/regexp_argument_matcher_spec.rb +1 -1
- data/spec/cucumber/step_match_spec.rb +11 -9
- data/spec/cucumber/wire_support/configuration_spec.rb +1 -1
- data/spec/cucumber/wire_support/connection_spec.rb +1 -1
- data/spec/cucumber/wire_support/wire_exception_spec.rb +1 -1
- data/spec/cucumber/wire_support/wire_language_spec.rb +1 -1
- data/spec/cucumber/wire_support/wire_packet_spec.rb +1 -1
- data/spec/cucumber/wire_support/wire_step_definition_spec.rb +1 -1
- data/spec/cucumber/world/pending_spec.rb +2 -2
- data/spec/spec_helper.rb +13 -20
- metadata +11 -222
- data/.gitignore +0 -20
- data/Caliper.yml +0 -4
- data/History.txt +0 -1552
- data/README.rdoc +0 -26
- data/VERSION.yml +0 -5
- data/examples/i18n/ro/features/suma.feature +0 -11
- data/features/announce.feature +0 -164
- data/features/around_hooks.feature +0 -232
- data/features/bug_371.feature +0 -32
- data/features/bug_464.feature +0 -16
- data/features/bug_475.feature +0 -42
- data/features/bug_585_tab_indentation.feature +0 -22
- data/features/bug_600.feature +0 -67
- data/features/call_steps_from_stepdefs.feature +0 -154
- data/features/cucumber_cli.feature +0 -591
- data/features/cucumber_cli_outlines.feature +0 -117
- data/features/default_snippets.feature +0 -42
- data/features/diffing.feature +0 -25
- data/features/drb_server_integration.feature +0 -174
- data/features/exception_in_after_block.feature +0 -127
- data/features/exception_in_after_step_block.feature +0 -104
- data/features/exception_in_before_block.feature +0 -98
- data/features/exclude_files.feature +0 -20
- data/features/expand.feature +0 -60
- data/features/html_formatter.feature +0 -8
- data/features/html_formatter/a.html +0 -582
- data/features/junit_formatter.feature +0 -88
- data/features/language_from_header.feature +0 -30
- data/features/language_help.feature +0 -78
- data/features/listener_debugger_formatter.feature +0 -42
- data/features/multiline_names.feature +0 -44
- data/features/negative_tagged_hooks.feature +0 -60
- data/features/post_configuration_hook.feature +0 -37
- data/features/profiles.feature +0 -126
- data/features/rake_task.feature +0 -152
- data/features/report_called_undefined_steps.feature +0 -34
- data/features/rerun_formatter.feature +0 -45
- data/features/simplest.feature +0 -11
- data/features/snippet.feature +0 -23
- data/features/snippets_when_using_star_keyword.feature +0 -36
- data/features/step_definitions/extra_steps.rb +0 -2
- data/features/step_definitions/simplest_steps.rb +0 -3
- data/features/step_definitions/wire_steps.rb +0 -32
- data/features/support/env.rb.simplest +0 -7
- data/features/support/fake_wire_server.rb +0 -77
- data/features/table_diffing.feature +0 -45
- data/features/table_mapping.feature +0 -34
- data/features/tag_logic.feature +0 -258
- data/features/transform.feature +0 -245
- data/features/unicode_table.feature +0 -35
- data/features/usage_and_stepdefs_formatter.feature +0 -169
- data/features/wire_protocol.feature +0 -332
- data/features/wire_protocol_table_diffing.feature +0 -119
- data/features/wire_protocol_tags.feature +0 -87
- data/features/wire_protocol_timeouts.feature +0 -63
- data/features/work_in_progress.feature +0 -156
- data/fixtures/json/features/pystring.feature +0 -8
- data/fixtures/self_test/features/background/background_tagged_before_on_outline.feature +0 -12
- data/fixtures/self_test/features/background/background_with_name.feature +0 -7
- data/fixtures/self_test/features/background/failing_background.feature +0 -12
- data/fixtures/self_test/features/background/failing_background_after_success.feature +0 -11
- data/fixtures/self_test/features/background/multiline_args_background.feature +0 -32
- data/fixtures/self_test/features/background/passing_background.feature +0 -10
- data/fixtures/self_test/features/background/pending_background.feature +0 -10
- data/fixtures/self_test/features/background/scenario_outline_failing_background.feature +0 -16
- data/fixtures/self_test/features/background/scenario_outline_passing_background.feature +0 -16
- data/gem_tasks/features.rake +0 -14
- data/gem_tasks/sdoc.rake +0 -12
- data/lib/cucumber/ast/py_string.rb +0 -80
- data/lib/cucumber/formatter/color_io.rb +0 -23
- data/lib/cucumber/formatter/tag_cloud.rb +0 -35
- data/spec/cucumber/ast/py_string_spec.rb +0 -40
- data/spec/cucumber/formatter/color_io_spec.rb +0 -29
- data/spec/cucumber/step_mother_spec.rb +0 -302
data/.rspec
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
--color
|
|
1
|
+
--color --backtrace
|
data/LICENSE
CHANGED
data/Rakefile
CHANGED
|
@@ -1,58 +1,12 @@
|
|
|
1
1
|
# encoding: utf-8
|
|
2
2
|
require 'rubygems'
|
|
3
|
-
require '
|
|
4
|
-
|
|
5
|
-
$:.unshift(File.dirname(__FILE__) + '/lib')
|
|
6
|
-
require 'cucumber/formatter/ansicolor'
|
|
7
|
-
require 'cucumber/platform'
|
|
8
|
-
|
|
9
|
-
begin
|
|
10
|
-
require 'jeweler'
|
|
11
|
-
Jeweler::Tasks.new do |gem|
|
|
12
|
-
gem.name = "cucumber"
|
|
13
|
-
gem.summary = %Q{Behaviour Driven Development with elegance and joy}
|
|
14
|
-
gem.description = %Q{Behaviour Driven Development with elegance and joy}
|
|
15
|
-
gem.email = "cukes@googlegroups.com"
|
|
16
|
-
gem.homepage = "http://cukes.info"
|
|
17
|
-
gem.authors = ["Aslak Hellesøy"]
|
|
18
|
-
|
|
19
|
-
gem.add_dependency 'gherkin', '~> 2.1.4'
|
|
20
|
-
gem.add_dependency 'term-ansicolor', '~> 1.0.4'
|
|
21
|
-
gem.add_dependency 'builder', '~> 2.1.2'
|
|
22
|
-
gem.add_dependency 'diff-lcs', '~> 1.1.2'
|
|
23
|
-
gem.add_dependency 'json_pure', '~> 1.4.3'
|
|
24
|
-
|
|
25
|
-
gem.add_development_dependency 'nokogiri', '~> 1.4.2'
|
|
26
|
-
gem.add_development_dependency 'prawn', '= 0.8.4'
|
|
27
|
-
gem.add_development_dependency 'prawn-layout', '= 0.8.4'
|
|
28
|
-
gem.add_development_dependency 'rspec', '~> 2.0.0.beta.15'
|
|
29
|
-
gem.add_development_dependency 'syntax', '~> 1.0.0'
|
|
30
|
-
gem.add_development_dependency 'spork', '~> 0.8.4' unless Cucumber::JRUBY || Cucumber::WINDOWS
|
|
31
|
-
|
|
32
|
-
extend Cucumber::Formatter::ANSIColor
|
|
33
|
-
gem.post_install_message = <<-POST_INSTALL_MESSAGE
|
|
34
|
-
|
|
35
|
-
#{cukes(15)}
|
|
36
|
-
|
|
37
|
-
#{cukes(1)} U P G R A D I N G #{cukes(1)}
|
|
38
|
-
|
|
39
|
-
Thank you for installing cucumber-#{Cucumber::VERSION}.
|
|
40
|
-
Please be sure to read http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
|
41
|
-
for important information about this release. Happy cuking!
|
|
42
|
-
|
|
43
|
-
#{cukes(15)}
|
|
44
|
-
|
|
45
|
-
POST_INSTALL_MESSAGE
|
|
46
|
-
end
|
|
47
|
-
|
|
48
|
-
Jeweler::GemcutterTasks.new
|
|
49
|
-
rescue LoadError
|
|
50
|
-
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
|
51
|
-
end
|
|
3
|
+
require 'bundler'
|
|
4
|
+
Bundler::GemHelper.install_tasks
|
|
52
5
|
|
|
6
|
+
$:.unshift(File.dirname(__FILE__) + '/lib')
|
|
53
7
|
Dir['gem_tasks/**/*.rake'].each { |rake| load rake }
|
|
54
8
|
|
|
55
|
-
task :default => [:
|
|
9
|
+
task :default => [:spec, :cucumber]
|
|
56
10
|
|
|
57
11
|
require 'rake/clean'
|
|
58
|
-
CLEAN.include %w(**/*.{log,pyc})
|
|
12
|
+
CLEAN.include %w(**/*.{log,pyc,rbc,tgz} doc)
|
data/bin/cucumber
CHANGED
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
$:.unshift(File.dirname(__FILE__) + '/../lib') unless $:.include?(File.dirname(__FILE__) + '/../lib')
|
|
3
3
|
|
|
4
|
+
if(ENV['SIMPLECOV'] && RUBY_VERSION =~ /1\.9/)
|
|
5
|
+
require 'simplecov'
|
|
6
|
+
SimpleCov.root(File.expand_path(File.dirname(__FILE__) + '/..'))
|
|
7
|
+
SimpleCov.start
|
|
8
|
+
end
|
|
9
|
+
|
|
4
10
|
require 'cucumber/rspec/disable_option_parser'
|
|
5
11
|
require 'cucumber/cli/main'
|
|
6
12
|
begin
|
|
7
13
|
# The dup is to keep ARGV intact, so that tools like ruby-debug can respawn.
|
|
8
14
|
failure = Cucumber::Cli::Main.execute(ARGV.dup)
|
|
9
|
-
Kernel.exit(
|
|
15
|
+
Kernel.exit(1) if failure
|
|
10
16
|
rescue SystemExit => e
|
|
11
17
|
Kernel.exit(e.status)
|
|
12
18
|
rescue Exception => e
|
data/cucumber.gemspec
CHANGED
|
@@ -1,556 +1,481 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{cucumber}
|
|
8
|
-
s.version = "0.8.
|
|
8
|
+
s.version = "0.8.6"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Aslak Helles\303\270y"]
|
|
12
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2011-06-19}
|
|
13
13
|
s.default_executable = %q{cucumber}
|
|
14
14
|
s.description = %q{Behaviour Driven Development with elegance and joy}
|
|
15
15
|
s.email = %q{cukes@googlegroups.com}
|
|
16
16
|
s.executables = ["cucumber"]
|
|
17
17
|
s.extra_rdoc_files = [
|
|
18
|
-
"LICENSE"
|
|
19
|
-
"README.rdoc"
|
|
18
|
+
"LICENSE"
|
|
20
19
|
]
|
|
21
20
|
s.files = [
|
|
22
21
|
".gitattributes",
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
"lib/cucumber/formatter/unicode.rb",
|
|
481
|
-
"lib/cucumber/formatter/usage.rb",
|
|
482
|
-
"lib/cucumber/js_support/js_dsl.js",
|
|
483
|
-
"lib/cucumber/js_support/js_language.rb",
|
|
484
|
-
"lib/cucumber/js_support/js_snippets.rb",
|
|
485
|
-
"lib/cucumber/language_support.rb",
|
|
486
|
-
"lib/cucumber/language_support/language_methods.rb",
|
|
487
|
-
"lib/cucumber/parser.rb",
|
|
488
|
-
"lib/cucumber/parser/gherkin_builder.rb",
|
|
489
|
-
"lib/cucumber/platform.rb",
|
|
490
|
-
"lib/cucumber/py_support/py_dsl.py",
|
|
491
|
-
"lib/cucumber/py_support/py_language.py",
|
|
492
|
-
"lib/cucumber/py_support/py_language.rb",
|
|
493
|
-
"lib/cucumber/rake/task.rb",
|
|
494
|
-
"lib/cucumber/rb_support/rb_dsl.rb",
|
|
495
|
-
"lib/cucumber/rb_support/rb_hook.rb",
|
|
496
|
-
"lib/cucumber/rb_support/rb_language.rb",
|
|
497
|
-
"lib/cucumber/rb_support/rb_step_definition.rb",
|
|
498
|
-
"lib/cucumber/rb_support/rb_transform.rb",
|
|
499
|
-
"lib/cucumber/rb_support/rb_world.rb",
|
|
500
|
-
"lib/cucumber/rb_support/regexp_argument_matcher.rb",
|
|
501
|
-
"lib/cucumber/rspec/disable_option_parser.rb",
|
|
502
|
-
"lib/cucumber/rspec/doubles.rb",
|
|
503
|
-
"lib/cucumber/step_argument.rb",
|
|
504
|
-
"lib/cucumber/step_definition_light.rb",
|
|
505
|
-
"lib/cucumber/step_match.rb",
|
|
506
|
-
"lib/cucumber/step_mother.rb",
|
|
507
|
-
"lib/cucumber/wire_support/configuration.rb",
|
|
508
|
-
"lib/cucumber/wire_support/connection.rb",
|
|
509
|
-
"lib/cucumber/wire_support/request_handler.rb",
|
|
510
|
-
"lib/cucumber/wire_support/wire_exception.rb",
|
|
511
|
-
"lib/cucumber/wire_support/wire_language.rb",
|
|
512
|
-
"lib/cucumber/wire_support/wire_packet.rb",
|
|
513
|
-
"lib/cucumber/wire_support/wire_protocol.rb",
|
|
514
|
-
"lib/cucumber/wire_support/wire_protocol/requests.rb",
|
|
515
|
-
"lib/cucumber/wire_support/wire_step_definition.rb",
|
|
516
|
-
"spec/cucumber/ast/background_spec.rb",
|
|
517
|
-
"spec/cucumber/ast/feature_factory.rb",
|
|
518
|
-
"spec/cucumber/ast/feature_spec.rb",
|
|
519
|
-
"spec/cucumber/ast/outline_table_spec.rb",
|
|
520
|
-
"spec/cucumber/ast/py_string_spec.rb",
|
|
521
|
-
"spec/cucumber/ast/scenario_outline_spec.rb",
|
|
522
|
-
"spec/cucumber/ast/scenario_spec.rb",
|
|
523
|
-
"spec/cucumber/ast/step_spec.rb",
|
|
524
|
-
"spec/cucumber/ast/table_spec.rb",
|
|
525
|
-
"spec/cucumber/ast/tree_walker_spec.rb",
|
|
526
|
-
"spec/cucumber/broadcaster_spec.rb",
|
|
527
|
-
"spec/cucumber/cli/configuration_spec.rb",
|
|
528
|
-
"spec/cucumber/cli/drb_client_spec.rb",
|
|
529
|
-
"spec/cucumber/cli/main_spec.rb",
|
|
530
|
-
"spec/cucumber/cli/options_spec.rb",
|
|
531
|
-
"spec/cucumber/cli/profile_loader_spec.rb",
|
|
532
|
-
"spec/cucumber/core_ext/proc_spec.rb",
|
|
533
|
-
"spec/cucumber/formatter/ansicolor_spec.rb",
|
|
534
|
-
"spec/cucumber/formatter/color_io_spec.rb",
|
|
535
|
-
"spec/cucumber/formatter/duration_spec.rb",
|
|
536
|
-
"spec/cucumber/formatter/html_spec.rb",
|
|
537
|
-
"spec/cucumber/formatter/junit_spec.rb",
|
|
538
|
-
"spec/cucumber/formatter/progress_spec.rb",
|
|
539
|
-
"spec/cucumber/formatter/spec_helper.rb",
|
|
540
|
-
"spec/cucumber/rb_support/rb_language_spec.rb",
|
|
541
|
-
"spec/cucumber/rb_support/rb_step_definition_spec.rb",
|
|
542
|
-
"spec/cucumber/rb_support/regexp_argument_matcher_spec.rb",
|
|
543
|
-
"spec/cucumber/sell_cucumbers.feature",
|
|
544
|
-
"spec/cucumber/step_match_spec.rb",
|
|
545
|
-
"spec/cucumber/step_mother_spec.rb",
|
|
546
|
-
"spec/cucumber/wire_support/configuration_spec.rb",
|
|
547
|
-
"spec/cucumber/wire_support/connection_spec.rb",
|
|
548
|
-
"spec/cucumber/wire_support/wire_exception_spec.rb",
|
|
549
|
-
"spec/cucumber/wire_support/wire_language_spec.rb",
|
|
550
|
-
"spec/cucumber/wire_support/wire_packet_spec.rb",
|
|
551
|
-
"spec/cucumber/wire_support/wire_step_definition_spec.rb",
|
|
552
|
-
"spec/cucumber/world/pending_spec.rb",
|
|
553
|
-
"spec/spec_helper.rb"
|
|
22
|
+
".rspec",
|
|
23
|
+
"LICENSE",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"bin/cucumber",
|
|
26
|
+
"cucumber.gemspec",
|
|
27
|
+
"cucumber.yml",
|
|
28
|
+
"examples/i18n/README.textile",
|
|
29
|
+
"examples/i18n/Rakefile",
|
|
30
|
+
"examples/i18n/ar/Rakefile",
|
|
31
|
+
"examples/i18n/ar/features/addition.feature",
|
|
32
|
+
"examples/i18n/ar/features/step_definitons/calculator_steps.rb",
|
|
33
|
+
"examples/i18n/ar/lib/calculator.rb",
|
|
34
|
+
"examples/i18n/bg/Rakefile",
|
|
35
|
+
"examples/i18n/bg/features/addition.feature",
|
|
36
|
+
"examples/i18n/bg/features/consecutive_calculations.feature",
|
|
37
|
+
"examples/i18n/bg/features/division.feature",
|
|
38
|
+
"examples/i18n/bg/features/step_definitons/calculator_steps.rb",
|
|
39
|
+
"examples/i18n/bg/features/support/env.rb",
|
|
40
|
+
"examples/i18n/bg/features/support/world.rb",
|
|
41
|
+
"examples/i18n/bg/lib/calculator.rb",
|
|
42
|
+
"examples/i18n/ca/Rakefile",
|
|
43
|
+
"examples/i18n/ca/features/step_definitons/calculator_steps.rb",
|
|
44
|
+
"examples/i18n/ca/features/suma.feature",
|
|
45
|
+
"examples/i18n/ca/lib/calculadora.rb",
|
|
46
|
+
"examples/i18n/da/Rakefile",
|
|
47
|
+
"examples/i18n/da/features/sammenlaegning.feature",
|
|
48
|
+
"examples/i18n/da/features/step_definitons/lommeregner_steps.rb",
|
|
49
|
+
"examples/i18n/da/lib/lommeregner.rb",
|
|
50
|
+
"examples/i18n/de/.gitignore",
|
|
51
|
+
"examples/i18n/de/Rakefile",
|
|
52
|
+
"examples/i18n/de/features/addition.feature",
|
|
53
|
+
"examples/i18n/de/features/division.feature",
|
|
54
|
+
"examples/i18n/de/features/step_definitons/calculator_steps.rb",
|
|
55
|
+
"examples/i18n/de/lib/calculator.rb",
|
|
56
|
+
"examples/i18n/en-lol/Rakefile",
|
|
57
|
+
"examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb",
|
|
58
|
+
"examples/i18n/en-lol/features/stuffing.feature",
|
|
59
|
+
"examples/i18n/en-lol/features/support/env.rb",
|
|
60
|
+
"examples/i18n/en-lol/lib/basket.rb",
|
|
61
|
+
"examples/i18n/en-lol/lib/belly.rb",
|
|
62
|
+
"examples/i18n/en/.gitignore",
|
|
63
|
+
"examples/i18n/en/Rakefile",
|
|
64
|
+
"examples/i18n/en/features/addition.feature",
|
|
65
|
+
"examples/i18n/en/features/division.feature",
|
|
66
|
+
"examples/i18n/en/features/step_definitons/calculator_steps.rb",
|
|
67
|
+
"examples/i18n/en/lib/calculator.rb",
|
|
68
|
+
"examples/i18n/eo/.gitignore",
|
|
69
|
+
"examples/i18n/eo/Rakefile",
|
|
70
|
+
"examples/i18n/eo/features/adicio.feature",
|
|
71
|
+
"examples/i18n/eo/features/divido.feature",
|
|
72
|
+
"examples/i18n/eo/features/step_definitons/calculator_steps.rb",
|
|
73
|
+
"examples/i18n/eo/lib/calculator.rb",
|
|
74
|
+
"examples/i18n/es/Rakefile",
|
|
75
|
+
"examples/i18n/es/features/adicion.feature",
|
|
76
|
+
"examples/i18n/es/features/step_definitons/calculador_steps.rb",
|
|
77
|
+
"examples/i18n/es/lib/calculador.rb",
|
|
78
|
+
"examples/i18n/et/Rakefile",
|
|
79
|
+
"examples/i18n/et/features/jagamine.feature",
|
|
80
|
+
"examples/i18n/et/features/liitmine.feature",
|
|
81
|
+
"examples/i18n/et/features/step_definitions/kalkulaator_steps.rb",
|
|
82
|
+
"examples/i18n/et/lib/kalkulaator.rb",
|
|
83
|
+
"examples/i18n/fi/.gitignore",
|
|
84
|
+
"examples/i18n/fi/Rakefile",
|
|
85
|
+
"examples/i18n/fi/features/jakolasku.feature",
|
|
86
|
+
"examples/i18n/fi/features/step_definitons/laskin_steps.rb",
|
|
87
|
+
"examples/i18n/fi/features/yhteenlasku.feature",
|
|
88
|
+
"examples/i18n/fi/lib/laskin.rb",
|
|
89
|
+
"examples/i18n/fr/Rakefile",
|
|
90
|
+
"examples/i18n/fr/features/addition.feature",
|
|
91
|
+
"examples/i18n/fr/features/addition2.feature",
|
|
92
|
+
"examples/i18n/fr/features/step_definitions/calculatrice_steps.rb",
|
|
93
|
+
"examples/i18n/fr/features/support/env.rb",
|
|
94
|
+
"examples/i18n/fr/lib/calculatrice.rb",
|
|
95
|
+
"examples/i18n/he/Rakefile",
|
|
96
|
+
"examples/i18n/he/features/addition.feature",
|
|
97
|
+
"examples/i18n/he/features/division.feature",
|
|
98
|
+
"examples/i18n/he/features/step_definitons/calculator_steps.rb",
|
|
99
|
+
"examples/i18n/he/lib/calculator.rb",
|
|
100
|
+
"examples/i18n/hu/.gitignore",
|
|
101
|
+
"examples/i18n/hu/Rakefile",
|
|
102
|
+
"examples/i18n/hu/features/osszeadas.feature",
|
|
103
|
+
"examples/i18n/hu/features/osztas.feature",
|
|
104
|
+
"examples/i18n/hu/features/step_definitons/calculator_steps.rb",
|
|
105
|
+
"examples/i18n/hu/lib/calculator.rb",
|
|
106
|
+
"examples/i18n/id/.gitignore",
|
|
107
|
+
"examples/i18n/id/Rakefile",
|
|
108
|
+
"examples/i18n/id/features/addition.feature",
|
|
109
|
+
"examples/i18n/id/features/division.feature",
|
|
110
|
+
"examples/i18n/id/features/step_definitons/calculator_steps.rb",
|
|
111
|
+
"examples/i18n/id/lib/calculator.rb",
|
|
112
|
+
"examples/i18n/it/Rakefile",
|
|
113
|
+
"examples/i18n/it/features/somma.feature",
|
|
114
|
+
"examples/i18n/it/features/step_definitons/calcolatrice_steps.rb",
|
|
115
|
+
"examples/i18n/it/lib/calcolatrice.rb",
|
|
116
|
+
"examples/i18n/ja/.gitignore",
|
|
117
|
+
"examples/i18n/ja/Rakefile",
|
|
118
|
+
"examples/i18n/ja/features/addition.feature",
|
|
119
|
+
"examples/i18n/ja/features/division.feature",
|
|
120
|
+
"examples/i18n/ja/features/step_definitons/calculator_steps.rb",
|
|
121
|
+
"examples/i18n/ja/features/support/env.rb",
|
|
122
|
+
"examples/i18n/ja/lib/calculator.rb",
|
|
123
|
+
"examples/i18n/ko/.gitignore",
|
|
124
|
+
"examples/i18n/ko/Rakefile",
|
|
125
|
+
"examples/i18n/ko/features/addition.feature",
|
|
126
|
+
"examples/i18n/ko/features/division.feature",
|
|
127
|
+
"examples/i18n/ko/features/step_definitons/calculator_steps.rb",
|
|
128
|
+
"examples/i18n/ko/lib/calculator.rb",
|
|
129
|
+
"examples/i18n/lt/.gitignore",
|
|
130
|
+
"examples/i18n/lt/Rakefile",
|
|
131
|
+
"examples/i18n/lt/features/addition.feature",
|
|
132
|
+
"examples/i18n/lt/features/division.feature",
|
|
133
|
+
"examples/i18n/lt/features/step_definitons/calculator_steps.rb",
|
|
134
|
+
"examples/i18n/lt/lib/calculator.rb",
|
|
135
|
+
"examples/i18n/lv/Rakefile",
|
|
136
|
+
"examples/i18n/lv/features/addition.feature",
|
|
137
|
+
"examples/i18n/lv/features/division.feature",
|
|
138
|
+
"examples/i18n/lv/features/step_definitons/calculator_steps.rb",
|
|
139
|
+
"examples/i18n/lv/lib/calculator.rb",
|
|
140
|
+
"examples/i18n/no/Rakefile",
|
|
141
|
+
"examples/i18n/no/features/step_definitons/kalkulator_steps.rb",
|
|
142
|
+
"examples/i18n/no/features/summering.feature",
|
|
143
|
+
"examples/i18n/no/features/support/env.rb",
|
|
144
|
+
"examples/i18n/no/lib/kalkulator.rb",
|
|
145
|
+
"examples/i18n/pl/.gitignore",
|
|
146
|
+
"examples/i18n/pl/Rakefile",
|
|
147
|
+
"examples/i18n/pl/features/addition.feature",
|
|
148
|
+
"examples/i18n/pl/features/division.feature",
|
|
149
|
+
"examples/i18n/pl/features/step_definitons/calculator_steps.rb",
|
|
150
|
+
"examples/i18n/pl/features/support/env.rb",
|
|
151
|
+
"examples/i18n/pl/lib/calculator.rb",
|
|
152
|
+
"examples/i18n/pt/Rakefile",
|
|
153
|
+
"examples/i18n/pt/features/adicao.feature",
|
|
154
|
+
"examples/i18n/pt/features/step_definitions/calculadora_steps.rb",
|
|
155
|
+
"examples/i18n/pt/features/support/env.rb",
|
|
156
|
+
"examples/i18n/pt/lib/calculadora.rb",
|
|
157
|
+
"examples/i18n/ro/Rakefile",
|
|
158
|
+
"examples/i18n/ro/features/step_definitons/calculator_steps.rb",
|
|
159
|
+
"examples/i18n/ro/lib/calculator.rb",
|
|
160
|
+
"examples/i18n/ru/Rakefile",
|
|
161
|
+
"examples/i18n/ru/features/addition.feature",
|
|
162
|
+
"examples/i18n/ru/features/consecutive_calculations.feature",
|
|
163
|
+
"examples/i18n/ru/features/division.feature",
|
|
164
|
+
"examples/i18n/ru/features/step_definitons/calculator_steps.rb",
|
|
165
|
+
"examples/i18n/ru/features/support/env.rb",
|
|
166
|
+
"examples/i18n/ru/features/support/world.rb",
|
|
167
|
+
"examples/i18n/ru/lib/calculator.rb",
|
|
168
|
+
"examples/i18n/sk/.gitignore",
|
|
169
|
+
"examples/i18n/sk/Rakefile",
|
|
170
|
+
"examples/i18n/sk/features/addition.feature",
|
|
171
|
+
"examples/i18n/sk/features/division.feature",
|
|
172
|
+
"examples/i18n/sk/features/step_definitons/calculator_steps.rb",
|
|
173
|
+
"examples/i18n/sk/lib/calculator.rb",
|
|
174
|
+
"examples/i18n/sr-Cyrl/Rakefile",
|
|
175
|
+
"examples/i18n/sr-Cyrl/features/sabiranje.feature",
|
|
176
|
+
"examples/i18n/sr-Cyrl/features/step_definitons/calculator_steps.rb",
|
|
177
|
+
"examples/i18n/sr-Cyrl/features/support/env.rb",
|
|
178
|
+
"examples/i18n/sr-Cyrl/lib/calculator.rb",
|
|
179
|
+
"examples/i18n/sr-Latn/Rakefile",
|
|
180
|
+
"examples/i18n/sr-Latn/features/sabiranje.feature",
|
|
181
|
+
"examples/i18n/sr-Latn/features/step_definitons/calculator_steps.rb",
|
|
182
|
+
"examples/i18n/sr-Latn/lib/calculator.rb",
|
|
183
|
+
"examples/i18n/sv/Rakefile",
|
|
184
|
+
"examples/i18n/sv/features/step_definitons/kalkulator_steps.rb",
|
|
185
|
+
"examples/i18n/sv/features/summering.feature",
|
|
186
|
+
"examples/i18n/sv/lib/kalkulator.rb",
|
|
187
|
+
"examples/i18n/tr/.gitignore",
|
|
188
|
+
"examples/i18n/tr/Rakefile",
|
|
189
|
+
"examples/i18n/tr/features/bolme.feature",
|
|
190
|
+
"examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb",
|
|
191
|
+
"examples/i18n/tr/features/toplama.feature",
|
|
192
|
+
"examples/i18n/tr/lib/hesap_makinesi.rb",
|
|
193
|
+
"examples/i18n/uk/Rakefile",
|
|
194
|
+
"examples/i18n/uk/features/addition.feature",
|
|
195
|
+
"examples/i18n/uk/features/consecutive_calculations.feature",
|
|
196
|
+
"examples/i18n/uk/features/division.feature",
|
|
197
|
+
"examples/i18n/uk/features/step_definitons/calculator_steps.rb",
|
|
198
|
+
"examples/i18n/uk/features/support/env.rb",
|
|
199
|
+
"examples/i18n/uk/features/support/world.rb",
|
|
200
|
+
"examples/i18n/uk/lib/calculator.rb",
|
|
201
|
+
"examples/i18n/uz/Rakefile",
|
|
202
|
+
"examples/i18n/uz/features/addition.feature",
|
|
203
|
+
"examples/i18n/uz/features/consecutive_calculations.feature",
|
|
204
|
+
"examples/i18n/uz/features/division.feature",
|
|
205
|
+
"examples/i18n/uz/features/step_definitons/calculator_steps.rb",
|
|
206
|
+
"examples/i18n/uz/features/support/env.rb",
|
|
207
|
+
"examples/i18n/uz/features/support/world.rb",
|
|
208
|
+
"examples/i18n/uz/lib/calculator.rb",
|
|
209
|
+
"examples/i18n/zh-CN/Rakefile",
|
|
210
|
+
"examples/i18n/zh-CN/features/addition.feature",
|
|
211
|
+
"examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb",
|
|
212
|
+
"examples/i18n/zh-CN/lib/calculator.rb",
|
|
213
|
+
"examples/i18n/zh-TW/.gitignore",
|
|
214
|
+
"examples/i18n/zh-TW/Rakefile",
|
|
215
|
+
"examples/i18n/zh-TW/features/addition.feature",
|
|
216
|
+
"examples/i18n/zh-TW/features/division.feature",
|
|
217
|
+
"examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb",
|
|
218
|
+
"examples/i18n/zh-TW/lib/calculator.rb",
|
|
219
|
+
"examples/python/README.textile",
|
|
220
|
+
"examples/python/Rakefile",
|
|
221
|
+
"examples/python/features/fibonacci.feature",
|
|
222
|
+
"examples/python/features/step_definitions/fib_steps.py",
|
|
223
|
+
"examples/python/lib/.gitignore",
|
|
224
|
+
"examples/python/lib/fib.py",
|
|
225
|
+
"examples/ramaze/README.textile",
|
|
226
|
+
"examples/ramaze/Rakefile",
|
|
227
|
+
"examples/ramaze/app.rb",
|
|
228
|
+
"examples/ramaze/features/add.feature",
|
|
229
|
+
"examples/ramaze/features/step_definitions/add_steps.rb",
|
|
230
|
+
"examples/ramaze/features/support/env.rb",
|
|
231
|
+
"examples/ramaze/layout/default.html.erb",
|
|
232
|
+
"examples/ramaze/view/index.html.erb",
|
|
233
|
+
"examples/rspec_doubles/Rakefile",
|
|
234
|
+
"examples/rspec_doubles/features/mocking.feature",
|
|
235
|
+
"examples/rspec_doubles/features/step_definitions/calvin_steps.rb",
|
|
236
|
+
"examples/rspec_doubles/features/support/env.rb",
|
|
237
|
+
"examples/ruby2python/README.textile",
|
|
238
|
+
"examples/ruby2python/Rakefile",
|
|
239
|
+
"examples/ruby2python/features/fibonacci.feature",
|
|
240
|
+
"examples/ruby2python/features/step_definitions/fib_steps.rb",
|
|
241
|
+
"examples/ruby2python/features/support/env.rb",
|
|
242
|
+
"examples/ruby2python/lib/.gitignore",
|
|
243
|
+
"examples/ruby2python/lib/fib.py",
|
|
244
|
+
"examples/sinatra/README.textile",
|
|
245
|
+
"examples/sinatra/Rakefile",
|
|
246
|
+
"examples/sinatra/app.rb",
|
|
247
|
+
"examples/sinatra/features/add.feature",
|
|
248
|
+
"examples/sinatra/features/step_definitions/add_steps.rb",
|
|
249
|
+
"examples/sinatra/features/support/env.rb",
|
|
250
|
+
"examples/sinatra/views/add.erb",
|
|
251
|
+
"examples/sinatra/views/layout.erb",
|
|
252
|
+
"examples/tcl/README.textile",
|
|
253
|
+
"examples/tcl/Rakefile",
|
|
254
|
+
"examples/tcl/features/fibonnacci.feature",
|
|
255
|
+
"examples/tcl/features/step_definitions/fib_steps.rb",
|
|
256
|
+
"examples/tcl/features/support/env.rb",
|
|
257
|
+
"examples/tcl/src/fib.tcl",
|
|
258
|
+
"examples/test_unit/Rakefile",
|
|
259
|
+
"examples/test_unit/features/step_definitions/test_unit_steps.rb",
|
|
260
|
+
"examples/test_unit/features/test_unit.feature",
|
|
261
|
+
"examples/v8/Rakefile",
|
|
262
|
+
"examples/v8/features/fibonacci.feature",
|
|
263
|
+
"examples/v8/features/step_definitions/fib_steps.js",
|
|
264
|
+
"examples/v8/features/support/env.js",
|
|
265
|
+
"examples/v8/lib/fibonacci.js",
|
|
266
|
+
"examples/watir/.gitignore",
|
|
267
|
+
"examples/watir/README.textile",
|
|
268
|
+
"examples/watir/Rakefile",
|
|
269
|
+
"examples/watir/cucumber.yml",
|
|
270
|
+
"examples/watir/features/search.feature",
|
|
271
|
+
"examples/watir/features/step_definitions/search_steps.rb",
|
|
272
|
+
"examples/watir/features/support/env.rb",
|
|
273
|
+
"examples/watir/features/support/screenshots.rb",
|
|
274
|
+
"features/background.feature",
|
|
275
|
+
"features/custom_formatter.feature",
|
|
276
|
+
"features/json_formatter.feature",
|
|
277
|
+
"features/step_definitions/cucumber_steps.rb",
|
|
278
|
+
"features/support/env.rb",
|
|
279
|
+
"fixtures/json/features/background.feature",
|
|
280
|
+
"fixtures/json/features/embed.feature",
|
|
281
|
+
"fixtures/json/features/one_passing_one_failing.feature",
|
|
282
|
+
"fixtures/json/features/step_definitions/steps.rb",
|
|
283
|
+
"fixtures/json/features/tables.feature",
|
|
284
|
+
"fixtures/junit/features/one_passing_one_failing.feature",
|
|
285
|
+
"fixtures/junit/features/pending.feature",
|
|
286
|
+
"fixtures/junit/features/step_definitions/steps.rb",
|
|
287
|
+
"fixtures/self_test/.gitignore",
|
|
288
|
+
"fixtures/self_test/README.textile",
|
|
289
|
+
"fixtures/self_test/Rakefile",
|
|
290
|
+
"fixtures/self_test/features/call_undefined_step_from_step_def.feature",
|
|
291
|
+
"fixtures/self_test/features/failing_expectation.feature",
|
|
292
|
+
"fixtures/self_test/features/lots_of_undefined.feature",
|
|
293
|
+
"fixtures/self_test/features/multiline_name.feature",
|
|
294
|
+
"fixtures/self_test/features/outline_sample.feature",
|
|
295
|
+
"fixtures/self_test/features/sample.feature",
|
|
296
|
+
"fixtures/self_test/features/search_sample.feature",
|
|
297
|
+
"fixtures/self_test/features/step_definitions/sample_steps.rb",
|
|
298
|
+
"fixtures/self_test/features/support/env.rb",
|
|
299
|
+
"fixtures/self_test/features/tags_sample.feature",
|
|
300
|
+
"fixtures/self_test/features/tons_of_cukes.feature",
|
|
301
|
+
"fixtures/self_test/features/undefined_multiline_args.feature",
|
|
302
|
+
"fixtures/self_test/list-of-features.txt",
|
|
303
|
+
"fixtures/steps_library/features/step_definitions/steps_lib1.rb",
|
|
304
|
+
"fixtures/steps_library/features/step_definitions/steps_lib2.rb",
|
|
305
|
+
"fixtures/tickets/Rakefile",
|
|
306
|
+
"fixtures/tickets/features.html",
|
|
307
|
+
"fixtures/tickets/features/172.feature",
|
|
308
|
+
"fixtures/tickets/features/177/1.feature",
|
|
309
|
+
"fixtures/tickets/features/177/2.feature",
|
|
310
|
+
"fixtures/tickets/features/177/3.feature",
|
|
311
|
+
"fixtures/tickets/features/180.feature",
|
|
312
|
+
"fixtures/tickets/features/229/tagged_hooks.feature",
|
|
313
|
+
"fixtures/tickets/features/229/tagged_hooks.rb",
|
|
314
|
+
"fixtures/tickets/features/236.feature",
|
|
315
|
+
"fixtures/tickets/features/241.feature",
|
|
316
|
+
"fixtures/tickets/features/246.feature",
|
|
317
|
+
"fixtures/tickets/features/248.feature",
|
|
318
|
+
"fixtures/tickets/features/270/back.feature",
|
|
319
|
+
"fixtures/tickets/features/270/back.steps.rb",
|
|
320
|
+
"fixtures/tickets/features/272/hooks.feature",
|
|
321
|
+
"fixtures/tickets/features/272/hooks_steps.rb",
|
|
322
|
+
"fixtures/tickets/features/279/py_string_indent.feature",
|
|
323
|
+
"fixtures/tickets/features/279/py_string_indent.steps.rb",
|
|
324
|
+
"fixtures/tickets/features/279/wrong.feature_",
|
|
325
|
+
"fixtures/tickets/features/301/filter_background_tagged_hooks.feature",
|
|
326
|
+
"fixtures/tickets/features/301/filter_background_tagged_hooks_steps.rb",
|
|
327
|
+
"fixtures/tickets/features/306/only_background.feature",
|
|
328
|
+
"fixtures/tickets/features/around_timeout.feature",
|
|
329
|
+
"fixtures/tickets/features/gherkin_67.feature",
|
|
330
|
+
"fixtures/tickets/features/gherkin_68.feature",
|
|
331
|
+
"fixtures/tickets/features/half_manual.feature",
|
|
332
|
+
"fixtures/tickets/features/lib/eatting_machine.rb",
|
|
333
|
+
"fixtures/tickets/features/lib/pantry.rb",
|
|
334
|
+
"fixtures/tickets/features/scenario_outline.feature",
|
|
335
|
+
"fixtures/tickets/features/step_definitons/246_steps.rb",
|
|
336
|
+
"fixtures/tickets/features/step_definitons/248_steps.rb",
|
|
337
|
+
"fixtures/tickets/features/step_definitons/around_timeout_steps.rb",
|
|
338
|
+
"fixtures/tickets/features/step_definitons/half_manual_steps.rb",
|
|
339
|
+
"fixtures/tickets/features/step_definitons/scenario_outline_steps.rb",
|
|
340
|
+
"fixtures/tickets/features/step_definitons/tickets_steps.rb",
|
|
341
|
+
"fixtures/tickets/features/table_diffing.feature",
|
|
342
|
+
"fixtures/tickets/features/tickets.feature",
|
|
343
|
+
"gem_tasks/contributors.rake",
|
|
344
|
+
"gem_tasks/environment.rake",
|
|
345
|
+
"gem_tasks/examples.rake",
|
|
346
|
+
"gem_tasks/fix_cr_lf.rake",
|
|
347
|
+
"gem_tasks/flog.rake",
|
|
348
|
+
"gem_tasks/rspec.rake",
|
|
349
|
+
"gem_tasks/sass.rake",
|
|
350
|
+
"lib/README.rdoc",
|
|
351
|
+
"lib/autotest/cucumber.rb",
|
|
352
|
+
"lib/autotest/cucumber_mixin.rb",
|
|
353
|
+
"lib/autotest/cucumber_rails.rb",
|
|
354
|
+
"lib/autotest/cucumber_rails_rspec.rb",
|
|
355
|
+
"lib/autotest/cucumber_rails_rspec2.rb",
|
|
356
|
+
"lib/autotest/cucumber_rspec.rb",
|
|
357
|
+
"lib/autotest/cucumber_rspec2.rb",
|
|
358
|
+
"lib/autotest/discover.rb",
|
|
359
|
+
"lib/cucumber.rb",
|
|
360
|
+
"lib/cucumber/ast.rb",
|
|
361
|
+
"lib/cucumber/ast/background.rb",
|
|
362
|
+
"lib/cucumber/ast/comment.rb",
|
|
363
|
+
"lib/cucumber/ast/examples.rb",
|
|
364
|
+
"lib/cucumber/ast/feature.rb",
|
|
365
|
+
"lib/cucumber/ast/feature_element.rb",
|
|
366
|
+
"lib/cucumber/ast/features.rb",
|
|
367
|
+
"lib/cucumber/ast/outline_table.rb",
|
|
368
|
+
"lib/cucumber/ast/scenario.rb",
|
|
369
|
+
"lib/cucumber/ast/scenario_outline.rb",
|
|
370
|
+
"lib/cucumber/ast/step.rb",
|
|
371
|
+
"lib/cucumber/ast/step_collection.rb",
|
|
372
|
+
"lib/cucumber/ast/step_invocation.rb",
|
|
373
|
+
"lib/cucumber/ast/table.rb",
|
|
374
|
+
"lib/cucumber/ast/tags.rb",
|
|
375
|
+
"lib/cucumber/ast/tree_walker.rb",
|
|
376
|
+
"lib/cucumber/ast/visitor.rb",
|
|
377
|
+
"lib/cucumber/broadcaster.rb",
|
|
378
|
+
"lib/cucumber/cli/configuration.rb",
|
|
379
|
+
"lib/cucumber/cli/drb_client.rb",
|
|
380
|
+
"lib/cucumber/cli/main.rb",
|
|
381
|
+
"lib/cucumber/cli/options.rb",
|
|
382
|
+
"lib/cucumber/cli/profile_loader.rb",
|
|
383
|
+
"lib/cucumber/constantize.rb",
|
|
384
|
+
"lib/cucumber/core_ext/instance_exec.rb",
|
|
385
|
+
"lib/cucumber/core_ext/proc.rb",
|
|
386
|
+
"lib/cucumber/core_ext/string.rb",
|
|
387
|
+
"lib/cucumber/feature_file.rb",
|
|
388
|
+
"lib/cucumber/formatter/ansicolor.rb",
|
|
389
|
+
"lib/cucumber/formatter/console.rb",
|
|
390
|
+
"lib/cucumber/formatter/cucumber.css",
|
|
391
|
+
"lib/cucumber/formatter/cucumber.sass",
|
|
392
|
+
"lib/cucumber/formatter/debug.rb",
|
|
393
|
+
"lib/cucumber/formatter/duration.rb",
|
|
394
|
+
"lib/cucumber/formatter/html.rb",
|
|
395
|
+
"lib/cucumber/formatter/io.rb",
|
|
396
|
+
"lib/cucumber/formatter/jquery-min.js",
|
|
397
|
+
"lib/cucumber/formatter/json.rb",
|
|
398
|
+
"lib/cucumber/formatter/json_pretty.rb",
|
|
399
|
+
"lib/cucumber/formatter/junit.rb",
|
|
400
|
+
"lib/cucumber/formatter/ordered_xml_markup.rb",
|
|
401
|
+
"lib/cucumber/formatter/pdf.rb",
|
|
402
|
+
"lib/cucumber/formatter/pretty.rb",
|
|
403
|
+
"lib/cucumber/formatter/progress.rb",
|
|
404
|
+
"lib/cucumber/formatter/rerun.rb",
|
|
405
|
+
"lib/cucumber/formatter/stepdefs.rb",
|
|
406
|
+
"lib/cucumber/formatter/steps.rb",
|
|
407
|
+
"lib/cucumber/formatter/summary.rb",
|
|
408
|
+
"lib/cucumber/formatter/unicode.rb",
|
|
409
|
+
"lib/cucumber/formatter/usage.rb",
|
|
410
|
+
"lib/cucumber/js_support/js_dsl.js",
|
|
411
|
+
"lib/cucumber/js_support/js_language.rb",
|
|
412
|
+
"lib/cucumber/js_support/js_snippets.rb",
|
|
413
|
+
"lib/cucumber/language_support.rb",
|
|
414
|
+
"lib/cucumber/language_support/language_methods.rb",
|
|
415
|
+
"lib/cucumber/parser.rb",
|
|
416
|
+
"lib/cucumber/parser/gherkin_builder.rb",
|
|
417
|
+
"lib/cucumber/platform.rb",
|
|
418
|
+
"lib/cucumber/py_support/py_dsl.py",
|
|
419
|
+
"lib/cucumber/py_support/py_language.py",
|
|
420
|
+
"lib/cucumber/py_support/py_language.rb",
|
|
421
|
+
"lib/cucumber/rake/task.rb",
|
|
422
|
+
"lib/cucumber/rb_support/rb_dsl.rb",
|
|
423
|
+
"lib/cucumber/rb_support/rb_hook.rb",
|
|
424
|
+
"lib/cucumber/rb_support/rb_language.rb",
|
|
425
|
+
"lib/cucumber/rb_support/rb_step_definition.rb",
|
|
426
|
+
"lib/cucumber/rb_support/rb_transform.rb",
|
|
427
|
+
"lib/cucumber/rb_support/rb_world.rb",
|
|
428
|
+
"lib/cucumber/rb_support/regexp_argument_matcher.rb",
|
|
429
|
+
"lib/cucumber/rspec/disable_option_parser.rb",
|
|
430
|
+
"lib/cucumber/rspec/doubles.rb",
|
|
431
|
+
"lib/cucumber/step_argument.rb",
|
|
432
|
+
"lib/cucumber/step_definition_light.rb",
|
|
433
|
+
"lib/cucumber/step_match.rb",
|
|
434
|
+
"lib/cucumber/step_mother.rb",
|
|
435
|
+
"lib/cucumber/wire_support/configuration.rb",
|
|
436
|
+
"lib/cucumber/wire_support/connection.rb",
|
|
437
|
+
"lib/cucumber/wire_support/request_handler.rb",
|
|
438
|
+
"lib/cucumber/wire_support/wire_exception.rb",
|
|
439
|
+
"lib/cucumber/wire_support/wire_language.rb",
|
|
440
|
+
"lib/cucumber/wire_support/wire_packet.rb",
|
|
441
|
+
"lib/cucumber/wire_support/wire_protocol.rb",
|
|
442
|
+
"lib/cucumber/wire_support/wire_protocol/requests.rb",
|
|
443
|
+
"lib/cucumber/wire_support/wire_step_definition.rb",
|
|
444
|
+
"spec/cucumber/ast/background_spec.rb",
|
|
445
|
+
"spec/cucumber/ast/feature_factory.rb",
|
|
446
|
+
"spec/cucumber/ast/feature_spec.rb",
|
|
447
|
+
"spec/cucumber/ast/outline_table_spec.rb",
|
|
448
|
+
"spec/cucumber/ast/scenario_outline_spec.rb",
|
|
449
|
+
"spec/cucumber/ast/scenario_spec.rb",
|
|
450
|
+
"spec/cucumber/ast/step_spec.rb",
|
|
451
|
+
"spec/cucumber/ast/table_spec.rb",
|
|
452
|
+
"spec/cucumber/ast/tree_walker_spec.rb",
|
|
453
|
+
"spec/cucumber/broadcaster_spec.rb",
|
|
454
|
+
"spec/cucumber/cli/configuration_spec.rb",
|
|
455
|
+
"spec/cucumber/cli/drb_client_spec.rb",
|
|
456
|
+
"spec/cucumber/cli/main_spec.rb",
|
|
457
|
+
"spec/cucumber/cli/options_spec.rb",
|
|
458
|
+
"spec/cucumber/cli/profile_loader_spec.rb",
|
|
459
|
+
"spec/cucumber/core_ext/proc_spec.rb",
|
|
460
|
+
"spec/cucumber/formatter/ansicolor_spec.rb",
|
|
461
|
+
"spec/cucumber/formatter/duration_spec.rb",
|
|
462
|
+
"spec/cucumber/formatter/html_spec.rb",
|
|
463
|
+
"spec/cucumber/formatter/junit_spec.rb",
|
|
464
|
+
"spec/cucumber/formatter/progress_spec.rb",
|
|
465
|
+
"spec/cucumber/formatter/spec_helper.rb",
|
|
466
|
+
"spec/cucumber/rb_support/rb_language_spec.rb",
|
|
467
|
+
"spec/cucumber/rb_support/rb_step_definition_spec.rb",
|
|
468
|
+
"spec/cucumber/rb_support/regexp_argument_matcher_spec.rb",
|
|
469
|
+
"spec/cucumber/sell_cucumbers.feature",
|
|
470
|
+
"spec/cucumber/step_match_spec.rb",
|
|
471
|
+
"spec/cucumber/wire_support/configuration_spec.rb",
|
|
472
|
+
"spec/cucumber/wire_support/connection_spec.rb",
|
|
473
|
+
"spec/cucumber/wire_support/wire_exception_spec.rb",
|
|
474
|
+
"spec/cucumber/wire_support/wire_language_spec.rb",
|
|
475
|
+
"spec/cucumber/wire_support/wire_packet_spec.rb",
|
|
476
|
+
"spec/cucumber/wire_support/wire_step_definition_spec.rb",
|
|
477
|
+
"spec/cucumber/world/pending_spec.rb",
|
|
478
|
+
"spec/spec_helper.rb"
|
|
554
479
|
]
|
|
555
480
|
s.homepage = %q{http://cukes.info}
|
|
556
481
|
s.post_install_message = %q{
|
|
@@ -558,159 +483,18 @@ Gem::Specification.new do |s|
|
|
|
558
483
|
|
|
559
484
|
(::) U P G R A D I N G (::)
|
|
560
485
|
|
|
561
|
-
Thank you for installing cucumber-0.8.
|
|
486
|
+
Thank you for installing cucumber-0.8.6.
|
|
562
487
|
Please be sure to read http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
|
563
488
|
for important information about this release. Happy cuking!
|
|
564
489
|
|
|
565
490
|
(::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
|
|
566
491
|
|
|
567
492
|
}
|
|
568
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
569
493
|
s.require_paths = ["lib"]
|
|
570
|
-
s.rubygems_version = %q{1.
|
|
494
|
+
s.rubygems_version = %q{1.6.2}
|
|
571
495
|
s.summary = %q{Behaviour Driven Development with elegance and joy}
|
|
572
|
-
s.test_files = [
|
|
573
|
-
"spec/cucumber/ast/background_spec.rb",
|
|
574
|
-
"spec/cucumber/ast/feature_factory.rb",
|
|
575
|
-
"spec/cucumber/ast/feature_spec.rb",
|
|
576
|
-
"spec/cucumber/ast/outline_table_spec.rb",
|
|
577
|
-
"spec/cucumber/ast/py_string_spec.rb",
|
|
578
|
-
"spec/cucumber/ast/scenario_outline_spec.rb",
|
|
579
|
-
"spec/cucumber/ast/scenario_spec.rb",
|
|
580
|
-
"spec/cucumber/ast/step_spec.rb",
|
|
581
|
-
"spec/cucumber/ast/table_spec.rb",
|
|
582
|
-
"spec/cucumber/ast/tree_walker_spec.rb",
|
|
583
|
-
"spec/cucumber/broadcaster_spec.rb",
|
|
584
|
-
"spec/cucumber/cli/configuration_spec.rb",
|
|
585
|
-
"spec/cucumber/cli/drb_client_spec.rb",
|
|
586
|
-
"spec/cucumber/cli/main_spec.rb",
|
|
587
|
-
"spec/cucumber/cli/options_spec.rb",
|
|
588
|
-
"spec/cucumber/cli/profile_loader_spec.rb",
|
|
589
|
-
"spec/cucumber/core_ext/proc_spec.rb",
|
|
590
|
-
"spec/cucumber/formatter/ansicolor_spec.rb",
|
|
591
|
-
"spec/cucumber/formatter/color_io_spec.rb",
|
|
592
|
-
"spec/cucumber/formatter/duration_spec.rb",
|
|
593
|
-
"spec/cucumber/formatter/html_spec.rb",
|
|
594
|
-
"spec/cucumber/formatter/junit_spec.rb",
|
|
595
|
-
"spec/cucumber/formatter/progress_spec.rb",
|
|
596
|
-
"spec/cucumber/formatter/spec_helper.rb",
|
|
597
|
-
"spec/cucumber/rb_support/rb_language_spec.rb",
|
|
598
|
-
"spec/cucumber/rb_support/rb_step_definition_spec.rb",
|
|
599
|
-
"spec/cucumber/rb_support/regexp_argument_matcher_spec.rb",
|
|
600
|
-
"spec/cucumber/step_match_spec.rb",
|
|
601
|
-
"spec/cucumber/step_mother_spec.rb",
|
|
602
|
-
"spec/cucumber/wire_support/configuration_spec.rb",
|
|
603
|
-
"spec/cucumber/wire_support/connection_spec.rb",
|
|
604
|
-
"spec/cucumber/wire_support/wire_exception_spec.rb",
|
|
605
|
-
"spec/cucumber/wire_support/wire_language_spec.rb",
|
|
606
|
-
"spec/cucumber/wire_support/wire_packet_spec.rb",
|
|
607
|
-
"spec/cucumber/wire_support/wire_step_definition_spec.rb",
|
|
608
|
-
"spec/cucumber/world/pending_spec.rb",
|
|
609
|
-
"spec/spec_helper.rb",
|
|
610
|
-
"examples/i18n/ar/features/step_definitons/calculator_steps.rb",
|
|
611
|
-
"examples/i18n/ar/lib/calculator.rb",
|
|
612
|
-
"examples/i18n/bg/features/step_definitons/calculator_steps.rb",
|
|
613
|
-
"examples/i18n/bg/features/support/env.rb",
|
|
614
|
-
"examples/i18n/bg/features/support/world.rb",
|
|
615
|
-
"examples/i18n/bg/lib/calculator.rb",
|
|
616
|
-
"examples/i18n/ca/features/step_definitons/calculator_steps.rb",
|
|
617
|
-
"examples/i18n/ca/lib/calculadora.rb",
|
|
618
|
-
"examples/i18n/da/features/step_definitons/lommeregner_steps.rb",
|
|
619
|
-
"examples/i18n/da/lib/lommeregner.rb",
|
|
620
|
-
"examples/i18n/de/features/step_definitons/calculator_steps.rb",
|
|
621
|
-
"examples/i18n/de/lib/calculator.rb",
|
|
622
|
-
"examples/i18n/en/features/step_definitons/calculator_steps.rb",
|
|
623
|
-
"examples/i18n/en/lib/calculator.rb",
|
|
624
|
-
"examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb",
|
|
625
|
-
"examples/i18n/en-lol/features/support/env.rb",
|
|
626
|
-
"examples/i18n/en-lol/lib/basket.rb",
|
|
627
|
-
"examples/i18n/en-lol/lib/belly.rb",
|
|
628
|
-
"examples/i18n/eo/features/step_definitons/calculator_steps.rb",
|
|
629
|
-
"examples/i18n/eo/lib/calculator.rb",
|
|
630
|
-
"examples/i18n/es/features/step_definitons/calculador_steps.rb",
|
|
631
|
-
"examples/i18n/es/lib/calculador.rb",
|
|
632
|
-
"examples/i18n/et/features/step_definitions/kalkulaator_steps.rb",
|
|
633
|
-
"examples/i18n/et/lib/kalkulaator.rb",
|
|
634
|
-
"examples/i18n/fi/features/step_definitons/laskin_steps.rb",
|
|
635
|
-
"examples/i18n/fi/lib/laskin.rb",
|
|
636
|
-
"examples/i18n/fr/features/step_definitions/calculatrice_steps.rb",
|
|
637
|
-
"examples/i18n/fr/features/support/env.rb",
|
|
638
|
-
"examples/i18n/fr/lib/calculatrice.rb",
|
|
639
|
-
"examples/i18n/he/features/step_definitons/calculator_steps.rb",
|
|
640
|
-
"examples/i18n/he/lib/calculator.rb",
|
|
641
|
-
"examples/i18n/hu/features/step_definitons/calculator_steps.rb",
|
|
642
|
-
"examples/i18n/hu/lib/calculator.rb",
|
|
643
|
-
"examples/i18n/id/features/step_definitons/calculator_steps.rb",
|
|
644
|
-
"examples/i18n/id/lib/calculator.rb",
|
|
645
|
-
"examples/i18n/it/features/step_definitons/calcolatrice_steps.rb",
|
|
646
|
-
"examples/i18n/it/lib/calcolatrice.rb",
|
|
647
|
-
"examples/i18n/ja/features/step_definitons/calculator_steps.rb",
|
|
648
|
-
"examples/i18n/ja/features/support/env.rb",
|
|
649
|
-
"examples/i18n/ja/lib/calculator.rb",
|
|
650
|
-
"examples/i18n/ko/features/step_definitons/calculator_steps.rb",
|
|
651
|
-
"examples/i18n/ko/lib/calculator.rb",
|
|
652
|
-
"examples/i18n/lt/features/step_definitons/calculator_steps.rb",
|
|
653
|
-
"examples/i18n/lt/lib/calculator.rb",
|
|
654
|
-
"examples/i18n/lv/features/step_definitons/calculator_steps.rb",
|
|
655
|
-
"examples/i18n/lv/lib/calculator.rb",
|
|
656
|
-
"examples/i18n/no/features/step_definitons/kalkulator_steps.rb",
|
|
657
|
-
"examples/i18n/no/features/support/env.rb",
|
|
658
|
-
"examples/i18n/no/lib/kalkulator.rb",
|
|
659
|
-
"examples/i18n/pl/features/step_definitons/calculator_steps.rb",
|
|
660
|
-
"examples/i18n/pl/features/support/env.rb",
|
|
661
|
-
"examples/i18n/pl/lib/calculator.rb",
|
|
662
|
-
"examples/i18n/pt/features/step_definitions/calculadora_steps.rb",
|
|
663
|
-
"examples/i18n/pt/features/support/env.rb",
|
|
664
|
-
"examples/i18n/pt/lib/calculadora.rb",
|
|
665
|
-
"examples/i18n/ro/features/step_definitons/calculator_steps.rb",
|
|
666
|
-
"examples/i18n/ro/lib/calculator.rb",
|
|
667
|
-
"examples/i18n/ru/features/step_definitons/calculator_steps.rb",
|
|
668
|
-
"examples/i18n/ru/features/support/env.rb",
|
|
669
|
-
"examples/i18n/ru/features/support/world.rb",
|
|
670
|
-
"examples/i18n/ru/lib/calculator.rb",
|
|
671
|
-
"examples/i18n/sk/features/step_definitons/calculator_steps.rb",
|
|
672
|
-
"examples/i18n/sk/lib/calculator.rb",
|
|
673
|
-
"examples/i18n/sr-Cyrl/features/step_definitons/calculator_steps.rb",
|
|
674
|
-
"examples/i18n/sr-Cyrl/features/support/env.rb",
|
|
675
|
-
"examples/i18n/sr-Cyrl/lib/calculator.rb",
|
|
676
|
-
"examples/i18n/sr-Latn/features/step_definitons/calculator_steps.rb",
|
|
677
|
-
"examples/i18n/sr-Latn/lib/calculator.rb",
|
|
678
|
-
"examples/i18n/sv/features/step_definitons/kalkulator_steps.rb",
|
|
679
|
-
"examples/i18n/sv/lib/kalkulator.rb",
|
|
680
|
-
"examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb",
|
|
681
|
-
"examples/i18n/tr/lib/hesap_makinesi.rb",
|
|
682
|
-
"examples/i18n/uk/features/step_definitons/calculator_steps.rb",
|
|
683
|
-
"examples/i18n/uk/features/support/env.rb",
|
|
684
|
-
"examples/i18n/uk/features/support/world.rb",
|
|
685
|
-
"examples/i18n/uk/lib/calculator.rb",
|
|
686
|
-
"examples/i18n/uz/features/step_definitons/calculator_steps.rb",
|
|
687
|
-
"examples/i18n/uz/features/support/env.rb",
|
|
688
|
-
"examples/i18n/uz/features/support/world.rb",
|
|
689
|
-
"examples/i18n/uz/lib/calculator.rb",
|
|
690
|
-
"examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb",
|
|
691
|
-
"examples/i18n/zh-CN/lib/calculator.rb",
|
|
692
|
-
"examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb",
|
|
693
|
-
"examples/i18n/zh-TW/lib/calculator.rb",
|
|
694
|
-
"examples/ramaze/app.rb",
|
|
695
|
-
"examples/ramaze/features/step_definitions/add_steps.rb",
|
|
696
|
-
"examples/ramaze/features/support/env.rb",
|
|
697
|
-
"examples/rspec_doubles/features/step_definitions/calvin_steps.rb",
|
|
698
|
-
"examples/rspec_doubles/features/support/env.rb",
|
|
699
|
-
"examples/ruby2python/features/step_definitions/fib_steps.rb",
|
|
700
|
-
"examples/ruby2python/features/support/env.rb",
|
|
701
|
-
"examples/sinatra/app.rb",
|
|
702
|
-
"examples/sinatra/features/step_definitions/add_steps.rb",
|
|
703
|
-
"examples/sinatra/features/support/env.rb",
|
|
704
|
-
"examples/tcl/features/step_definitions/fib_steps.rb",
|
|
705
|
-
"examples/tcl/features/support/env.rb",
|
|
706
|
-
"examples/test_unit/features/step_definitions/test_unit_steps.rb",
|
|
707
|
-
"examples/watir/features/step_definitions/search_steps.rb",
|
|
708
|
-
"examples/watir/features/support/env.rb",
|
|
709
|
-
"examples/watir/features/support/screenshots.rb"
|
|
710
|
-
]
|
|
711
496
|
|
|
712
497
|
if s.respond_to? :specification_version then
|
|
713
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
714
498
|
s.specification_version = 3
|
|
715
499
|
|
|
716
500
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|