cucumber 0.8.5 → 0.8.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (181) hide show
  1. data/.rspec +1 -1
  2. data/LICENSE +1 -1
  3. data/Rakefile +5 -51
  4. data/bin/cucumber +7 -1
  5. data/cucumber.gemspec +463 -679
  6. data/examples/i18n/ar/features/step_definitons/calculator_steps.rb +1 -1
  7. data/examples/i18n/he/features/step_definitons/calculator_steps.rb +1 -1
  8. data/examples/i18n/ro/features/step_definitons/calculator_steps.rb +4 -7
  9. data/examples/i18n/ru/features/division.feature +2 -2
  10. data/examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb +3 -3
  11. data/examples/sinatra/features/support/env.rb +2 -5
  12. data/examples/v8/features/fibonacci.feature +1 -1
  13. data/examples/watir/features/step_definitions/search_steps.rb +1 -1
  14. data/features/background.feature +284 -95
  15. data/features/custom_formatter.feature +3 -73
  16. data/features/json_formatter.feature +160 -245
  17. data/features/step_definitions/cucumber_steps.rb +7 -153
  18. data/features/support/env.rb +18 -140
  19. data/fixtures/junit/features/pending.feature +3 -1
  20. data/fixtures/self_test/features/support/env.rb +8 -0
  21. data/fixtures/tickets/features.html +1 -1
  22. data/gem_tasks/examples.rake +1 -1
  23. data/lib/cucumber.rb +12 -0
  24. data/lib/cucumber/ast.rb +1 -1
  25. data/lib/cucumber/ast/background.rb +21 -5
  26. data/lib/cucumber/ast/examples.rb +12 -4
  27. data/lib/cucumber/ast/feature.rb +13 -5
  28. data/lib/cucumber/ast/feature_element.rb +9 -4
  29. data/lib/cucumber/ast/outline_table.rb +4 -4
  30. data/lib/cucumber/ast/scenario.rb +7 -5
  31. data/lib/cucumber/ast/scenario_outline.rb +23 -15
  32. data/lib/cucumber/ast/step.rb +5 -0
  33. data/lib/cucumber/ast/step_invocation.rb +21 -15
  34. data/lib/cucumber/ast/table.rb +14 -8
  35. data/lib/cucumber/ast/tree_walker.rb +10 -48
  36. data/lib/cucumber/cli/configuration.rb +33 -8
  37. data/lib/cucumber/cli/main.rb +20 -35
  38. data/lib/cucumber/cli/options.rb +8 -7
  39. data/lib/cucumber/cli/profile_loader.rb +2 -0
  40. data/lib/cucumber/core_ext/proc.rb +2 -1
  41. data/lib/cucumber/feature_file.rb +47 -15
  42. data/lib/cucumber/formatter/ansicolor.rb +3 -5
  43. data/lib/cucumber/formatter/console.rb +27 -23
  44. data/lib/cucumber/formatter/cucumber.css +34 -17
  45. data/lib/cucumber/formatter/cucumber.sass +173 -182
  46. data/lib/cucumber/formatter/html.rb +46 -11
  47. data/lib/cucumber/formatter/io.rb +2 -4
  48. data/lib/cucumber/formatter/json.rb +15 -152
  49. data/lib/cucumber/formatter/json_pretty.rb +5 -6
  50. data/lib/cucumber/formatter/junit.rb +28 -22
  51. data/lib/cucumber/formatter/pdf.rb +6 -6
  52. data/lib/cucumber/formatter/pretty.rb +5 -5
  53. data/lib/cucumber/formatter/rerun.rb +22 -11
  54. data/lib/cucumber/formatter/unicode.rb +41 -20
  55. data/lib/cucumber/js_support/js_dsl.js +4 -4
  56. data/lib/cucumber/js_support/js_language.rb +9 -5
  57. data/lib/cucumber/js_support/js_snippets.rb +2 -2
  58. data/lib/cucumber/language_support.rb +2 -2
  59. data/lib/cucumber/parser/gherkin_builder.rb +35 -30
  60. data/lib/cucumber/platform.rb +8 -8
  61. data/lib/cucumber/py_support/py_language.rb +2 -2
  62. data/lib/cucumber/rake/task.rb +80 -31
  63. data/lib/cucumber/rb_support/rb_dsl.rb +1 -0
  64. data/lib/cucumber/rb_support/rb_language.rb +10 -8
  65. data/lib/cucumber/rb_support/rb_step_definition.rb +8 -0
  66. data/lib/cucumber/rb_support/rb_transform.rb +17 -0
  67. data/lib/cucumber/rb_support/rb_world.rb +26 -18
  68. data/lib/cucumber/rspec/doubles.rb +3 -3
  69. data/lib/cucumber/step_match.rb +6 -2
  70. data/lib/cucumber/step_mother.rb +6 -427
  71. data/lib/cucumber/wire_support/configuration.rb +4 -1
  72. data/lib/cucumber/wire_support/wire_language.rb +3 -10
  73. data/spec/cucumber/ast/background_spec.rb +68 -6
  74. data/spec/cucumber/ast/feature_factory.rb +5 -4
  75. data/spec/cucumber/ast/feature_spec.rb +4 -4
  76. data/spec/cucumber/ast/outline_table_spec.rb +1 -1
  77. data/spec/cucumber/ast/scenario_outline_spec.rb +15 -11
  78. data/spec/cucumber/ast/scenario_spec.rb +4 -4
  79. data/spec/cucumber/ast/step_spec.rb +3 -3
  80. data/spec/cucumber/ast/table_spec.rb +38 -2
  81. data/spec/cucumber/ast/tree_walker_spec.rb +2 -2
  82. data/spec/cucumber/broadcaster_spec.rb +1 -1
  83. data/spec/cucumber/cli/configuration_spec.rb +32 -6
  84. data/spec/cucumber/cli/drb_client_spec.rb +2 -3
  85. data/spec/cucumber/cli/main_spec.rb +43 -43
  86. data/spec/cucumber/cli/options_spec.rb +28 -1
  87. data/spec/cucumber/cli/profile_loader_spec.rb +1 -1
  88. data/spec/cucumber/core_ext/proc_spec.rb +1 -1
  89. data/spec/cucumber/formatter/ansicolor_spec.rb +1 -1
  90. data/spec/cucumber/formatter/duration_spec.rb +1 -1
  91. data/spec/cucumber/formatter/html_spec.rb +3 -5
  92. data/spec/cucumber/formatter/junit_spec.rb +16 -2
  93. data/spec/cucumber/formatter/progress_spec.rb +1 -1
  94. data/spec/cucumber/formatter/spec_helper.rb +11 -12
  95. data/spec/cucumber/rb_support/rb_language_spec.rb +241 -28
  96. data/spec/cucumber/rb_support/rb_step_definition_spec.rb +33 -28
  97. data/spec/cucumber/rb_support/regexp_argument_matcher_spec.rb +1 -1
  98. data/spec/cucumber/step_match_spec.rb +11 -9
  99. data/spec/cucumber/wire_support/configuration_spec.rb +1 -1
  100. data/spec/cucumber/wire_support/connection_spec.rb +1 -1
  101. data/spec/cucumber/wire_support/wire_exception_spec.rb +1 -1
  102. data/spec/cucumber/wire_support/wire_language_spec.rb +1 -1
  103. data/spec/cucumber/wire_support/wire_packet_spec.rb +1 -1
  104. data/spec/cucumber/wire_support/wire_step_definition_spec.rb +1 -1
  105. data/spec/cucumber/world/pending_spec.rb +2 -2
  106. data/spec/spec_helper.rb +13 -20
  107. metadata +11 -222
  108. data/.gitignore +0 -20
  109. data/Caliper.yml +0 -4
  110. data/History.txt +0 -1552
  111. data/README.rdoc +0 -26
  112. data/VERSION.yml +0 -5
  113. data/examples/i18n/ro/features/suma.feature +0 -11
  114. data/features/announce.feature +0 -164
  115. data/features/around_hooks.feature +0 -232
  116. data/features/bug_371.feature +0 -32
  117. data/features/bug_464.feature +0 -16
  118. data/features/bug_475.feature +0 -42
  119. data/features/bug_585_tab_indentation.feature +0 -22
  120. data/features/bug_600.feature +0 -67
  121. data/features/call_steps_from_stepdefs.feature +0 -154
  122. data/features/cucumber_cli.feature +0 -591
  123. data/features/cucumber_cli_outlines.feature +0 -117
  124. data/features/default_snippets.feature +0 -42
  125. data/features/diffing.feature +0 -25
  126. data/features/drb_server_integration.feature +0 -174
  127. data/features/exception_in_after_block.feature +0 -127
  128. data/features/exception_in_after_step_block.feature +0 -104
  129. data/features/exception_in_before_block.feature +0 -98
  130. data/features/exclude_files.feature +0 -20
  131. data/features/expand.feature +0 -60
  132. data/features/html_formatter.feature +0 -8
  133. data/features/html_formatter/a.html +0 -582
  134. data/features/junit_formatter.feature +0 -88
  135. data/features/language_from_header.feature +0 -30
  136. data/features/language_help.feature +0 -78
  137. data/features/listener_debugger_formatter.feature +0 -42
  138. data/features/multiline_names.feature +0 -44
  139. data/features/negative_tagged_hooks.feature +0 -60
  140. data/features/post_configuration_hook.feature +0 -37
  141. data/features/profiles.feature +0 -126
  142. data/features/rake_task.feature +0 -152
  143. data/features/report_called_undefined_steps.feature +0 -34
  144. data/features/rerun_formatter.feature +0 -45
  145. data/features/simplest.feature +0 -11
  146. data/features/snippet.feature +0 -23
  147. data/features/snippets_when_using_star_keyword.feature +0 -36
  148. data/features/step_definitions/extra_steps.rb +0 -2
  149. data/features/step_definitions/simplest_steps.rb +0 -3
  150. data/features/step_definitions/wire_steps.rb +0 -32
  151. data/features/support/env.rb.simplest +0 -7
  152. data/features/support/fake_wire_server.rb +0 -77
  153. data/features/table_diffing.feature +0 -45
  154. data/features/table_mapping.feature +0 -34
  155. data/features/tag_logic.feature +0 -258
  156. data/features/transform.feature +0 -245
  157. data/features/unicode_table.feature +0 -35
  158. data/features/usage_and_stepdefs_formatter.feature +0 -169
  159. data/features/wire_protocol.feature +0 -332
  160. data/features/wire_protocol_table_diffing.feature +0 -119
  161. data/features/wire_protocol_tags.feature +0 -87
  162. data/features/wire_protocol_timeouts.feature +0 -63
  163. data/features/work_in_progress.feature +0 -156
  164. data/fixtures/json/features/pystring.feature +0 -8
  165. data/fixtures/self_test/features/background/background_tagged_before_on_outline.feature +0 -12
  166. data/fixtures/self_test/features/background/background_with_name.feature +0 -7
  167. data/fixtures/self_test/features/background/failing_background.feature +0 -12
  168. data/fixtures/self_test/features/background/failing_background_after_success.feature +0 -11
  169. data/fixtures/self_test/features/background/multiline_args_background.feature +0 -32
  170. data/fixtures/self_test/features/background/passing_background.feature +0 -10
  171. data/fixtures/self_test/features/background/pending_background.feature +0 -10
  172. data/fixtures/self_test/features/background/scenario_outline_failing_background.feature +0 -16
  173. data/fixtures/self_test/features/background/scenario_outline_passing_background.feature +0 -16
  174. data/gem_tasks/features.rake +0 -14
  175. data/gem_tasks/sdoc.rake +0 -12
  176. data/lib/cucumber/ast/py_string.rb +0 -80
  177. data/lib/cucumber/formatter/color_io.rb +0 -23
  178. data/lib/cucumber/formatter/tag_cloud.rb +0 -35
  179. data/spec/cucumber/ast/py_string_spec.rb +0 -40
  180. data/spec/cucumber/formatter/color_io_spec.rb +0 -29
  181. data/spec/cucumber/step_mother_spec.rb +0 -302
data/.rspec CHANGED
@@ -1 +1 @@
1
- --color
1
+ --color --backtrace
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License
2
2
 
3
- Copyright (c) 2008,2009 Aslak Hellesøy
3
+ Copyright (c) 2008,2009,2010,2011 Aslak Hellesøy
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
data/Rakefile CHANGED
@@ -1,58 +1,12 @@
1
1
  # encoding: utf-8
2
2
  require 'rubygems'
3
- require 'term/ansicolor'
4
- require 'rake'
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 => [:check_dependencies, :spec, :cucumber]
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(failure ? 1 : 0)
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 the gemspec command
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.5"
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{2010-07-14}
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
- ".gitignore",
24
- ".rspec",
25
- "Caliper.yml",
26
- "History.txt",
27
- "LICENSE",
28
- "README.rdoc",
29
- "Rakefile",
30
- "VERSION.yml",
31
- "bin/cucumber",
32
- "cucumber.gemspec",
33
- "cucumber.yml",
34
- "examples/i18n/README.textile",
35
- "examples/i18n/Rakefile",
36
- "examples/i18n/ar/Rakefile",
37
- "examples/i18n/ar/features/addition.feature",
38
- "examples/i18n/ar/features/step_definitons/calculator_steps.rb",
39
- "examples/i18n/ar/lib/calculator.rb",
40
- "examples/i18n/bg/Rakefile",
41
- "examples/i18n/bg/features/addition.feature",
42
- "examples/i18n/bg/features/consecutive_calculations.feature",
43
- "examples/i18n/bg/features/division.feature",
44
- "examples/i18n/bg/features/step_definitons/calculator_steps.rb",
45
- "examples/i18n/bg/features/support/env.rb",
46
- "examples/i18n/bg/features/support/world.rb",
47
- "examples/i18n/bg/lib/calculator.rb",
48
- "examples/i18n/ca/Rakefile",
49
- "examples/i18n/ca/features/step_definitons/calculator_steps.rb",
50
- "examples/i18n/ca/features/suma.feature",
51
- "examples/i18n/ca/lib/calculadora.rb",
52
- "examples/i18n/da/Rakefile",
53
- "examples/i18n/da/features/sammenlaegning.feature",
54
- "examples/i18n/da/features/step_definitons/lommeregner_steps.rb",
55
- "examples/i18n/da/lib/lommeregner.rb",
56
- "examples/i18n/de/.gitignore",
57
- "examples/i18n/de/Rakefile",
58
- "examples/i18n/de/features/addition.feature",
59
- "examples/i18n/de/features/division.feature",
60
- "examples/i18n/de/features/step_definitons/calculator_steps.rb",
61
- "examples/i18n/de/lib/calculator.rb",
62
- "examples/i18n/en-lol/Rakefile",
63
- "examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb",
64
- "examples/i18n/en-lol/features/stuffing.feature",
65
- "examples/i18n/en-lol/features/support/env.rb",
66
- "examples/i18n/en-lol/lib/basket.rb",
67
- "examples/i18n/en-lol/lib/belly.rb",
68
- "examples/i18n/en/.gitignore",
69
- "examples/i18n/en/Rakefile",
70
- "examples/i18n/en/features/addition.feature",
71
- "examples/i18n/en/features/division.feature",
72
- "examples/i18n/en/features/step_definitons/calculator_steps.rb",
73
- "examples/i18n/en/lib/calculator.rb",
74
- "examples/i18n/eo/.gitignore",
75
- "examples/i18n/eo/Rakefile",
76
- "examples/i18n/eo/features/adicio.feature",
77
- "examples/i18n/eo/features/divido.feature",
78
- "examples/i18n/eo/features/step_definitons/calculator_steps.rb",
79
- "examples/i18n/eo/lib/calculator.rb",
80
- "examples/i18n/es/Rakefile",
81
- "examples/i18n/es/features/adicion.feature",
82
- "examples/i18n/es/features/step_definitons/calculador_steps.rb",
83
- "examples/i18n/es/lib/calculador.rb",
84
- "examples/i18n/et/Rakefile",
85
- "examples/i18n/et/features/jagamine.feature",
86
- "examples/i18n/et/features/liitmine.feature",
87
- "examples/i18n/et/features/step_definitions/kalkulaator_steps.rb",
88
- "examples/i18n/et/lib/kalkulaator.rb",
89
- "examples/i18n/fi/.gitignore",
90
- "examples/i18n/fi/Rakefile",
91
- "examples/i18n/fi/features/jakolasku.feature",
92
- "examples/i18n/fi/features/step_definitons/laskin_steps.rb",
93
- "examples/i18n/fi/features/yhteenlasku.feature",
94
- "examples/i18n/fi/lib/laskin.rb",
95
- "examples/i18n/fr/Rakefile",
96
- "examples/i18n/fr/features/addition.feature",
97
- "examples/i18n/fr/features/addition2.feature",
98
- "examples/i18n/fr/features/step_definitions/calculatrice_steps.rb",
99
- "examples/i18n/fr/features/support/env.rb",
100
- "examples/i18n/fr/lib/calculatrice.rb",
101
- "examples/i18n/he/Rakefile",
102
- "examples/i18n/he/features/addition.feature",
103
- "examples/i18n/he/features/division.feature",
104
- "examples/i18n/he/features/step_definitons/calculator_steps.rb",
105
- "examples/i18n/he/lib/calculator.rb",
106
- "examples/i18n/hu/.gitignore",
107
- "examples/i18n/hu/Rakefile",
108
- "examples/i18n/hu/features/osszeadas.feature",
109
- "examples/i18n/hu/features/osztas.feature",
110
- "examples/i18n/hu/features/step_definitons/calculator_steps.rb",
111
- "examples/i18n/hu/lib/calculator.rb",
112
- "examples/i18n/id/.gitignore",
113
- "examples/i18n/id/Rakefile",
114
- "examples/i18n/id/features/addition.feature",
115
- "examples/i18n/id/features/division.feature",
116
- "examples/i18n/id/features/step_definitons/calculator_steps.rb",
117
- "examples/i18n/id/lib/calculator.rb",
118
- "examples/i18n/it/Rakefile",
119
- "examples/i18n/it/features/somma.feature",
120
- "examples/i18n/it/features/step_definitons/calcolatrice_steps.rb",
121
- "examples/i18n/it/lib/calcolatrice.rb",
122
- "examples/i18n/ja/.gitignore",
123
- "examples/i18n/ja/Rakefile",
124
- "examples/i18n/ja/features/addition.feature",
125
- "examples/i18n/ja/features/division.feature",
126
- "examples/i18n/ja/features/step_definitons/calculator_steps.rb",
127
- "examples/i18n/ja/features/support/env.rb",
128
- "examples/i18n/ja/lib/calculator.rb",
129
- "examples/i18n/ko/.gitignore",
130
- "examples/i18n/ko/Rakefile",
131
- "examples/i18n/ko/features/addition.feature",
132
- "examples/i18n/ko/features/division.feature",
133
- "examples/i18n/ko/features/step_definitons/calculator_steps.rb",
134
- "examples/i18n/ko/lib/calculator.rb",
135
- "examples/i18n/lt/.gitignore",
136
- "examples/i18n/lt/Rakefile",
137
- "examples/i18n/lt/features/addition.feature",
138
- "examples/i18n/lt/features/division.feature",
139
- "examples/i18n/lt/features/step_definitons/calculator_steps.rb",
140
- "examples/i18n/lt/lib/calculator.rb",
141
- "examples/i18n/lv/Rakefile",
142
- "examples/i18n/lv/features/addition.feature",
143
- "examples/i18n/lv/features/division.feature",
144
- "examples/i18n/lv/features/step_definitons/calculator_steps.rb",
145
- "examples/i18n/lv/lib/calculator.rb",
146
- "examples/i18n/no/Rakefile",
147
- "examples/i18n/no/features/step_definitons/kalkulator_steps.rb",
148
- "examples/i18n/no/features/summering.feature",
149
- "examples/i18n/no/features/support/env.rb",
150
- "examples/i18n/no/lib/kalkulator.rb",
151
- "examples/i18n/pl/.gitignore",
152
- "examples/i18n/pl/Rakefile",
153
- "examples/i18n/pl/features/addition.feature",
154
- "examples/i18n/pl/features/division.feature",
155
- "examples/i18n/pl/features/step_definitons/calculator_steps.rb",
156
- "examples/i18n/pl/features/support/env.rb",
157
- "examples/i18n/pl/lib/calculator.rb",
158
- "examples/i18n/pt/Rakefile",
159
- "examples/i18n/pt/features/adicao.feature",
160
- "examples/i18n/pt/features/step_definitions/calculadora_steps.rb",
161
- "examples/i18n/pt/features/support/env.rb",
162
- "examples/i18n/pt/lib/calculadora.rb",
163
- "examples/i18n/ro/Rakefile",
164
- "examples/i18n/ro/features/step_definitons/calculator_steps.rb",
165
- "examples/i18n/ro/features/suma.feature",
166
- "examples/i18n/ro/lib/calculator.rb",
167
- "examples/i18n/ru/Rakefile",
168
- "examples/i18n/ru/features/addition.feature",
169
- "examples/i18n/ru/features/consecutive_calculations.feature",
170
- "examples/i18n/ru/features/division.feature",
171
- "examples/i18n/ru/features/step_definitons/calculator_steps.rb",
172
- "examples/i18n/ru/features/support/env.rb",
173
- "examples/i18n/ru/features/support/world.rb",
174
- "examples/i18n/ru/lib/calculator.rb",
175
- "examples/i18n/sk/.gitignore",
176
- "examples/i18n/sk/Rakefile",
177
- "examples/i18n/sk/features/addition.feature",
178
- "examples/i18n/sk/features/division.feature",
179
- "examples/i18n/sk/features/step_definitons/calculator_steps.rb",
180
- "examples/i18n/sk/lib/calculator.rb",
181
- "examples/i18n/sr-Cyrl/Rakefile",
182
- "examples/i18n/sr-Cyrl/features/sabiranje.feature",
183
- "examples/i18n/sr-Cyrl/features/step_definitons/calculator_steps.rb",
184
- "examples/i18n/sr-Cyrl/features/support/env.rb",
185
- "examples/i18n/sr-Cyrl/lib/calculator.rb",
186
- "examples/i18n/sr-Latn/Rakefile",
187
- "examples/i18n/sr-Latn/features/sabiranje.feature",
188
- "examples/i18n/sr-Latn/features/step_definitons/calculator_steps.rb",
189
- "examples/i18n/sr-Latn/lib/calculator.rb",
190
- "examples/i18n/sv/Rakefile",
191
- "examples/i18n/sv/features/step_definitons/kalkulator_steps.rb",
192
- "examples/i18n/sv/features/summering.feature",
193
- "examples/i18n/sv/lib/kalkulator.rb",
194
- "examples/i18n/tr/.gitignore",
195
- "examples/i18n/tr/Rakefile",
196
- "examples/i18n/tr/features/bolme.feature",
197
- "examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb",
198
- "examples/i18n/tr/features/toplama.feature",
199
- "examples/i18n/tr/lib/hesap_makinesi.rb",
200
- "examples/i18n/uk/Rakefile",
201
- "examples/i18n/uk/features/addition.feature",
202
- "examples/i18n/uk/features/consecutive_calculations.feature",
203
- "examples/i18n/uk/features/division.feature",
204
- "examples/i18n/uk/features/step_definitons/calculator_steps.rb",
205
- "examples/i18n/uk/features/support/env.rb",
206
- "examples/i18n/uk/features/support/world.rb",
207
- "examples/i18n/uk/lib/calculator.rb",
208
- "examples/i18n/uz/Rakefile",
209
- "examples/i18n/uz/features/addition.feature",
210
- "examples/i18n/uz/features/consecutive_calculations.feature",
211
- "examples/i18n/uz/features/division.feature",
212
- "examples/i18n/uz/features/step_definitons/calculator_steps.rb",
213
- "examples/i18n/uz/features/support/env.rb",
214
- "examples/i18n/uz/features/support/world.rb",
215
- "examples/i18n/uz/lib/calculator.rb",
216
- "examples/i18n/zh-CN/Rakefile",
217
- "examples/i18n/zh-CN/features/addition.feature",
218
- "examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb",
219
- "examples/i18n/zh-CN/lib/calculator.rb",
220
- "examples/i18n/zh-TW/.gitignore",
221
- "examples/i18n/zh-TW/Rakefile",
222
- "examples/i18n/zh-TW/features/addition.feature",
223
- "examples/i18n/zh-TW/features/division.feature",
224
- "examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb",
225
- "examples/i18n/zh-TW/lib/calculator.rb",
226
- "examples/python/README.textile",
227
- "examples/python/Rakefile",
228
- "examples/python/features/fibonacci.feature",
229
- "examples/python/features/step_definitions/fib_steps.py",
230
- "examples/python/lib/.gitignore",
231
- "examples/python/lib/fib.py",
232
- "examples/ramaze/README.textile",
233
- "examples/ramaze/Rakefile",
234
- "examples/ramaze/app.rb",
235
- "examples/ramaze/features/add.feature",
236
- "examples/ramaze/features/step_definitions/add_steps.rb",
237
- "examples/ramaze/features/support/env.rb",
238
- "examples/ramaze/layout/default.html.erb",
239
- "examples/ramaze/view/index.html.erb",
240
- "examples/rspec_doubles/Rakefile",
241
- "examples/rspec_doubles/features/mocking.feature",
242
- "examples/rspec_doubles/features/step_definitions/calvin_steps.rb",
243
- "examples/rspec_doubles/features/support/env.rb",
244
- "examples/ruby2python/README.textile",
245
- "examples/ruby2python/Rakefile",
246
- "examples/ruby2python/features/fibonacci.feature",
247
- "examples/ruby2python/features/step_definitions/fib_steps.rb",
248
- "examples/ruby2python/features/support/env.rb",
249
- "examples/ruby2python/lib/.gitignore",
250
- "examples/ruby2python/lib/fib.py",
251
- "examples/sinatra/README.textile",
252
- "examples/sinatra/Rakefile",
253
- "examples/sinatra/app.rb",
254
- "examples/sinatra/features/add.feature",
255
- "examples/sinatra/features/step_definitions/add_steps.rb",
256
- "examples/sinatra/features/support/env.rb",
257
- "examples/sinatra/views/add.erb",
258
- "examples/sinatra/views/layout.erb",
259
- "examples/tcl/README.textile",
260
- "examples/tcl/Rakefile",
261
- "examples/tcl/features/fibonnacci.feature",
262
- "examples/tcl/features/step_definitions/fib_steps.rb",
263
- "examples/tcl/features/support/env.rb",
264
- "examples/tcl/src/fib.tcl",
265
- "examples/test_unit/Rakefile",
266
- "examples/test_unit/features/step_definitions/test_unit_steps.rb",
267
- "examples/test_unit/features/test_unit.feature",
268
- "examples/v8/Rakefile",
269
- "examples/v8/features/fibonacci.feature",
270
- "examples/v8/features/step_definitions/fib_steps.js",
271
- "examples/v8/features/support/env.js",
272
- "examples/v8/lib/fibonacci.js",
273
- "examples/watir/.gitignore",
274
- "examples/watir/README.textile",
275
- "examples/watir/Rakefile",
276
- "examples/watir/cucumber.yml",
277
- "examples/watir/features/search.feature",
278
- "examples/watir/features/step_definitions/search_steps.rb",
279
- "examples/watir/features/support/env.rb",
280
- "examples/watir/features/support/screenshots.rb",
281
- "features/announce.feature",
282
- "features/around_hooks.feature",
283
- "features/background.feature",
284
- "features/bug_371.feature",
285
- "features/bug_464.feature",
286
- "features/bug_475.feature",
287
- "features/bug_585_tab_indentation.feature",
288
- "features/bug_600.feature",
289
- "features/call_steps_from_stepdefs.feature",
290
- "features/cucumber_cli.feature",
291
- "features/cucumber_cli_outlines.feature",
292
- "features/custom_formatter.feature",
293
- "features/default_snippets.feature",
294
- "features/diffing.feature",
295
- "features/drb_server_integration.feature",
296
- "features/exception_in_after_block.feature",
297
- "features/exception_in_after_step_block.feature",
298
- "features/exception_in_before_block.feature",
299
- "features/exclude_files.feature",
300
- "features/expand.feature",
301
- "features/html_formatter.feature",
302
- "features/html_formatter/a.html",
303
- "features/json_formatter.feature",
304
- "features/junit_formatter.feature",
305
- "features/language_from_header.feature",
306
- "features/language_help.feature",
307
- "features/listener_debugger_formatter.feature",
308
- "features/multiline_names.feature",
309
- "features/negative_tagged_hooks.feature",
310
- "features/post_configuration_hook.feature",
311
- "features/profiles.feature",
312
- "features/rake_task.feature",
313
- "features/report_called_undefined_steps.feature",
314
- "features/rerun_formatter.feature",
315
- "features/simplest.feature",
316
- "features/snippet.feature",
317
- "features/snippets_when_using_star_keyword.feature",
318
- "features/step_definitions/cucumber_steps.rb",
319
- "features/step_definitions/extra_steps.rb",
320
- "features/step_definitions/simplest_steps.rb",
321
- "features/step_definitions/wire_steps.rb",
322
- "features/support/env.rb",
323
- "features/support/env.rb.simplest",
324
- "features/support/fake_wire_server.rb",
325
- "features/table_diffing.feature",
326
- "features/table_mapping.feature",
327
- "features/tag_logic.feature",
328
- "features/transform.feature",
329
- "features/unicode_table.feature",
330
- "features/usage_and_stepdefs_formatter.feature",
331
- "features/wire_protocol.feature",
332
- "features/wire_protocol_table_diffing.feature",
333
- "features/wire_protocol_tags.feature",
334
- "features/wire_protocol_timeouts.feature",
335
- "features/work_in_progress.feature",
336
- "fixtures/json/features/background.feature",
337
- "fixtures/json/features/embed.feature",
338
- "fixtures/json/features/one_passing_one_failing.feature",
339
- "fixtures/json/features/pystring.feature",
340
- "fixtures/json/features/step_definitions/steps.rb",
341
- "fixtures/json/features/tables.feature",
342
- "fixtures/junit/features/one_passing_one_failing.feature",
343
- "fixtures/junit/features/pending.feature",
344
- "fixtures/junit/features/step_definitions/steps.rb",
345
- "fixtures/self_test/.gitignore",
346
- "fixtures/self_test/README.textile",
347
- "fixtures/self_test/Rakefile",
348
- "fixtures/self_test/features/background/background_tagged_before_on_outline.feature",
349
- "fixtures/self_test/features/background/background_with_name.feature",
350
- "fixtures/self_test/features/background/failing_background.feature",
351
- "fixtures/self_test/features/background/failing_background_after_success.feature",
352
- "fixtures/self_test/features/background/multiline_args_background.feature",
353
- "fixtures/self_test/features/background/passing_background.feature",
354
- "fixtures/self_test/features/background/pending_background.feature",
355
- "fixtures/self_test/features/background/scenario_outline_failing_background.feature",
356
- "fixtures/self_test/features/background/scenario_outline_passing_background.feature",
357
- "fixtures/self_test/features/call_undefined_step_from_step_def.feature",
358
- "fixtures/self_test/features/failing_expectation.feature",
359
- "fixtures/self_test/features/lots_of_undefined.feature",
360
- "fixtures/self_test/features/multiline_name.feature",
361
- "fixtures/self_test/features/outline_sample.feature",
362
- "fixtures/self_test/features/sample.feature",
363
- "fixtures/self_test/features/search_sample.feature",
364
- "fixtures/self_test/features/step_definitions/sample_steps.rb",
365
- "fixtures/self_test/features/support/env.rb",
366
- "fixtures/self_test/features/tags_sample.feature",
367
- "fixtures/self_test/features/tons_of_cukes.feature",
368
- "fixtures/self_test/features/undefined_multiline_args.feature",
369
- "fixtures/self_test/list-of-features.txt",
370
- "fixtures/steps_library/features/step_definitions/steps_lib1.rb",
371
- "fixtures/steps_library/features/step_definitions/steps_lib2.rb",
372
- "fixtures/tickets/Rakefile",
373
- "fixtures/tickets/features.html",
374
- "fixtures/tickets/features/172.feature",
375
- "fixtures/tickets/features/177/1.feature",
376
- "fixtures/tickets/features/177/2.feature",
377
- "fixtures/tickets/features/177/3.feature",
378
- "fixtures/tickets/features/180.feature",
379
- "fixtures/tickets/features/229/tagged_hooks.feature",
380
- "fixtures/tickets/features/229/tagged_hooks.rb",
381
- "fixtures/tickets/features/236.feature",
382
- "fixtures/tickets/features/241.feature",
383
- "fixtures/tickets/features/246.feature",
384
- "fixtures/tickets/features/248.feature",
385
- "fixtures/tickets/features/270/back.feature",
386
- "fixtures/tickets/features/270/back.steps.rb",
387
- "fixtures/tickets/features/272/hooks.feature",
388
- "fixtures/tickets/features/272/hooks_steps.rb",
389
- "fixtures/tickets/features/279/py_string_indent.feature",
390
- "fixtures/tickets/features/279/py_string_indent.steps.rb",
391
- "fixtures/tickets/features/279/wrong.feature_",
392
- "fixtures/tickets/features/301/filter_background_tagged_hooks.feature",
393
- "fixtures/tickets/features/301/filter_background_tagged_hooks_steps.rb",
394
- "fixtures/tickets/features/306/only_background.feature",
395
- "fixtures/tickets/features/around_timeout.feature",
396
- "fixtures/tickets/features/gherkin_67.feature",
397
- "fixtures/tickets/features/gherkin_68.feature",
398
- "fixtures/tickets/features/half_manual.feature",
399
- "fixtures/tickets/features/lib/eatting_machine.rb",
400
- "fixtures/tickets/features/lib/pantry.rb",
401
- "fixtures/tickets/features/scenario_outline.feature",
402
- "fixtures/tickets/features/step_definitons/246_steps.rb",
403
- "fixtures/tickets/features/step_definitons/248_steps.rb",
404
- "fixtures/tickets/features/step_definitons/around_timeout_steps.rb",
405
- "fixtures/tickets/features/step_definitons/half_manual_steps.rb",
406
- "fixtures/tickets/features/step_definitons/scenario_outline_steps.rb",
407
- "fixtures/tickets/features/step_definitons/tickets_steps.rb",
408
- "fixtures/tickets/features/table_diffing.feature",
409
- "fixtures/tickets/features/tickets.feature",
410
- "gem_tasks/contributors.rake",
411
- "gem_tasks/environment.rake",
412
- "gem_tasks/examples.rake",
413
- "gem_tasks/features.rake",
414
- "gem_tasks/fix_cr_lf.rake",
415
- "gem_tasks/flog.rake",
416
- "gem_tasks/rspec.rake",
417
- "gem_tasks/sass.rake",
418
- "gem_tasks/sdoc.rake",
419
- "lib/README.rdoc",
420
- "lib/autotest/cucumber.rb",
421
- "lib/autotest/cucumber_mixin.rb",
422
- "lib/autotest/cucumber_rails.rb",
423
- "lib/autotest/cucumber_rails_rspec.rb",
424
- "lib/autotest/cucumber_rails_rspec2.rb",
425
- "lib/autotest/cucumber_rspec.rb",
426
- "lib/autotest/cucumber_rspec2.rb",
427
- "lib/autotest/discover.rb",
428
- "lib/cucumber.rb",
429
- "lib/cucumber/ast.rb",
430
- "lib/cucumber/ast/background.rb",
431
- "lib/cucumber/ast/comment.rb",
432
- "lib/cucumber/ast/examples.rb",
433
- "lib/cucumber/ast/feature.rb",
434
- "lib/cucumber/ast/feature_element.rb",
435
- "lib/cucumber/ast/features.rb",
436
- "lib/cucumber/ast/outline_table.rb",
437
- "lib/cucumber/ast/py_string.rb",
438
- "lib/cucumber/ast/scenario.rb",
439
- "lib/cucumber/ast/scenario_outline.rb",
440
- "lib/cucumber/ast/step.rb",
441
- "lib/cucumber/ast/step_collection.rb",
442
- "lib/cucumber/ast/step_invocation.rb",
443
- "lib/cucumber/ast/table.rb",
444
- "lib/cucumber/ast/tags.rb",
445
- "lib/cucumber/ast/tree_walker.rb",
446
- "lib/cucumber/ast/visitor.rb",
447
- "lib/cucumber/broadcaster.rb",
448
- "lib/cucumber/cli/configuration.rb",
449
- "lib/cucumber/cli/drb_client.rb",
450
- "lib/cucumber/cli/main.rb",
451
- "lib/cucumber/cli/options.rb",
452
- "lib/cucumber/cli/profile_loader.rb",
453
- "lib/cucumber/constantize.rb",
454
- "lib/cucumber/core_ext/instance_exec.rb",
455
- "lib/cucumber/core_ext/proc.rb",
456
- "lib/cucumber/core_ext/string.rb",
457
- "lib/cucumber/feature_file.rb",
458
- "lib/cucumber/formatter/ansicolor.rb",
459
- "lib/cucumber/formatter/color_io.rb",
460
- "lib/cucumber/formatter/console.rb",
461
- "lib/cucumber/formatter/cucumber.css",
462
- "lib/cucumber/formatter/cucumber.sass",
463
- "lib/cucumber/formatter/debug.rb",
464
- "lib/cucumber/formatter/duration.rb",
465
- "lib/cucumber/formatter/html.rb",
466
- "lib/cucumber/formatter/io.rb",
467
- "lib/cucumber/formatter/jquery-min.js",
468
- "lib/cucumber/formatter/json.rb",
469
- "lib/cucumber/formatter/json_pretty.rb",
470
- "lib/cucumber/formatter/junit.rb",
471
- "lib/cucumber/formatter/ordered_xml_markup.rb",
472
- "lib/cucumber/formatter/pdf.rb",
473
- "lib/cucumber/formatter/pretty.rb",
474
- "lib/cucumber/formatter/progress.rb",
475
- "lib/cucumber/formatter/rerun.rb",
476
- "lib/cucumber/formatter/stepdefs.rb",
477
- "lib/cucumber/formatter/steps.rb",
478
- "lib/cucumber/formatter/summary.rb",
479
- "lib/cucumber/formatter/tag_cloud.rb",
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.5.
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.3.7}
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