cucumber 1.3.20 → 2.0.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (404) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.rspec +1 -1
  4. data/.travis.yml +1 -2
  5. data/CONTRIBUTING.md +9 -0
  6. data/Gemfile +9 -2
  7. data/History.md +26 -17
  8. data/LICENSE +2 -2
  9. data/README.md +4 -4
  10. data/Rakefile +12 -0
  11. data/bin/cucumber +1 -5
  12. data/bin/cuke +60 -0
  13. data/cucumber.gemspec +10 -15
  14. data/cucumber.yml +14 -26
  15. data/examples/i18n/ar/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  16. data/examples/i18n/bg/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  17. data/examples/i18n/ca/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  18. data/examples/i18n/cs/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  19. data/examples/i18n/da/features/{step_definitons → step_definitions}/lommeregner_steps.rb +0 -0
  20. data/examples/i18n/de/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  21. data/examples/{ramaze → i18n/el}/Rakefile +1 -1
  22. data/examples/i18n/el/features/addition.feature +17 -0
  23. data/examples/i18n/el/features/division.feature +10 -0
  24. data/examples/i18n/el/features/step_definitions/calculator_steps.rb +24 -0
  25. data/examples/i18n/el/lib/calculator.rb +14 -0
  26. data/examples/i18n/en/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  27. data/examples/i18n/eo/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  28. data/examples/i18n/es/features/{step_definitons → step_definitions}/calculador_steps.rb +0 -0
  29. data/examples/i18n/fi/features/{step_definitons → step_definitions}/laskin_steps.rb +0 -0
  30. data/examples/i18n/fr/Rakefile +3 -1
  31. data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +2 -2
  32. data/examples/i18n/he/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  33. data/examples/i18n/hi/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  34. data/examples/i18n/hu/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  35. data/examples/i18n/id/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  36. data/examples/i18n/it/features/{step_definitons → step_definitions}/calcolatrice_steps.rb +0 -0
  37. data/examples/i18n/ja/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  38. data/examples/i18n/ko/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  39. data/examples/i18n/lt/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  40. data/examples/i18n/lv/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  41. data/examples/i18n/no/features/{step_definitons → step_definitions}/kalkulator_steps.rb +0 -0
  42. data/examples/i18n/pl/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  43. data/examples/i18n/ro/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  44. data/examples/i18n/ru/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  45. data/examples/i18n/sk/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  46. data/examples/i18n/sr-Cyrl/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  47. data/examples/i18n/sr-Latn/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  48. data/examples/i18n/sv/features/{step_definitons → step_definitions}/kalkulator_steps.rb +0 -0
  49. data/examples/i18n/tr/features/{step_definitons → step_definitions}/hesap_makinesi_adimlari.rb +0 -0
  50. data/examples/i18n/uk/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  51. data/examples/i18n/uz/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  52. data/examples/i18n/zh-CN/features/{step_definitons → step_definitions}/calculator_steps.rb +4 -4
  53. data/examples/i18n/zh-TW/features/{step_definitons → step_definitions}/calculator_steps.rb +0 -0
  54. data/{legacy_features → features/docs}/api/list_step_defs_as_json.feature +14 -14
  55. data/{legacy_features → features/docs}/api/run_cli_main_with_existing_runtime.feature +5 -10
  56. data/features/{backtraces.feature → docs/cli/backtraces.feature} +2 -2
  57. data/features/docs/cli/dry_run.feature +25 -0
  58. data/features/docs/cli/exclude_files.feature +19 -0
  59. data/features/docs/cli/execute_with_tag_filter.feature +117 -0
  60. data/features/docs/cli/randomize.feature +46 -0
  61. data/features/docs/cli/require.feature +27 -0
  62. data/features/docs/cli/run_scenarios_matching_name.feature +104 -0
  63. data/features/docs/cli/run_specific_scenarios.feature +113 -0
  64. data/features/docs/cli/showing_differences.feature +43 -0
  65. data/features/docs/cli/specifying_multiple_formatters.feature +44 -0
  66. data/features/docs/cli/strict_mode.feature +41 -0
  67. data/features/{nested_steps.feature → docs/defining_steps/nested_steps.feature} +3 -5
  68. data/features/{nested_steps_i18n.feature → docs/defining_steps/nested_steps_i18n.feature} +0 -2
  69. data/features/{nested_steps_with_second_arg.feature → docs/defining_steps/nested_steps_with_second_arg.feature} +0 -0
  70. data/features/{step_definitions.feature → docs/defining_steps/one_line_step_definitions.feature} +3 -3
  71. data/features/docs/defining_steps/printing_messages.feature +147 -0
  72. data/features/docs/defining_steps/skip_scenario.feature +33 -0
  73. data/features/docs/defining_steps/snippets.feature +41 -0
  74. data/{legacy_features → features/docs/defining_steps}/table_diffing.feature +15 -15
  75. data/features/{transforms.feature → docs/defining_steps/transforms.feature} +2 -2
  76. data/{legacy_features/exception_in_after_block.feature → features/docs/exception_in_after_hook.feature} +25 -26
  77. data/{legacy_features/exception_in_after_step_block.feature → features/docs/exception_in_after_step_hook.feature} +21 -24
  78. data/{legacy_features/exception_in_before_block.feature → features/docs/exception_in_before_hook.feature} +18 -20
  79. data/features/{custom_formatter.feature → docs/extending_cucumber/custom_formatter.feature} +3 -8
  80. data/features/{formatter_callbacks.feature → docs/extending_cucumber/formatter_callbacks.feature} +185 -4
  81. data/{legacy_features/listener_debugger_formatter.feature → features/docs/formatters/debug_formatter.feature} +13 -15
  82. data/features/{formatter_step_file_colon_line.feature → docs/formatters/formatter_step_file_colon_line.feature} +2 -4
  83. data/features/{html_formatter.feature → docs/formatters/html_formatter.feature} +10 -14
  84. data/features/{json_formatter.feature → docs/formatters/json_formatter.feature} +109 -247
  85. data/features/docs/formatters/junit_formatter.feature +275 -0
  86. data/features/{pretty_formatter.feature → docs/formatters/pretty_formatter.feature} +1 -1
  87. data/features/{progress_formatter.feature → docs/formatters/progress_formatter.feature} +1 -1
  88. data/features/docs/formatters/rerun_formatter.feature +135 -0
  89. data/features/docs/formatters/usage_formatter.feature +102 -0
  90. data/features/docs/getting_started.feature +27 -0
  91. data/features/{background.feature → docs/gherkin/background.feature} +149 -91
  92. data/features/{doc_strings.feature → docs/gherkin/doc_strings.feature} +1 -0
  93. data/features/docs/gherkin/expand_option_for_outlines.feature +46 -0
  94. data/features/docs/gherkin/language_from_header.feature +32 -0
  95. data/features/docs/gherkin/outlines.feature +154 -0
  96. data/features/docs/gherkin/unicode_table.feature +32 -0
  97. data/features/docs/gherkin/using_descriptions.feature +88 -0
  98. data/features/docs/gherkin/using_star_notation.feature +37 -0
  99. data/features/{iso-8859-1.feature → docs/iso-8859-1.feature} +0 -0
  100. data/{legacy_features → features/docs}/post_configuration_hook.feature +17 -18
  101. data/{legacy_features → features/docs}/profiles.feature +30 -36
  102. data/{legacy_features → features/docs}/rake_task.feature +30 -41
  103. data/features/{raketask.feature → docs/raketask.feature} +6 -13
  104. data/features/docs/report_called_undefined_steps.feature +57 -0
  105. data/{legacy_features → features/docs}/wire_protocol.feature +36 -31
  106. data/{legacy_features → features/docs}/wire_protocol_erb.feature +5 -6
  107. data/{legacy_features → features/docs}/wire_protocol_table_diffing.feature +14 -12
  108. data/{legacy_features → features/docs}/wire_protocol_tags.feature +6 -7
  109. data/{legacy_features → features/docs}/wire_protocol_timeouts.feature +6 -6
  110. data/{legacy_features → features/docs}/work_in_progress.feature +52 -54
  111. data/{legacy_features → features/docs/writing_support_code}/around_hooks.feature +25 -28
  112. data/features/docs/writing_support_code/before_hook.feature +61 -0
  113. data/features/docs/writing_support_code/hook_order.feature +61 -0
  114. data/features/{load_path.feature → docs/writing_support_code/load_path.feature} +3 -0
  115. data/features/docs/writing_support_code/state.feature +32 -0
  116. data/features/{tagged_hooks.feature → docs/writing_support_code/tagged_hooks.feature} +11 -13
  117. data/features/lib/step_definitions/aruba_steps.rb +22 -0
  118. data/features/lib/step_definitions/cucumber_steps.rb +50 -0
  119. data/features/{step_definitions → lib/step_definitions}/iso-8859-1_steps.rb +3 -15
  120. data/features/lib/step_definitions/json_steps.rb +7 -0
  121. data/features/lib/step_definitions/junit_steps.rb +13 -0
  122. data/features/lib/step_definitions/language_steps.rb +4 -5
  123. data/features/lib/step_definitions/profile_steps.rb +15 -0
  124. data/features/lib/step_definitions/ruby_steps.rb +3 -0
  125. data/{legacy_features → features/lib}/step_definitions/wire_steps.rb +16 -9
  126. data/features/lib/support/env.rb +21 -0
  127. data/{legacy_features → features/lib}/support/fake_wire_server.rb +0 -0
  128. data/features/{support → lib/support}/feature_factory.rb +1 -1
  129. data/features/lib/support/normalise_output.rb +33 -0
  130. data/gem_tasks/cov.rake +5 -0
  131. data/gem_tasks/cucumber.rake +1 -10
  132. data/gem_tasks/rspec.rake +0 -2
  133. data/gem_tasks/yard.rake +4 -1
  134. data/lib/cucumber.rb +1 -3
  135. data/lib/cucumber/cli/configuration.rb +30 -25
  136. data/lib/cucumber/cli/main.rb +13 -25
  137. data/lib/cucumber/cli/options.rb +15 -57
  138. data/lib/cucumber/configuration.rb +4 -0
  139. data/lib/cucumber/constantize.rb +7 -6
  140. data/lib/cucumber/core_ext/instance_exec.rb +7 -38
  141. data/lib/cucumber/core_ext/proc.rb +1 -1
  142. data/lib/cucumber/errors.rb +3 -1
  143. data/lib/cucumber/file_specs.rb +35 -0
  144. data/lib/cucumber/formatter/console.rb +32 -21
  145. data/lib/cucumber/formatter/debug.rb +5 -0
  146. data/lib/cucumber/formatter/gherkin_formatter_adapter.rb +8 -38
  147. data/lib/cucumber/formatter/html.rb +29 -21
  148. data/lib/cucumber/formatter/junit.rb +10 -7
  149. data/lib/cucumber/formatter/pretty.rb +2 -8
  150. data/lib/cucumber/formatter/rerun.rb +2 -3
  151. data/lib/cucumber/formatter/unicode.rb +8 -21
  152. data/lib/cucumber/formatter/usage.rb +65 -2
  153. data/lib/cucumber/language_support/language_methods.rb +1 -1
  154. data/lib/cucumber/mappings.rb +212 -0
  155. data/lib/cucumber/multiline_argument.rb +115 -0
  156. data/lib/cucumber/platform.rb +21 -22
  157. data/lib/cucumber/rake/task.rb +3 -54
  158. data/lib/cucumber/rb_support/rb_language.rb +2 -5
  159. data/lib/cucumber/rb_support/rb_world.rb +14 -19
  160. data/lib/cucumber/rb_support/snippet.rb +60 -19
  161. data/lib/cucumber/reports/legacy_formatter.rb +1279 -0
  162. data/lib/cucumber/runtime.rb +176 -26
  163. data/lib/cucumber/runtime/for_programming_languages.rb +10 -4
  164. data/lib/cucumber/runtime/gated_receiver.rb +21 -0
  165. data/lib/cucumber/runtime/support_code.rb +9 -7
  166. data/lib/cucumber/runtime/tag_limits.rb +15 -0
  167. data/lib/cucumber/runtime/tag_limits/filter.rb +31 -0
  168. data/lib/cucumber/runtime/tag_limits/test_case_index.rb +29 -0
  169. data/lib/cucumber/runtime/tag_limits/verifier.rb +57 -0
  170. data/lib/cucumber/runtime/user_interface.rb +4 -0
  171. data/lib/cucumber/step_match.rb +3 -3
  172. data/lib/cucumber/term/ansicolor.rb +1 -9
  173. data/lib/cucumber/wire_support/wire_language.rb +23 -9
  174. data/lib/cucumber/wire_support/wire_packet.rb +1 -1
  175. data/lib/cucumber/wire_support/wire_protocol/requests.rb +13 -5
  176. data/lib/cucumber/wire_support/wire_step_definition.rb +1 -8
  177. data/spec/cucumber/cli/configuration_spec.rb +151 -150
  178. data/spec/cucumber/cli/main_spec.rb +36 -99
  179. data/spec/cucumber/cli/options_spec.rb +238 -272
  180. data/spec/cucumber/cli/profile_loader_spec.rb +9 -8
  181. data/spec/cucumber/configuration_spec.rb +3 -3
  182. data/spec/cucumber/constantize_spec.rb +2 -1
  183. data/spec/cucumber/core_ext/proc_spec.rb +32 -43
  184. data/spec/cucumber/file_specs_spec.rb +41 -0
  185. data/spec/cucumber/formatter/ansicolor_spec.rb +11 -10
  186. data/spec/cucumber/formatter/debug_spec.rb +569 -0
  187. data/spec/cucumber/formatter/duration_spec.rb +6 -6
  188. data/spec/cucumber/formatter/html_spec.rb +53 -62
  189. data/spec/cucumber/formatter/interceptor_spec.rb +38 -31
  190. data/spec/cucumber/formatter/junit_spec.rb +34 -28
  191. data/spec/cucumber/formatter/pretty_spec.rb +238 -52
  192. data/spec/cucumber/formatter/progress_spec.rb +2 -2
  193. data/spec/cucumber/formatter/spec_helper.rb +23 -17
  194. data/spec/cucumber/rake/forked_spec.rb +13 -22
  195. data/spec/cucumber/rb_support/rb_language_spec.rb +76 -67
  196. data/spec/cucumber/rb_support/rb_step_definition_spec.rb +63 -42
  197. data/spec/cucumber/rb_support/rb_transform_spec.rb +4 -3
  198. data/spec/cucumber/rb_support/regexp_argument_matcher_spec.rb +6 -4
  199. data/spec/cucumber/rb_support/snippet_spec.rb +42 -33
  200. data/spec/cucumber/reports/legacy_formatter_spec.rb +1750 -0
  201. data/spec/cucumber/runtime/for_programming_languages_spec.rb +11 -10
  202. data/spec/cucumber/runtime/gated_receiver_spec.rb +47 -0
  203. data/spec/cucumber/runtime/results_spec.rb +33 -26
  204. data/spec/cucumber/runtime/support_code_spec.rb +29 -29
  205. data/spec/cucumber/runtime/tag_limits/filter_spec.rb +59 -0
  206. data/spec/cucumber/runtime/tag_limits/test_case_index_spec.rb +38 -0
  207. data/spec/cucumber/runtime/tag_limits/verifier_spec.rb +57 -0
  208. data/spec/cucumber/runtime_spec.rb +39 -34
  209. data/spec/cucumber/step_match_spec.rb +30 -20
  210. data/spec/cucumber/wire_support/configuration_spec.rb +8 -5
  211. data/spec/cucumber/wire_support/connection_spec.rb +12 -8
  212. data/spec/cucumber/wire_support/wire_exception_spec.rb +14 -8
  213. data/spec/cucumber/wire_support/wire_language_spec.rb +8 -9
  214. data/spec/cucumber/wire_support/wire_packet_spec.rb +17 -13
  215. data/spec/cucumber/world/pending_spec.rb +36 -36
  216. data/spec/simplecov_setup.rb +18 -0
  217. data/spec/spec_helper.rb +3 -9
  218. metadata +298 -507
  219. data/.gitattributes +0 -1
  220. data/.ruby-version +0 -1
  221. data/examples/python/README.textile +0 -8
  222. data/examples/python/Rakefile +0 -4
  223. data/examples/python/features/fibonacci.feature +0 -19
  224. data/examples/python/features/step_definitions/fib_steps.py +0 -11
  225. data/examples/python/lib/fib.py +0 -7
  226. data/examples/ramaze/README.textile +0 -7
  227. data/examples/ramaze/app.rb +0 -21
  228. data/examples/ramaze/features/add.feature +0 -11
  229. data/examples/ramaze/features/step_definitions/add_steps.rb +0 -15
  230. data/examples/ramaze/features/support/env.rb +0 -32
  231. data/examples/ramaze/layout/default.html.erb +0 -8
  232. data/examples/ramaze/view/index.html.erb +0 -5
  233. data/examples/ruby2python/README.textile +0 -8
  234. data/examples/ruby2python/Rakefile +0 -4
  235. data/examples/ruby2python/features/fibonacci.feature +0 -19
  236. data/examples/ruby2python/features/step_definitions/fib_steps.rb +0 -7
  237. data/examples/ruby2python/features/support/env.rb +0 -21
  238. data/examples/ruby2python/lib/fib.py +0 -7
  239. data/examples/v8/Rakefile +0 -6
  240. data/examples/v8/features/fibonacci.feature +0 -43
  241. data/examples/v8/features/step_definitions/fib_steps.js +0 -49
  242. data/examples/v8/features/support/env.js +0 -14
  243. data/examples/v8/lib/fibonacci.js +0 -19
  244. data/features/.cucumber/stepdefs.json +0 -722
  245. data/features/assertions.feature +0 -73
  246. data/features/autoformat_profile_output.feature +0 -23
  247. data/features/before_hook.feature +0 -43
  248. data/features/bootstrap.feature +0 -26
  249. data/features/drb_server_integration.feature +0 -63
  250. data/features/execute_with_tag_filter.feature +0 -63
  251. data/features/parsing.feature +0 -18
  252. data/features/rerun_formatter.feature +0 -99
  253. data/features/run_specific_scenarios.feature +0 -47
  254. data/features/stats_formatters.feature +0 -73
  255. data/features/step_definitions/cucumber-features/cucumber_ruby_mappings.rb +0 -197
  256. data/features/step_definitions/cucumber_steps.rb +0 -57
  257. data/features/step_definitions/drb_steps.rb +0 -3
  258. data/features/support/env.rb +0 -57
  259. data/fixtures/json/features/background.feature +0 -7
  260. data/fixtures/json/features/embed.feature +0 -4
  261. data/fixtures/json/features/one_passing_one_failing.feature +0 -11
  262. data/fixtures/json/features/step_definitions/steps.rb +0 -32
  263. data/fixtures/json/features/tables.feature +0 -13
  264. data/fixtures/junit/features/one_passing_one_failing.feature +0 -8
  265. data/fixtures/junit/features/pending.feature +0 -7
  266. data/fixtures/junit/features/scenario_outline.feature +0 -9
  267. data/fixtures/junit/features/some_subdirectory/one_passing_one_failing.feature +0 -8
  268. data/fixtures/junit/features/step_definitions/steps.rb +0 -11
  269. data/fixtures/self_test/README.textile +0 -6
  270. data/fixtures/self_test/Rakefile +0 -6
  271. data/fixtures/self_test/features/call_undefined_step_from_step_def.feature +0 -7
  272. data/fixtures/self_test/features/failing_expectation.feature +0 -4
  273. data/fixtures/self_test/features/lots_of_undefined.feature +0 -8
  274. data/fixtures/self_test/features/multiline_name.feature +0 -27
  275. data/fixtures/self_test/features/outline_sample.feature +0 -15
  276. data/fixtures/self_test/features/sample.feature +0 -21
  277. data/fixtures/self_test/features/search_sample.feature +0 -32
  278. data/fixtures/self_test/features/step_definitions/sample_steps.rb +0 -84
  279. data/fixtures/self_test/features/support/bubble_256x256.png +0 -0
  280. data/fixtures/self_test/features/support/env.rb +0 -26
  281. data/fixtures/self_test/features/tags_sample.feature +0 -17
  282. data/fixtures/self_test/features/tons_of_cukes.feature +0 -52
  283. data/fixtures/self_test/features/undefined_multiline_args.feature +0 -12
  284. data/fixtures/self_test/list-of-features.txt +0 -1
  285. data/fixtures/steps_library/features/step_definitions/steps_lib1.rb +0 -8
  286. data/fixtures/steps_library/features/step_definitions/steps_lib2.rb +0 -8
  287. data/fixtures/tickets/Rakefile +0 -20
  288. data/fixtures/tickets/features.html +0 -138
  289. data/fixtures/tickets/features/172.feature +0 -28
  290. data/fixtures/tickets/features/177/1.feature +0 -28
  291. data/fixtures/tickets/features/177/2.feature +0 -20
  292. data/fixtures/tickets/features/177/3.feature +0 -18
  293. data/fixtures/tickets/features/180.feature +0 -7
  294. data/fixtures/tickets/features/229/tagged_hooks.feature +0 -8
  295. data/fixtures/tickets/features/229/tagged_hooks.rb +0 -14
  296. data/fixtures/tickets/features/236.feature +0 -13
  297. data/fixtures/tickets/features/241.feature +0 -12
  298. data/fixtures/tickets/features/246.feature +0 -4
  299. data/fixtures/tickets/features/248.feature +0 -11
  300. data/fixtures/tickets/features/270/back.feature +0 -14
  301. data/fixtures/tickets/features/270/back.steps.rb +0 -14
  302. data/fixtures/tickets/features/272/hooks.feature +0 -26
  303. data/fixtures/tickets/features/272/hooks_steps.rb +0 -53
  304. data/fixtures/tickets/features/279/py_string_indent.feature +0 -25
  305. data/fixtures/tickets/features/279/py_string_indent.steps.rb +0 -12
  306. data/fixtures/tickets/features/279/wrong.feature_ +0 -11
  307. data/fixtures/tickets/features/301/filter_background_tagged_hooks.feature +0 -6
  308. data/fixtures/tickets/features/301/filter_background_tagged_hooks_steps.rb +0 -12
  309. data/fixtures/tickets/features/306/only_background.feature +0 -4
  310. data/fixtures/tickets/features/around_timeout.feature +0 -6
  311. data/fixtures/tickets/features/gherkin_67.feature +0 -12
  312. data/fixtures/tickets/features/gherkin_68.feature +0 -4
  313. data/fixtures/tickets/features/half_manual.feature +0 -11
  314. data/fixtures/tickets/features/lib/eatting_machine.rb +0 -18
  315. data/fixtures/tickets/features/lib/pantry.rb +0 -20
  316. data/fixtures/tickets/features/scenario_outline.feature +0 -95
  317. data/fixtures/tickets/features/step_definitons/246_steps.rb +0 -3
  318. data/fixtures/tickets/features/step_definitons/248_steps.rb +0 -15
  319. data/fixtures/tickets/features/step_definitons/around_timeout_steps.rb +0 -9
  320. data/fixtures/tickets/features/step_definitons/half_manual_steps.rb +0 -11
  321. data/fixtures/tickets/features/step_definitons/scenario_outline_steps.rb +0 -42
  322. data/fixtures/tickets/features/step_definitons/tickets_steps.rb +0 -88
  323. data/fixtures/tickets/features/table_diffing.feature +0 -13
  324. data/fixtures/tickets/features/tickets.feature +0 -28
  325. data/legacy_features/README.md +0 -14
  326. data/legacy_features/announce.feature +0 -152
  327. data/legacy_features/bug_371.feature +0 -32
  328. data/legacy_features/bug_464.feature +0 -16
  329. data/legacy_features/bug_475.feature +0 -42
  330. data/legacy_features/bug_585_tab_indentation.feature +0 -22
  331. data/legacy_features/bug_600.feature +0 -73
  332. data/legacy_features/cucumber_cli.feature +0 -584
  333. data/legacy_features/cucumber_cli_outlines.feature +0 -117
  334. data/legacy_features/default_snippets.feature +0 -43
  335. data/legacy_features/diffing.feature +0 -25
  336. data/legacy_features/drb_server_integration.feature +0 -174
  337. data/legacy_features/exclude_files.feature +0 -20
  338. data/legacy_features/expand.feature +0 -60
  339. data/legacy_features/junit_formatter.feature +0 -214
  340. data/legacy_features/language_from_header.feature +0 -30
  341. data/legacy_features/multiline_names.feature +0 -44
  342. data/legacy_features/report_called_undefined_steps.feature +0 -35
  343. data/legacy_features/rerun_formatter.feature +0 -52
  344. data/legacy_features/simplest.feature +0 -11
  345. data/legacy_features/snippet.feature +0 -23
  346. data/legacy_features/snippets_when_using_star_keyword.feature +0 -38
  347. data/legacy_features/step_definitions/cucumber_steps.rb +0 -179
  348. data/legacy_features/step_definitions/extra_steps.rb +0 -2
  349. data/legacy_features/step_definitions/simplest_steps.rb +0 -3
  350. data/legacy_features/support/env.rb +0 -161
  351. data/legacy_features/support/env.rb.simplest +0 -7
  352. data/legacy_features/table_mapping.feature +0 -34
  353. data/legacy_features/transform.feature +0 -245
  354. data/legacy_features/unicode_table.feature +0 -35
  355. data/lib/README.rdoc +0 -12
  356. data/lib/cucumber/ast.rb +0 -30
  357. data/lib/cucumber/ast/background.rb +0 -116
  358. data/lib/cucumber/ast/comment.rb +0 -31
  359. data/lib/cucumber/ast/doc_string.rb +0 -61
  360. data/lib/cucumber/ast/empty_background.rb +0 -33
  361. data/lib/cucumber/ast/examples.rb +0 -49
  362. data/lib/cucumber/ast/feature.rb +0 -99
  363. data/lib/cucumber/ast/features.rb +0 -38
  364. data/lib/cucumber/ast/has_steps.rb +0 -74
  365. data/lib/cucumber/ast/location.rb +0 -41
  366. data/lib/cucumber/ast/multiline_argument.rb +0 -30
  367. data/lib/cucumber/ast/names.rb +0 -13
  368. data/lib/cucumber/ast/outline_table.rb +0 -194
  369. data/lib/cucumber/ast/scenario.rb +0 -103
  370. data/lib/cucumber/ast/scenario_outline.rb +0 -146
  371. data/lib/cucumber/ast/step.rb +0 -122
  372. data/lib/cucumber/ast/step_collection.rb +0 -92
  373. data/lib/cucumber/ast/step_invocation.rb +0 -196
  374. data/lib/cucumber/ast/table.rb +0 -738
  375. data/lib/cucumber/ast/tags.rb +0 -28
  376. data/lib/cucumber/ast/tree_walker.rb +0 -191
  377. data/lib/cucumber/ast/visitor.rb +0 -11
  378. data/lib/cucumber/broadcaster.rb +0 -13
  379. data/lib/cucumber/cli/drb_client.rb +0 -43
  380. data/lib/cucumber/feature_file.rb +0 -101
  381. data/lib/cucumber/formatter/ordered_xml_markup.rb +0 -24
  382. data/lib/cucumber/js_support/js_dsl.js +0 -57
  383. data/lib/cucumber/js_support/js_language.rb +0 -185
  384. data/lib/cucumber/js_support/js_snippets.rb +0 -27
  385. data/lib/cucumber/parser.rb +0 -2
  386. data/lib/cucumber/parser/gherkin_builder.rb +0 -284
  387. data/lib/cucumber/py_support/py_dsl.py +0 -10
  388. data/lib/cucumber/py_support/py_language.py +0 -10
  389. data/lib/cucumber/py_support/py_language.rb +0 -80
  390. data/lib/cucumber/step_mother.rb +0 -10
  391. data/spec/cucumber/ast/background_spec.rb +0 -122
  392. data/spec/cucumber/ast/doc_string_spec.rb +0 -40
  393. data/spec/cucumber/ast/feature_factory.rb +0 -72
  394. data/spec/cucumber/ast/feature_spec.rb +0 -63
  395. data/spec/cucumber/ast/features_spec.rb +0 -51
  396. data/spec/cucumber/ast/outline_table_spec.rb +0 -21
  397. data/spec/cucumber/ast/scenario_outline_spec.rb +0 -74
  398. data/spec/cucumber/ast/step_spec.rb +0 -68
  399. data/spec/cucumber/ast/table_spec.rb +0 -594
  400. data/spec/cucumber/ast/tree_walker_spec.rb +0 -19
  401. data/spec/cucumber/broadcaster_spec.rb +0 -15
  402. data/spec/cucumber/cli/drb_client_spec.rb +0 -76
  403. data/spec/cucumber/rake/rcov_spec.rb +0 -71
  404. data/spec/cucumber/wire_support/wire_step_definition_spec.rb +0 -20
@@ -0,0 +1,18 @@
1
+ if ENV['SIMPLECOV']
2
+ begin
3
+ # Suppress warnings in order not to pollute stdout which tests expectations rely on
4
+ $VERBOSE = nil if defined?(JRUBY_VERSION)
5
+
6
+ require 'simplecov'
7
+
8
+ SimpleCov.root(File.expand_path(File.dirname(__FILE__) + '/..'))
9
+ SimpleCov.start do
10
+ add_filter 'iso-8859-1_steps.rb'
11
+ add_filter '.-ruby-core/'
12
+ add_filter '/spec/'
13
+ add_filter '/features/'
14
+ end
15
+ rescue LoadError
16
+ warn("Unable to load simplecov")
17
+ end
18
+ end
@@ -1,5 +1,4 @@
1
- ENV['CUCUMBER_COLORS']=nil
2
- $:.unshift(File.dirname(__FILE__) + '/../lib')
1
+ ENV['CUCUMBER_COLORS'] = nil
3
2
  $:.unshift(File.dirname(__FILE__))
4
3
 
5
4
  # For Travis....
@@ -8,12 +7,9 @@ if defined? Encoding
8
7
  Encoding.default_internal = 'utf-8'
9
8
  end
10
9
 
11
- require 'rubygems'
12
- require 'bundler'
13
- Bundler.setup
10
+ load File.expand_path(File.dirname(__FILE__) + '/../spec/simplecov_setup.rb')
14
11
 
15
12
  require 'cucumber'
16
- $KCODE='u' if Cucumber::RUBY_1_8_7
17
13
 
18
14
  RSpec.configure do |c|
19
15
  c.before do
@@ -23,7 +19,7 @@ end
23
19
 
24
20
  module RSpec
25
21
  module WorkInProgress
26
- def pending_under platforms, reason, &block
22
+ def pending_under(platforms, reason, &block)
27
23
  if [platforms].flatten.map(&:to_s).include? RUBY_PLATFORM
28
24
  pending "pending under #{platforms.inspect} because: #{reason}", &block
29
25
  else
@@ -32,5 +28,3 @@ module RSpec
32
28
  end
33
29
  end
34
30
  end
35
-
36
-
metadata CHANGED
@@ -1,431 +1,314 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucumber
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.20
5
- prerelease:
4
+ version: 2.0.0.beta.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Aslak Hellesøy
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2015-06-19 00:00:00.000000000 Z
11
+ date: 2014-08-22 00:00:00.000000000 Z
13
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: cucumber-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 1.0.0.beta.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 1.0.0.beta.1
14
27
  - !ruby/object:Gem::Dependency
15
28
  name: builder
16
29
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
30
  requirements:
19
- - - ! '>='
31
+ - - ">="
20
32
  - !ruby/object:Gem::Version
21
33
  version: 2.1.2
22
34
  type: :runtime
23
35
  prerelease: false
24
36
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
37
  requirements:
27
- - - ! '>='
38
+ - - ">="
28
39
  - !ruby/object:Gem::Version
29
40
  version: 2.1.2
30
41
  - !ruby/object:Gem::Dependency
31
42
  name: diff-lcs
32
43
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
44
  requirements:
35
- - - ! '>='
45
+ - - ">="
36
46
  - !ruby/object:Gem::Version
37
47
  version: 1.1.3
38
48
  type: :runtime
39
49
  prerelease: false
40
50
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
51
  requirements:
43
- - - ! '>='
52
+ - - ">="
44
53
  - !ruby/object:Gem::Version
45
54
  version: 1.1.3
46
55
  - !ruby/object:Gem::Dependency
47
56
  name: gherkin
48
57
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
58
  requirements:
51
- - - ~>
59
+ - - "~>"
52
60
  - !ruby/object:Gem::Version
53
61
  version: '2.12'
54
62
  type: :runtime
55
63
  prerelease: false
56
64
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
65
  requirements:
59
- - - ~>
66
+ - - "~>"
60
67
  - !ruby/object:Gem::Version
61
68
  version: '2.12'
62
69
  - !ruby/object:Gem::Dependency
63
70
  name: multi_json
64
71
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
72
  requirements:
67
- - - ! '>='
73
+ - - ">="
68
74
  - !ruby/object:Gem::Version
69
75
  version: 1.7.5
70
- - - <
76
+ - - "<"
71
77
  - !ruby/object:Gem::Version
72
78
  version: '2.0'
73
79
  type: :runtime
74
80
  prerelease: false
75
81
  version_requirements: !ruby/object:Gem::Requirement
76
- none: false
77
82
  requirements:
78
- - - ! '>='
83
+ - - ">="
79
84
  - !ruby/object:Gem::Version
80
85
  version: 1.7.5
81
- - - <
86
+ - - "<"
82
87
  - !ruby/object:Gem::Version
83
88
  version: '2.0'
84
89
  - !ruby/object:Gem::Dependency
85
90
  name: multi_test
86
91
  requirement: !ruby/object:Gem::Requirement
87
- none: false
88
92
  requirements:
89
- - - ! '>='
93
+ - - ">="
90
94
  - !ruby/object:Gem::Version
91
- version: 0.1.2
95
+ version: 0.1.1
92
96
  type: :runtime
93
97
  prerelease: false
94
98
  version_requirements: !ruby/object:Gem::Requirement
95
- none: false
96
99
  requirements:
97
- - - ! '>='
100
+ - - ">="
98
101
  - !ruby/object:Gem::Version
99
- version: 0.1.2
102
+ version: 0.1.1
100
103
  - !ruby/object:Gem::Dependency
101
104
  name: aruba
102
105
  requirement: !ruby/object:Gem::Requirement
103
- none: false
104
106
  requirements:
105
- - - '='
107
+ - - "~>"
106
108
  - !ruby/object:Gem::Version
107
- version: 0.5.2
109
+ version: 0.5.3
108
110
  type: :development
109
111
  prerelease: false
110
112
  version_requirements: !ruby/object:Gem::Requirement
111
- none: false
112
113
  requirements:
113
- - - '='
114
+ - - "~>"
114
115
  - !ruby/object:Gem::Version
115
- version: 0.5.2
116
+ version: 0.5.3
116
117
  - !ruby/object:Gem::Dependency
117
118
  name: json
118
119
  requirement: !ruby/object:Gem::Requirement
119
- none: false
120
120
  requirements:
121
- - - ~>
121
+ - - "~>"
122
122
  - !ruby/object:Gem::Version
123
123
  version: '1.7'
124
124
  type: :development
125
125
  prerelease: false
126
126
  version_requirements: !ruby/object:Gem::Requirement
127
- none: false
128
127
  requirements:
129
- - - ~>
128
+ - - "~>"
130
129
  - !ruby/object:Gem::Version
131
130
  version: '1.7'
132
131
  - !ruby/object:Gem::Dependency
133
132
  name: nokogiri
134
133
  requirement: !ruby/object:Gem::Requirement
135
- none: false
136
134
  requirements:
137
- - - ~>
135
+ - - "~>"
138
136
  - !ruby/object:Gem::Version
139
- version: 1.5.2
137
+ version: '1.5'
140
138
  type: :development
141
139
  prerelease: false
142
140
  version_requirements: !ruby/object:Gem::Requirement
143
- none: false
144
141
  requirements:
145
- - - ~>
142
+ - - "~>"
146
143
  - !ruby/object:Gem::Version
147
- version: 1.5.2
144
+ version: '1.5'
148
145
  - !ruby/object:Gem::Dependency
149
146
  name: rake
150
147
  requirement: !ruby/object:Gem::Requirement
151
- none: false
152
148
  requirements:
153
- - - ! '>='
149
+ - - ">="
154
150
  - !ruby/object:Gem::Version
155
151
  version: 0.9.2
156
- - - <
157
- - !ruby/object:Gem::Version
158
- version: '10.2'
159
152
  type: :development
160
153
  prerelease: false
161
154
  version_requirements: !ruby/object:Gem::Requirement
162
- none: false
163
155
  requirements:
164
- - - ! '>='
156
+ - - ">="
165
157
  - !ruby/object:Gem::Version
166
158
  version: 0.9.2
167
- - - <
168
- - !ruby/object:Gem::Version
169
- version: '10.2'
170
159
  - !ruby/object:Gem::Dependency
171
160
  name: rspec
172
161
  requirement: !ruby/object:Gem::Requirement
173
- none: false
174
- requirements:
175
- - - ~>
176
- - !ruby/object:Gem::Version
177
- version: '2'
178
- type: :development
179
- prerelease: false
180
- version_requirements: !ruby/object:Gem::Requirement
181
- none: false
182
- requirements:
183
- - - ~>
184
- - !ruby/object:Gem::Version
185
- version: '2'
186
- - !ruby/object:Gem::Dependency
187
- name: test-unit
188
- requirement: !ruby/object:Gem::Requirement
189
- none: false
190
162
  requirements:
191
- - - ! '>='
163
+ - - ">="
192
164
  - !ruby/object:Gem::Version
193
- version: '0'
165
+ version: '3.0'
194
166
  type: :development
195
167
  prerelease: false
196
168
  version_requirements: !ruby/object:Gem::Requirement
197
- none: false
198
169
  requirements:
199
- - - ! '>='
170
+ - - ">="
200
171
  - !ruby/object:Gem::Version
201
- version: '0'
172
+ version: '3.0'
202
173
  - !ruby/object:Gem::Dependency
203
174
  name: simplecov
204
175
  requirement: !ruby/object:Gem::Requirement
205
- none: false
206
176
  requirements:
207
- - - ! '>='
177
+ - - ">="
208
178
  - !ruby/object:Gem::Version
209
179
  version: 0.6.2
210
180
  type: :development
211
181
  prerelease: false
212
182
  version_requirements: !ruby/object:Gem::Requirement
213
- none: false
214
183
  requirements:
215
- - - ! '>='
184
+ - - ">="
216
185
  - !ruby/object:Gem::Version
217
186
  version: 0.6.2
218
187
  - !ruby/object:Gem::Dependency
219
- name: spork
188
+ name: coveralls
220
189
  requirement: !ruby/object:Gem::Requirement
221
- none: false
222
190
  requirements:
223
- - - ! '>='
191
+ - - "~>"
224
192
  - !ruby/object:Gem::Version
225
- version: 1.0.0.rc2
193
+ version: '0.7'
226
194
  type: :development
227
195
  prerelease: false
228
196
  version_requirements: !ruby/object:Gem::Requirement
229
- none: false
230
197
  requirements:
231
- - - ! '>='
198
+ - - "~>"
232
199
  - !ruby/object:Gem::Version
233
- version: 1.0.0.rc2
200
+ version: '0.7'
234
201
  - !ruby/object:Gem::Dependency
235
202
  name: syntax
236
203
  requirement: !ruby/object:Gem::Requirement
237
- none: false
238
204
  requirements:
239
- - - ! '>='
205
+ - - ">="
240
206
  - !ruby/object:Gem::Version
241
207
  version: 1.0.0
242
208
  type: :development
243
209
  prerelease: false
244
210
  version_requirements: !ruby/object:Gem::Requirement
245
- none: false
246
211
  requirements:
247
- - - ! '>='
212
+ - - ">="
248
213
  - !ruby/object:Gem::Version
249
214
  version: 1.0.0
250
215
  - !ruby/object:Gem::Dependency
251
216
  name: bcat
252
217
  requirement: !ruby/object:Gem::Requirement
253
- none: false
254
218
  requirements:
255
- - - ~>
219
+ - - "~>"
256
220
  - !ruby/object:Gem::Version
257
221
  version: 0.6.2
258
222
  type: :development
259
223
  prerelease: false
260
224
  version_requirements: !ruby/object:Gem::Requirement
261
- none: false
262
225
  requirements:
263
- - - ~>
226
+ - - "~>"
264
227
  - !ruby/object:Gem::Version
265
228
  version: 0.6.2
266
229
  - !ruby/object:Gem::Dependency
267
230
  name: kramdown
268
231
  requirement: !ruby/object:Gem::Requirement
269
- none: false
270
232
  requirements:
271
- - - ~>
233
+ - - "~>"
272
234
  - !ruby/object:Gem::Version
273
235
  version: '0.14'
274
236
  type: :development
275
237
  prerelease: false
276
238
  version_requirements: !ruby/object:Gem::Requirement
277
- none: false
278
239
  requirements:
279
- - - ~>
240
+ - - "~>"
280
241
  - !ruby/object:Gem::Version
281
242
  version: '0.14'
282
243
  - !ruby/object:Gem::Dependency
283
244
  name: yard
284
245
  requirement: !ruby/object:Gem::Requirement
285
- none: false
286
246
  requirements:
287
- - - ~>
247
+ - - "~>"
288
248
  - !ruby/object:Gem::Version
289
249
  version: 0.8.0
290
250
  type: :development
291
251
  prerelease: false
292
252
  version_requirements: !ruby/object:Gem::Requirement
293
- none: false
294
253
  requirements:
295
- - - ~>
254
+ - - "~>"
296
255
  - !ruby/object:Gem::Version
297
256
  version: 0.8.0
298
257
  - !ruby/object:Gem::Dependency
299
258
  name: capybara
300
259
  requirement: !ruby/object:Gem::Requirement
301
- none: false
302
260
  requirements:
303
- - - ! '>='
304
- - !ruby/object:Gem::Version
305
- version: 1.1.2
306
- - - <
261
+ - - ">="
307
262
  - !ruby/object:Gem::Version
308
263
  version: '2.1'
309
264
  type: :development
310
265
  prerelease: false
311
266
  version_requirements: !ruby/object:Gem::Requirement
312
- none: false
313
267
  requirements:
314
- - - ! '>='
315
- - !ruby/object:Gem::Version
316
- version: 1.1.2
317
- - - <
268
+ - - ">="
318
269
  - !ruby/object:Gem::Version
319
270
  version: '2.1'
320
271
  - !ruby/object:Gem::Dependency
321
272
  name: rack-test
322
273
  requirement: !ruby/object:Gem::Requirement
323
- none: false
324
274
  requirements:
325
- - - ! '>='
275
+ - - ">="
326
276
  - !ruby/object:Gem::Version
327
277
  version: 0.6.1
328
278
  type: :development
329
279
  prerelease: false
330
280
  version_requirements: !ruby/object:Gem::Requirement
331
- none: false
332
281
  requirements:
333
- - - ! '>='
282
+ - - ">="
334
283
  - !ruby/object:Gem::Version
335
284
  version: 0.6.1
336
- - !ruby/object:Gem::Dependency
337
- name: ramaze
338
- requirement: !ruby/object:Gem::Requirement
339
- none: false
340
- requirements:
341
- - - ! '>='
342
- - !ruby/object:Gem::Version
343
- version: '0'
344
- type: :development
345
- prerelease: false
346
- version_requirements: !ruby/object:Gem::Requirement
347
- none: false
348
- requirements:
349
- - - ! '>='
350
- - !ruby/object:Gem::Version
351
- version: '0'
352
285
  - !ruby/object:Gem::Dependency
353
286
  name: sinatra
354
287
  requirement: !ruby/object:Gem::Requirement
355
- none: false
356
288
  requirements:
357
- - - ! '>='
289
+ - - ">="
358
290
  - !ruby/object:Gem::Version
359
291
  version: 1.3.2
360
292
  type: :development
361
293
  prerelease: false
362
294
  version_requirements: !ruby/object:Gem::Requirement
363
- none: false
364
295
  requirements:
365
- - - ! '>='
296
+ - - ">="
366
297
  - !ruby/object:Gem::Version
367
298
  version: 1.3.2
368
- - !ruby/object:Gem::Dependency
369
- name: webrat
370
- requirement: !ruby/object:Gem::Requirement
371
- none: false
372
- requirements:
373
- - - ! '>='
374
- - !ruby/object:Gem::Version
375
- version: 0.7.3
376
- type: :development
377
- prerelease: false
378
- version_requirements: !ruby/object:Gem::Requirement
379
- none: false
380
- requirements:
381
- - - ! '>='
382
- - !ruby/object:Gem::Version
383
- version: 0.7.3
384
- - !ruby/object:Gem::Dependency
385
- name: mime-types
386
- requirement: !ruby/object:Gem::Requirement
387
- none: false
388
- requirements:
389
- - - <
390
- - !ruby/object:Gem::Version
391
- version: '2.0'
392
- type: :development
393
- prerelease: false
394
- version_requirements: !ruby/object:Gem::Requirement
395
- none: false
396
- requirements:
397
- - - <
398
- - !ruby/object:Gem::Version
399
- version: '2.0'
400
- - !ruby/object:Gem::Dependency
401
- name: rubyzip
402
- requirement: !ruby/object:Gem::Requirement
403
- none: false
404
- requirements:
405
- - - <
406
- - !ruby/object:Gem::Version
407
- version: '1.0'
408
- type: :development
409
- prerelease: false
410
- version_requirements: !ruby/object:Gem::Requirement
411
- none: false
412
- requirements:
413
- - - <
414
- - !ruby/object:Gem::Version
415
- version: '1.0'
416
299
  description: Behaviour Driven Development with elegance and joy
417
300
  email: cukes@googlegroups.com
418
301
  executables:
419
302
  - cucumber
303
+ - cuke
420
304
  extensions: []
421
305
  extra_rdoc_files: []
422
306
  files:
423
- - .gitattributes
424
- - .rspec
425
- - .ruby-gemset
426
- - .ruby-version
427
- - .travis.yml
428
- - .yardopts
307
+ - ".coveralls.yml"
308
+ - ".rspec"
309
+ - ".ruby-gemset"
310
+ - ".travis.yml"
311
+ - ".yardopts"
429
312
  - CONTRIBUTING.md
430
313
  - Gemfile
431
314
  - History.md
@@ -433,40 +316,46 @@ files:
433
316
  - README.md
434
317
  - Rakefile
435
318
  - bin/cucumber
319
+ - bin/cuke
436
320
  - cucumber.gemspec
437
321
  - cucumber.yml
438
322
  - examples/i18n/README.textile
439
323
  - examples/i18n/Rakefile
440
324
  - examples/i18n/ar/Rakefile
441
325
  - examples/i18n/ar/features/addition.feature
442
- - examples/i18n/ar/features/step_definitons/calculator_steps.rb
326
+ - examples/i18n/ar/features/step_definitions/calculator_steps.rb
443
327
  - examples/i18n/ar/lib/calculator.rb
444
328
  - examples/i18n/bg/Rakefile
445
329
  - examples/i18n/bg/features/addition.feature
446
330
  - examples/i18n/bg/features/consecutive_calculations.feature
447
331
  - examples/i18n/bg/features/division.feature
448
- - examples/i18n/bg/features/step_definitons/calculator_steps.rb
332
+ - examples/i18n/bg/features/step_definitions/calculator_steps.rb
449
333
  - examples/i18n/bg/features/support/env.rb
450
334
  - examples/i18n/bg/features/support/world.rb
451
335
  - examples/i18n/bg/lib/calculator.rb
452
336
  - examples/i18n/ca/Rakefile
453
- - examples/i18n/ca/features/step_definitons/calculator_steps.rb
337
+ - examples/i18n/ca/features/step_definitions/calculator_steps.rb
454
338
  - examples/i18n/ca/features/suma.feature
455
339
  - examples/i18n/ca/lib/calculadora.rb
456
340
  - examples/i18n/cs/Rakefile
457
341
  - examples/i18n/cs/features/addition.feature
458
342
  - examples/i18n/cs/features/division.feature
459
- - examples/i18n/cs/features/step_definitons/calculator_steps.rb
343
+ - examples/i18n/cs/features/step_definitions/calculator_steps.rb
460
344
  - examples/i18n/cs/lib/calculator.rb
461
345
  - examples/i18n/da/Rakefile
462
346
  - examples/i18n/da/features/sammenlaegning.feature
463
- - examples/i18n/da/features/step_definitons/lommeregner_steps.rb
347
+ - examples/i18n/da/features/step_definitions/lommeregner_steps.rb
464
348
  - examples/i18n/da/lib/lommeregner.rb
465
349
  - examples/i18n/de/Rakefile
466
350
  - examples/i18n/de/features/addition.feature
467
351
  - examples/i18n/de/features/division.feature
468
- - examples/i18n/de/features/step_definitons/calculator_steps.rb
352
+ - examples/i18n/de/features/step_definitions/calculator_steps.rb
469
353
  - examples/i18n/de/lib/calculator.rb
354
+ - examples/i18n/el/Rakefile
355
+ - examples/i18n/el/features/addition.feature
356
+ - examples/i18n/el/features/division.feature
357
+ - examples/i18n/el/features/step_definitions/calculator_steps.rb
358
+ - examples/i18n/el/lib/calculator.rb
470
359
  - examples/i18n/en-lol/Rakefile
471
360
  - examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb
472
361
  - examples/i18n/en-lol/features/stuffing.feature
@@ -476,16 +365,16 @@ files:
476
365
  - examples/i18n/en/Rakefile
477
366
  - examples/i18n/en/features/addition.feature
478
367
  - examples/i18n/en/features/division.feature
479
- - examples/i18n/en/features/step_definitons/calculator_steps.rb
368
+ - examples/i18n/en/features/step_definitions/calculator_steps.rb
480
369
  - examples/i18n/en/lib/calculator.rb
481
370
  - examples/i18n/eo/Rakefile
482
371
  - examples/i18n/eo/features/adicio.feature
483
372
  - examples/i18n/eo/features/divido.feature
484
- - examples/i18n/eo/features/step_definitons/calculator_steps.rb
373
+ - examples/i18n/eo/features/step_definitions/calculator_steps.rb
485
374
  - examples/i18n/eo/lib/calculator.rb
486
375
  - examples/i18n/es/Rakefile
487
376
  - examples/i18n/es/features/adicion.feature
488
- - examples/i18n/es/features/step_definitons/calculador_steps.rb
377
+ - examples/i18n/es/features/step_definitions/calculador_steps.rb
489
378
  - examples/i18n/es/lib/calculador.rb
490
379
  - examples/i18n/et/Rakefile
491
380
  - examples/i18n/et/features/jagamine.feature
@@ -494,7 +383,7 @@ files:
494
383
  - examples/i18n/et/lib/kalkulaator.rb
495
384
  - examples/i18n/fi/Rakefile
496
385
  - examples/i18n/fi/features/jakolasku.feature
497
- - examples/i18n/fi/features/step_definitons/laskin_steps.rb
386
+ - examples/i18n/fi/features/step_definitions/laskin_steps.rb
498
387
  - examples/i18n/fi/features/yhteenlasku.feature
499
388
  - examples/i18n/fi/lib/laskin.rb
500
389
  - examples/i18n/fr/Rakefile
@@ -506,57 +395,57 @@ files:
506
395
  - examples/i18n/he/Rakefile
507
396
  - examples/i18n/he/features/addition.feature
508
397
  - examples/i18n/he/features/division.feature
509
- - examples/i18n/he/features/step_definitons/calculator_steps.rb
398
+ - examples/i18n/he/features/step_definitions/calculator_steps.rb
510
399
  - examples/i18n/he/lib/calculator.rb
511
400
  - examples/i18n/hi/Rakefile
512
401
  - examples/i18n/hi/features/addition.feature
513
402
  - examples/i18n/hi/features/division.feature
514
- - examples/i18n/hi/features/step_definitons/calculator_steps.rb
403
+ - examples/i18n/hi/features/step_definitions/calculator_steps.rb
515
404
  - examples/i18n/hi/lib/calculator.rb
516
405
  - examples/i18n/hu/Rakefile
517
406
  - examples/i18n/hu/features/osszeadas.feature
518
407
  - examples/i18n/hu/features/osztas.feature
519
- - examples/i18n/hu/features/step_definitons/calculator_steps.rb
408
+ - examples/i18n/hu/features/step_definitions/calculator_steps.rb
520
409
  - examples/i18n/hu/lib/calculator.rb
521
410
  - examples/i18n/id/Rakefile
522
411
  - examples/i18n/id/features/addition.feature
523
412
  - examples/i18n/id/features/division.feature
524
- - examples/i18n/id/features/step_definitons/calculator_steps.rb
413
+ - examples/i18n/id/features/step_definitions/calculator_steps.rb
525
414
  - examples/i18n/id/lib/calculator.rb
526
415
  - examples/i18n/it/Rakefile
527
416
  - examples/i18n/it/features/somma.feature
528
- - examples/i18n/it/features/step_definitons/calcolatrice_steps.rb
417
+ - examples/i18n/it/features/step_definitions/calcolatrice_steps.rb
529
418
  - examples/i18n/it/lib/calcolatrice.rb
530
419
  - examples/i18n/ja/Rakefile
531
420
  - examples/i18n/ja/features/addition.feature
532
421
  - examples/i18n/ja/features/division.feature
533
- - examples/i18n/ja/features/step_definitons/calculator_steps.rb
422
+ - examples/i18n/ja/features/step_definitions/calculator_steps.rb
534
423
  - examples/i18n/ja/features/support/env.rb
535
424
  - examples/i18n/ja/lib/calculator.rb
536
425
  - examples/i18n/ko/Rakefile
537
426
  - examples/i18n/ko/features/addition.feature
538
427
  - examples/i18n/ko/features/division.feature
539
- - examples/i18n/ko/features/step_definitons/calculator_steps.rb
428
+ - examples/i18n/ko/features/step_definitions/calculator_steps.rb
540
429
  - examples/i18n/ko/lib/calculator.rb
541
430
  - examples/i18n/lt/Rakefile
542
431
  - examples/i18n/lt/features/addition.feature
543
432
  - examples/i18n/lt/features/division.feature
544
- - examples/i18n/lt/features/step_definitons/calculator_steps.rb
433
+ - examples/i18n/lt/features/step_definitions/calculator_steps.rb
545
434
  - examples/i18n/lt/lib/calculator.rb
546
435
  - examples/i18n/lv/Rakefile
547
436
  - examples/i18n/lv/features/addition.feature
548
437
  - examples/i18n/lv/features/division.feature
549
- - examples/i18n/lv/features/step_definitons/calculator_steps.rb
438
+ - examples/i18n/lv/features/step_definitions/calculator_steps.rb
550
439
  - examples/i18n/lv/lib/calculator.rb
551
440
  - examples/i18n/no/Rakefile
552
- - examples/i18n/no/features/step_definitons/kalkulator_steps.rb
441
+ - examples/i18n/no/features/step_definitions/kalkulator_steps.rb
553
442
  - examples/i18n/no/features/summering.feature
554
443
  - examples/i18n/no/features/support/env.rb
555
444
  - examples/i18n/no/lib/kalkulator.rb
556
445
  - examples/i18n/pl/Rakefile
557
446
  - examples/i18n/pl/features/addition.feature
558
447
  - examples/i18n/pl/features/division.feature
559
- - examples/i18n/pl/features/step_definitons/calculator_steps.rb
448
+ - examples/i18n/pl/features/step_definitions/calculator_steps.rb
560
449
  - examples/i18n/pl/features/support/env.rb
561
450
  - examples/i18n/pl/lib/calculator.rb
562
451
  - examples/i18n/pt/Rakefile
@@ -566,44 +455,44 @@ files:
566
455
  - examples/i18n/pt/lib/calculadora.rb
567
456
  - examples/i18n/ro/Rakefile
568
457
  - examples/i18n/ro/features/adunare.feature
569
- - examples/i18n/ro/features/step_definitons/calculator_steps.rb
458
+ - examples/i18n/ro/features/step_definitions/calculator_steps.rb
570
459
  - examples/i18n/ro/lib/calculator.rb
571
460
  - examples/i18n/ru/Rakefile
572
461
  - examples/i18n/ru/features/addition.feature
573
462
  - examples/i18n/ru/features/consecutive_calculations.feature
574
463
  - examples/i18n/ru/features/division.feature
575
- - examples/i18n/ru/features/step_definitons/calculator_steps.rb
464
+ - examples/i18n/ru/features/step_definitions/calculator_steps.rb
576
465
  - examples/i18n/ru/features/support/env.rb
577
466
  - examples/i18n/ru/features/support/world.rb
578
467
  - examples/i18n/ru/lib/calculator.rb
579
468
  - examples/i18n/sk/Rakefile
580
469
  - examples/i18n/sk/features/addition.feature
581
470
  - examples/i18n/sk/features/division.feature
582
- - examples/i18n/sk/features/step_definitons/calculator_steps.rb
471
+ - examples/i18n/sk/features/step_definitions/calculator_steps.rb
583
472
  - examples/i18n/sk/lib/calculator.rb
584
473
  - examples/i18n/sr-Cyrl/Rakefile
585
474
  - examples/i18n/sr-Cyrl/features/sabiranje.feature
586
- - examples/i18n/sr-Cyrl/features/step_definitons/calculator_steps.rb
475
+ - examples/i18n/sr-Cyrl/features/step_definitions/calculator_steps.rb
587
476
  - examples/i18n/sr-Cyrl/features/support/env.rb
588
477
  - examples/i18n/sr-Cyrl/lib/calculator.rb
589
478
  - examples/i18n/sr-Latn/Rakefile
590
479
  - examples/i18n/sr-Latn/features/sabiranje.feature
591
- - examples/i18n/sr-Latn/features/step_definitons/calculator_steps.rb
480
+ - examples/i18n/sr-Latn/features/step_definitions/calculator_steps.rb
592
481
  - examples/i18n/sr-Latn/lib/calculator.rb
593
482
  - examples/i18n/sv/Rakefile
594
- - examples/i18n/sv/features/step_definitons/kalkulator_steps.rb
483
+ - examples/i18n/sv/features/step_definitions/kalkulator_steps.rb
595
484
  - examples/i18n/sv/features/summering.feature
596
485
  - examples/i18n/sv/lib/kalkulator.rb
597
486
  - examples/i18n/tr/Rakefile
598
487
  - examples/i18n/tr/features/bolme.feature
599
- - examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb
488
+ - examples/i18n/tr/features/step_definitions/hesap_makinesi_adimlari.rb
600
489
  - examples/i18n/tr/features/toplama.feature
601
490
  - examples/i18n/tr/lib/hesap_makinesi.rb
602
491
  - examples/i18n/uk/Rakefile
603
492
  - examples/i18n/uk/features/addition.feature
604
493
  - examples/i18n/uk/features/consecutive_calculations.feature
605
494
  - examples/i18n/uk/features/division.feature
606
- - examples/i18n/uk/features/step_definitons/calculator_steps.rb
495
+ - examples/i18n/uk/features/step_definitions/calculator_steps.rb
607
496
  - examples/i18n/uk/features/support/env.rb
608
497
  - examples/i18n/uk/features/support/world.rb
609
498
  - examples/i18n/uk/lib/calculator.rb
@@ -611,42 +500,23 @@ files:
611
500
  - examples/i18n/uz/features/addition.feature
612
501
  - examples/i18n/uz/features/consecutive_calculations.feature
613
502
  - examples/i18n/uz/features/division.feature
614
- - examples/i18n/uz/features/step_definitons/calculator_steps.rb
503
+ - examples/i18n/uz/features/step_definitions/calculator_steps.rb
615
504
  - examples/i18n/uz/features/support/env.rb
616
505
  - examples/i18n/uz/features/support/world.rb
617
506
  - examples/i18n/uz/lib/calculator.rb
618
507
  - examples/i18n/zh-CN/Rakefile
619
508
  - examples/i18n/zh-CN/features/addition.feature
620
- - examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb
509
+ - examples/i18n/zh-CN/features/step_definitions/calculator_steps.rb
621
510
  - examples/i18n/zh-CN/lib/calculator.rb
622
511
  - examples/i18n/zh-TW/Rakefile
623
512
  - examples/i18n/zh-TW/features/addition.feature
624
513
  - examples/i18n/zh-TW/features/division.feature
625
- - examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb
514
+ - examples/i18n/zh-TW/features/step_definitions/calculator_steps.rb
626
515
  - examples/i18n/zh-TW/lib/calculator.rb
627
- - examples/python/README.textile
628
- - examples/python/Rakefile
629
- - examples/python/features/fibonacci.feature
630
- - examples/python/features/step_definitions/fib_steps.py
631
- - examples/python/lib/fib.py
632
- - examples/ramaze/README.textile
633
- - examples/ramaze/Rakefile
634
- - examples/ramaze/app.rb
635
- - examples/ramaze/features/add.feature
636
- - examples/ramaze/features/step_definitions/add_steps.rb
637
- - examples/ramaze/features/support/env.rb
638
- - examples/ramaze/layout/default.html.erb
639
- - examples/ramaze/view/index.html.erb
640
516
  - examples/rspec_doubles/Rakefile
641
517
  - examples/rspec_doubles/features/mocking.feature
642
518
  - examples/rspec_doubles/features/step_definitions/calvin_steps.rb
643
519
  - examples/rspec_doubles/features/support/env.rb
644
- - examples/ruby2python/README.textile
645
- - examples/ruby2python/Rakefile
646
- - examples/ruby2python/features/fibonacci.feature
647
- - examples/ruby2python/features/step_definitions/fib_steps.rb
648
- - examples/ruby2python/features/support/env.rb
649
- - examples/ruby2python/lib/fib.py
650
520
  - examples/sinatra/README.textile
651
521
  - examples/sinatra/Rakefile
652
522
  - examples/sinatra/app.rb
@@ -665,11 +535,6 @@ files:
665
535
  - examples/test_unit/Rakefile
666
536
  - examples/test_unit/features/step_definitions/test_unit_steps.rb
667
537
  - examples/test_unit/features/test_unit.feature
668
- - examples/v8/Rakefile
669
- - examples/v8/features/fibonacci.feature
670
- - examples/v8/features/step_definitions/fib_steps.js
671
- - examples/v8/features/support/env.js
672
- - examples/v8/lib/fibonacci.js
673
538
  - examples/watir/README.textile
674
539
  - examples/watir/Rakefile
675
540
  - examples/watir/cucumber.yml
@@ -677,111 +542,85 @@ files:
677
542
  - examples/watir/features/step_definitions/search_steps.rb
678
543
  - examples/watir/features/support/env.rb
679
544
  - examples/watir/features/support/screenshots.rb
680
- - features/.cucumber/stepdefs.json
681
- - features/assertions.feature
682
- - features/autoformat_profile_output.feature
683
- - features/background.feature
684
- - features/backtraces.feature
685
- - features/before_hook.feature
686
- - features/bootstrap.feature
687
- - features/custom_formatter.feature
688
- - features/doc_strings.feature
545
+ - features/docs/api/list_step_defs_as_json.feature
546
+ - features/docs/api/run_cli_main_with_existing_runtime.feature
547
+ - features/docs/cli/backtraces.feature
548
+ - features/docs/cli/dry_run.feature
549
+ - features/docs/cli/exclude_files.feature
550
+ - features/docs/cli/execute_with_tag_filter.feature
551
+ - features/docs/cli/randomize.feature
552
+ - features/docs/cli/require.feature
553
+ - features/docs/cli/run_scenarios_matching_name.feature
554
+ - features/docs/cli/run_specific_scenarios.feature
555
+ - features/docs/cli/showing_differences.feature
556
+ - features/docs/cli/specifying_multiple_formatters.feature
557
+ - features/docs/cli/strict_mode.feature
558
+ - features/docs/defining_steps/nested_steps.feature
559
+ - features/docs/defining_steps/nested_steps_i18n.feature
560
+ - features/docs/defining_steps/nested_steps_with_second_arg.feature
561
+ - features/docs/defining_steps/one_line_step_definitions.feature
562
+ - features/docs/defining_steps/printing_messages.feature
563
+ - features/docs/defining_steps/skip_scenario.feature
564
+ - features/docs/defining_steps/snippets.feature
565
+ - features/docs/defining_steps/table_diffing.feature
566
+ - features/docs/defining_steps/transforms.feature
567
+ - features/docs/exception_in_after_hook.feature
568
+ - features/docs/exception_in_after_step_hook.feature
569
+ - features/docs/exception_in_before_hook.feature
570
+ - features/docs/extending_cucumber/custom_formatter.feature
571
+ - features/docs/extending_cucumber/formatter_callbacks.feature
572
+ - features/docs/formatters/debug_formatter.feature
573
+ - features/docs/formatters/formatter_step_file_colon_line.feature
574
+ - features/docs/formatters/html_formatter.feature
575
+ - features/docs/formatters/json_formatter.feature
576
+ - features/docs/formatters/junit_formatter.feature
577
+ - features/docs/formatters/pretty_formatter.feature
578
+ - features/docs/formatters/progress_formatter.feature
579
+ - features/docs/formatters/rerun_formatter.feature
580
+ - features/docs/formatters/usage_formatter.feature
581
+ - features/docs/getting_started.feature
582
+ - features/docs/gherkin/background.feature
583
+ - features/docs/gherkin/doc_strings.feature
584
+ - features/docs/gherkin/expand_option_for_outlines.feature
585
+ - features/docs/gherkin/language_from_header.feature
689
586
  - features/docs/gherkin/language_help.feature
690
- - features/drb_server_integration.feature
691
- - features/execute_with_tag_filter.feature
692
- - features/formatter_callbacks.feature
693
- - features/formatter_step_file_colon_line.feature
694
- - features/html_formatter.feature
695
- - features/iso-8859-1.feature
696
- - features/json_formatter.feature
587
+ - features/docs/gherkin/outlines.feature
588
+ - features/docs/gherkin/unicode_table.feature
589
+ - features/docs/gherkin/using_descriptions.feature
590
+ - features/docs/gherkin/using_star_notation.feature
591
+ - features/docs/iso-8859-1.feature
592
+ - features/docs/post_configuration_hook.feature
593
+ - features/docs/profiles.feature
594
+ - features/docs/rake_task.feature
595
+ - features/docs/raketask.feature
596
+ - features/docs/report_called_undefined_steps.feature
597
+ - features/docs/wire_protocol.feature
598
+ - features/docs/wire_protocol_erb.feature
599
+ - features/docs/wire_protocol_table_diffing.feature
600
+ - features/docs/wire_protocol_tags.feature
601
+ - features/docs/wire_protocol_timeouts.feature
602
+ - features/docs/work_in_progress.feature
603
+ - features/docs/writing_support_code/around_hooks.feature
604
+ - features/docs/writing_support_code/before_hook.feature
605
+ - features/docs/writing_support_code/hook_order.feature
606
+ - features/docs/writing_support_code/load_path.feature
607
+ - features/docs/writing_support_code/state.feature
608
+ - features/docs/writing_support_code/tagged_hooks.feature
609
+ - features/lib/step_definitions/aruba_steps.rb
610
+ - features/lib/step_definitions/cucumber_steps.rb
611
+ - features/lib/step_definitions/iso-8859-1_steps.rb
612
+ - features/lib/step_definitions/json_steps.rb
613
+ - features/lib/step_definitions/junit_steps.rb
697
614
  - features/lib/step_definitions/language_steps.rb
698
- - features/load_path.feature
699
- - features/nested_steps.feature
700
- - features/nested_steps_i18n.feature
701
- - features/nested_steps_with_second_arg.feature
702
- - features/parsing.feature
703
- - features/pretty_formatter.feature
704
- - features/progress_formatter.feature
705
- - features/raketask.feature
706
- - features/rerun_formatter.feature
707
- - features/run_specific_scenarios.feature
708
- - features/stats_formatters.feature
709
- - features/step_definitions.feature
710
- - features/step_definitions/cucumber-features/cucumber_ruby_mappings.rb
711
- - features/step_definitions/cucumber_steps.rb
712
- - features/step_definitions/drb_steps.rb
713
- - features/step_definitions/iso-8859-1_steps.rb
714
- - features/support/env.rb
715
- - features/support/feature_factory.rb
716
- - features/tagged_hooks.feature
717
- - features/transforms.feature
718
- - fixtures/json/features/background.feature
719
- - fixtures/json/features/embed.feature
720
- - fixtures/json/features/one_passing_one_failing.feature
721
- - fixtures/json/features/step_definitions/steps.rb
722
- - fixtures/json/features/tables.feature
723
- - fixtures/junit/features/one_passing_one_failing.feature
724
- - fixtures/junit/features/pending.feature
725
- - fixtures/junit/features/scenario_outline.feature
726
- - fixtures/junit/features/some_subdirectory/one_passing_one_failing.feature
727
- - fixtures/junit/features/step_definitions/steps.rb
728
- - fixtures/self_test/README.textile
729
- - fixtures/self_test/Rakefile
730
- - fixtures/self_test/features/call_undefined_step_from_step_def.feature
731
- - fixtures/self_test/features/failing_expectation.feature
732
- - fixtures/self_test/features/lots_of_undefined.feature
733
- - fixtures/self_test/features/multiline_name.feature
734
- - fixtures/self_test/features/outline_sample.feature
735
- - fixtures/self_test/features/sample.feature
736
- - fixtures/self_test/features/search_sample.feature
737
- - fixtures/self_test/features/step_definitions/sample_steps.rb
738
- - fixtures/self_test/features/support/bubble_256x256.png
739
- - fixtures/self_test/features/support/env.rb
740
- - fixtures/self_test/features/tags_sample.feature
741
- - fixtures/self_test/features/tons_of_cukes.feature
742
- - fixtures/self_test/features/undefined_multiline_args.feature
743
- - fixtures/self_test/list-of-features.txt
744
- - fixtures/steps_library/features/step_definitions/steps_lib1.rb
745
- - fixtures/steps_library/features/step_definitions/steps_lib2.rb
746
- - fixtures/tickets/Rakefile
747
- - fixtures/tickets/features.html
748
- - fixtures/tickets/features/172.feature
749
- - fixtures/tickets/features/177/1.feature
750
- - fixtures/tickets/features/177/2.feature
751
- - fixtures/tickets/features/177/3.feature
752
- - fixtures/tickets/features/180.feature
753
- - fixtures/tickets/features/229/tagged_hooks.feature
754
- - fixtures/tickets/features/229/tagged_hooks.rb
755
- - fixtures/tickets/features/236.feature
756
- - fixtures/tickets/features/241.feature
757
- - fixtures/tickets/features/246.feature
758
- - fixtures/tickets/features/248.feature
759
- - fixtures/tickets/features/270/back.feature
760
- - fixtures/tickets/features/270/back.steps.rb
761
- - fixtures/tickets/features/272/hooks.feature
762
- - fixtures/tickets/features/272/hooks_steps.rb
763
- - fixtures/tickets/features/279/py_string_indent.feature
764
- - fixtures/tickets/features/279/py_string_indent.steps.rb
765
- - fixtures/tickets/features/279/wrong.feature_
766
- - fixtures/tickets/features/301/filter_background_tagged_hooks.feature
767
- - fixtures/tickets/features/301/filter_background_tagged_hooks_steps.rb
768
- - fixtures/tickets/features/306/only_background.feature
769
- - fixtures/tickets/features/around_timeout.feature
770
- - fixtures/tickets/features/gherkin_67.feature
771
- - fixtures/tickets/features/gherkin_68.feature
772
- - fixtures/tickets/features/half_manual.feature
773
- - fixtures/tickets/features/lib/eatting_machine.rb
774
- - fixtures/tickets/features/lib/pantry.rb
775
- - fixtures/tickets/features/scenario_outline.feature
776
- - fixtures/tickets/features/step_definitons/246_steps.rb
777
- - fixtures/tickets/features/step_definitons/248_steps.rb
778
- - fixtures/tickets/features/step_definitons/around_timeout_steps.rb
779
- - fixtures/tickets/features/step_definitons/half_manual_steps.rb
780
- - fixtures/tickets/features/step_definitons/scenario_outline_steps.rb
781
- - fixtures/tickets/features/step_definitons/tickets_steps.rb
782
- - fixtures/tickets/features/table_diffing.feature
783
- - fixtures/tickets/features/tickets.feature
615
+ - features/lib/step_definitions/profile_steps.rb
616
+ - features/lib/step_definitions/ruby_steps.rb
617
+ - features/lib/step_definitions/wire_steps.rb
618
+ - features/lib/support/env.rb
619
+ - features/lib/support/fake_wire_server.rb
620
+ - features/lib/support/feature_factory.rb
621
+ - features/lib/support/normalise_output.rb
784
622
  - gem_tasks/contributors.rake
623
+ - gem_tasks/cov.rake
785
624
  - gem_tasks/cucumber.rake
786
625
  - gem_tasks/downloads.rb
787
626
  - gem_tasks/environment.rake
@@ -799,56 +638,6 @@ files:
799
638
  - gem_tasks/yard/default/layout/html/layout.erb
800
639
  - gem_tasks/yard/default/layout/html/logo.erb
801
640
  - gem_tasks/yard/default/layout/html/setup.rb
802
- - legacy_features/README.md
803
- - legacy_features/announce.feature
804
- - legacy_features/api/list_step_defs_as_json.feature
805
- - legacy_features/api/run_cli_main_with_existing_runtime.feature
806
- - legacy_features/around_hooks.feature
807
- - legacy_features/bug_371.feature
808
- - legacy_features/bug_464.feature
809
- - legacy_features/bug_475.feature
810
- - legacy_features/bug_585_tab_indentation.feature
811
- - legacy_features/bug_600.feature
812
- - legacy_features/cucumber_cli.feature
813
- - legacy_features/cucumber_cli_outlines.feature
814
- - legacy_features/default_snippets.feature
815
- - legacy_features/diffing.feature
816
- - legacy_features/drb_server_integration.feature
817
- - legacy_features/exception_in_after_block.feature
818
- - legacy_features/exception_in_after_step_block.feature
819
- - legacy_features/exception_in_before_block.feature
820
- - legacy_features/exclude_files.feature
821
- - legacy_features/expand.feature
822
- - legacy_features/junit_formatter.feature
823
- - legacy_features/language_from_header.feature
824
- - legacy_features/listener_debugger_formatter.feature
825
- - legacy_features/multiline_names.feature
826
- - legacy_features/post_configuration_hook.feature
827
- - legacy_features/profiles.feature
828
- - legacy_features/rake_task.feature
829
- - legacy_features/report_called_undefined_steps.feature
830
- - legacy_features/rerun_formatter.feature
831
- - legacy_features/simplest.feature
832
- - legacy_features/snippet.feature
833
- - legacy_features/snippets_when_using_star_keyword.feature
834
- - legacy_features/step_definitions/cucumber_steps.rb
835
- - legacy_features/step_definitions/extra_steps.rb
836
- - legacy_features/step_definitions/simplest_steps.rb
837
- - legacy_features/step_definitions/wire_steps.rb
838
- - legacy_features/support/env.rb
839
- - legacy_features/support/env.rb.simplest
840
- - legacy_features/support/fake_wire_server.rb
841
- - legacy_features/table_diffing.feature
842
- - legacy_features/table_mapping.feature
843
- - legacy_features/transform.feature
844
- - legacy_features/unicode_table.feature
845
- - legacy_features/wire_protocol.feature
846
- - legacy_features/wire_protocol_erb.feature
847
- - legacy_features/wire_protocol_table_diffing.feature
848
- - legacy_features/wire_protocol_tags.feature
849
- - legacy_features/wire_protocol_timeouts.feature
850
- - legacy_features/work_in_progress.feature
851
- - lib/README.rdoc
852
641
  - lib/autotest/cucumber.rb
853
642
  - lib/autotest/cucumber_mixin.rb
854
643
  - lib/autotest/cucumber_rails.rb
@@ -858,31 +647,7 @@ files:
858
647
  - lib/autotest/cucumber_rspec2.rb
859
648
  - lib/autotest/discover.rb
860
649
  - lib/cucumber.rb
861
- - lib/cucumber/ast.rb
862
- - lib/cucumber/ast/background.rb
863
- - lib/cucumber/ast/comment.rb
864
- - lib/cucumber/ast/doc_string.rb
865
- - lib/cucumber/ast/empty_background.rb
866
- - lib/cucumber/ast/examples.rb
867
- - lib/cucumber/ast/feature.rb
868
- - lib/cucumber/ast/features.rb
869
- - lib/cucumber/ast/has_steps.rb
870
- - lib/cucumber/ast/location.rb
871
- - lib/cucumber/ast/multiline_argument.rb
872
- - lib/cucumber/ast/names.rb
873
- - lib/cucumber/ast/outline_table.rb
874
- - lib/cucumber/ast/scenario.rb
875
- - lib/cucumber/ast/scenario_outline.rb
876
- - lib/cucumber/ast/step.rb
877
- - lib/cucumber/ast/step_collection.rb
878
- - lib/cucumber/ast/step_invocation.rb
879
- - lib/cucumber/ast/table.rb
880
- - lib/cucumber/ast/tags.rb
881
- - lib/cucumber/ast/tree_walker.rb
882
- - lib/cucumber/ast/visitor.rb
883
- - lib/cucumber/broadcaster.rb
884
650
  - lib/cucumber/cli/configuration.rb
885
- - lib/cucumber/cli/drb_client.rb
886
651
  - lib/cucumber/cli/main.rb
887
652
  - lib/cucumber/cli/options.rb
888
653
  - lib/cucumber/cli/profile_loader.rb
@@ -892,7 +657,7 @@ files:
892
657
  - lib/cucumber/core_ext/proc.rb
893
658
  - lib/cucumber/core_ext/string.rb
894
659
  - lib/cucumber/errors.rb
895
- - lib/cucumber/feature_file.rb
660
+ - lib/cucumber/file_specs.rb
896
661
  - lib/cucumber/formatter/ansicolor.rb
897
662
  - lib/cucumber/formatter/console.rb
898
663
  - lib/cucumber/formatter/cucumber.css
@@ -908,7 +673,6 @@ files:
908
673
  - lib/cucumber/formatter/json.rb
909
674
  - lib/cucumber/formatter/json_pretty.rb
910
675
  - lib/cucumber/formatter/junit.rb
911
- - lib/cucumber/formatter/ordered_xml_markup.rb
912
676
  - lib/cucumber/formatter/pretty.rb
913
677
  - lib/cucumber/formatter/progress.rb
914
678
  - lib/cucumber/formatter/rerun.rb
@@ -917,18 +681,12 @@ files:
917
681
  - lib/cucumber/formatter/summary.rb
918
682
  - lib/cucumber/formatter/unicode.rb
919
683
  - lib/cucumber/formatter/usage.rb
920
- - lib/cucumber/js_support/js_dsl.js
921
- - lib/cucumber/js_support/js_language.rb
922
- - lib/cucumber/js_support/js_snippets.rb
923
684
  - lib/cucumber/language_support.rb
924
685
  - lib/cucumber/language_support/language_methods.rb
925
686
  - lib/cucumber/load_path.rb
926
- - lib/cucumber/parser.rb
927
- - lib/cucumber/parser/gherkin_builder.rb
687
+ - lib/cucumber/mappings.rb
688
+ - lib/cucumber/multiline_argument.rb
928
689
  - lib/cucumber/platform.rb
929
- - lib/cucumber/py_support/py_dsl.py
930
- - lib/cucumber/py_support/py_language.py
931
- - lib/cucumber/py_support/py_language.rb
932
690
  - lib/cucumber/rake/task.rb
933
691
  - lib/cucumber/rb_support/rb_dsl.rb
934
692
  - lib/cucumber/rb_support/rb_hook.rb
@@ -938,18 +696,23 @@ files:
938
696
  - lib/cucumber/rb_support/rb_world.rb
939
697
  - lib/cucumber/rb_support/regexp_argument_matcher.rb
940
698
  - lib/cucumber/rb_support/snippet.rb
699
+ - lib/cucumber/reports/legacy_formatter.rb
941
700
  - lib/cucumber/rspec/disable_option_parser.rb
942
701
  - lib/cucumber/rspec/doubles.rb
943
702
  - lib/cucumber/runtime.rb
944
703
  - lib/cucumber/runtime/features_loader.rb
945
704
  - lib/cucumber/runtime/for_programming_languages.rb
705
+ - lib/cucumber/runtime/gated_receiver.rb
946
706
  - lib/cucumber/runtime/results.rb
947
707
  - lib/cucumber/runtime/support_code.rb
708
+ - lib/cucumber/runtime/tag_limits.rb
709
+ - lib/cucumber/runtime/tag_limits/filter.rb
710
+ - lib/cucumber/runtime/tag_limits/test_case_index.rb
711
+ - lib/cucumber/runtime/tag_limits/verifier.rb
948
712
  - lib/cucumber/runtime/user_interface.rb
949
713
  - lib/cucumber/step_definition_light.rb
950
714
  - lib/cucumber/step_definitions.rb
951
715
  - lib/cucumber/step_match.rb
952
- - lib/cucumber/step_mother.rb
953
716
  - lib/cucumber/term/ansicolor.rb
954
717
  - lib/cucumber/unit.rb
955
718
  - lib/cucumber/wire_support/configuration.rb
@@ -961,26 +724,16 @@ files:
961
724
  - lib/cucumber/wire_support/wire_protocol.rb
962
725
  - lib/cucumber/wire_support/wire_protocol/requests.rb
963
726
  - lib/cucumber/wire_support/wire_step_definition.rb
964
- - spec/cucumber/ast/background_spec.rb
965
- - spec/cucumber/ast/doc_string_spec.rb
966
- - spec/cucumber/ast/feature_factory.rb
967
- - spec/cucumber/ast/feature_spec.rb
968
- - spec/cucumber/ast/features_spec.rb
969
- - spec/cucumber/ast/outline_table_spec.rb
970
- - spec/cucumber/ast/scenario_outline_spec.rb
971
- - spec/cucumber/ast/step_spec.rb
972
- - spec/cucumber/ast/table_spec.rb
973
- - spec/cucumber/ast/tree_walker_spec.rb
974
- - spec/cucumber/broadcaster_spec.rb
975
727
  - spec/cucumber/cli/configuration_spec.rb
976
- - spec/cucumber/cli/drb_client_spec.rb
977
728
  - spec/cucumber/cli/main_spec.rb
978
729
  - spec/cucumber/cli/options_spec.rb
979
730
  - spec/cucumber/cli/profile_loader_spec.rb
980
731
  - spec/cucumber/configuration_spec.rb
981
732
  - spec/cucumber/constantize_spec.rb
982
733
  - spec/cucumber/core_ext/proc_spec.rb
734
+ - spec/cucumber/file_specs_spec.rb
983
735
  - spec/cucumber/formatter/ansicolor_spec.rb
736
+ - spec/cucumber/formatter/debug_spec.rb
984
737
  - spec/cucumber/formatter/duration_spec.rb
985
738
  - spec/cucumber/formatter/html_spec.rb
986
739
  - spec/cucumber/formatter/interceptor_spec.rb
@@ -989,15 +742,19 @@ files:
989
742
  - spec/cucumber/formatter/progress_spec.rb
990
743
  - spec/cucumber/formatter/spec_helper.rb
991
744
  - spec/cucumber/rake/forked_spec.rb
992
- - spec/cucumber/rake/rcov_spec.rb
993
745
  - spec/cucumber/rb_support/rb_language_spec.rb
994
746
  - spec/cucumber/rb_support/rb_step_definition_spec.rb
995
747
  - spec/cucumber/rb_support/rb_transform_spec.rb
996
748
  - spec/cucumber/rb_support/regexp_argument_matcher_spec.rb
997
749
  - spec/cucumber/rb_support/snippet_spec.rb
750
+ - spec/cucumber/reports/legacy_formatter_spec.rb
998
751
  - spec/cucumber/runtime/for_programming_languages_spec.rb
752
+ - spec/cucumber/runtime/gated_receiver_spec.rb
999
753
  - spec/cucumber/runtime/results_spec.rb
1000
754
  - spec/cucumber/runtime/support_code_spec.rb
755
+ - spec/cucumber/runtime/tag_limits/filter_spec.rb
756
+ - spec/cucumber/runtime/tag_limits/test_case_index_spec.rb
757
+ - spec/cucumber/runtime/tag_limits/verifier_spec.rb
1001
758
  - spec/cucumber/runtime_spec.rb
1002
759
  - spec/cucumber/sell_cucumbers.feature
1003
760
  - spec/cucumber/step_match_spec.rb
@@ -1006,92 +763,122 @@ files:
1006
763
  - spec/cucumber/wire_support/wire_exception_spec.rb
1007
764
  - spec/cucumber/wire_support/wire_language_spec.rb
1008
765
  - spec/cucumber/wire_support/wire_packet_spec.rb
1009
- - spec/cucumber/wire_support/wire_step_definition_spec.rb
1010
766
  - spec/cucumber/world/pending_spec.rb
767
+ - spec/simplecov_setup.rb
1011
768
  - spec/spec_helper.rb
1012
769
  homepage: http://cukes.info
1013
- licenses: []
770
+ licenses:
771
+ - MIT
772
+ metadata: {}
1014
773
  post_install_message:
1015
774
  rdoc_options:
1016
- - --charset=UTF-8
775
+ - "--charset=UTF-8"
1017
776
  require_paths:
1018
777
  - lib
1019
778
  required_ruby_version: !ruby/object:Gem::Requirement
1020
- none: false
1021
779
  requirements:
1022
- - - ! '>='
780
+ - - ">="
1023
781
  - !ruby/object:Gem::Version
1024
- version: '0'
782
+ version: 1.9.3
1025
783
  required_rubygems_version: !ruby/object:Gem::Requirement
1026
- none: false
1027
784
  requirements:
1028
- - - ! '>='
785
+ - - ">"
1029
786
  - !ruby/object:Gem::Version
1030
- version: '0'
787
+ version: 1.3.1
1031
788
  requirements: []
1032
789
  rubyforge_project:
1033
- rubygems_version: 1.8.23.2
790
+ rubygems_version: 2.2.2
1034
791
  signing_key:
1035
- specification_version: 3
1036
- summary: cucumber-1.3.20
792
+ specification_version: 4
793
+ summary: cucumber-2.0.0.beta.1
1037
794
  test_files:
1038
- - features/assertions.feature
1039
- - features/autoformat_profile_output.feature
1040
- - features/background.feature
1041
- - features/backtraces.feature
1042
- - features/before_hook.feature
1043
- - features/bootstrap.feature
1044
- - features/custom_formatter.feature
1045
- - features/doc_strings.feature
795
+ - features/docs/api/list_step_defs_as_json.feature
796
+ - features/docs/api/run_cli_main_with_existing_runtime.feature
797
+ - features/docs/cli/backtraces.feature
798
+ - features/docs/cli/dry_run.feature
799
+ - features/docs/cli/exclude_files.feature
800
+ - features/docs/cli/execute_with_tag_filter.feature
801
+ - features/docs/cli/randomize.feature
802
+ - features/docs/cli/require.feature
803
+ - features/docs/cli/run_scenarios_matching_name.feature
804
+ - features/docs/cli/run_specific_scenarios.feature
805
+ - features/docs/cli/showing_differences.feature
806
+ - features/docs/cli/specifying_multiple_formatters.feature
807
+ - features/docs/cli/strict_mode.feature
808
+ - features/docs/defining_steps/nested_steps.feature
809
+ - features/docs/defining_steps/nested_steps_i18n.feature
810
+ - features/docs/defining_steps/nested_steps_with_second_arg.feature
811
+ - features/docs/defining_steps/one_line_step_definitions.feature
812
+ - features/docs/defining_steps/printing_messages.feature
813
+ - features/docs/defining_steps/skip_scenario.feature
814
+ - features/docs/defining_steps/snippets.feature
815
+ - features/docs/defining_steps/table_diffing.feature
816
+ - features/docs/defining_steps/transforms.feature
817
+ - features/docs/exception_in_after_hook.feature
818
+ - features/docs/exception_in_after_step_hook.feature
819
+ - features/docs/exception_in_before_hook.feature
820
+ - features/docs/extending_cucumber/custom_formatter.feature
821
+ - features/docs/extending_cucumber/formatter_callbacks.feature
822
+ - features/docs/formatters/debug_formatter.feature
823
+ - features/docs/formatters/formatter_step_file_colon_line.feature
824
+ - features/docs/formatters/html_formatter.feature
825
+ - features/docs/formatters/json_formatter.feature
826
+ - features/docs/formatters/junit_formatter.feature
827
+ - features/docs/formatters/pretty_formatter.feature
828
+ - features/docs/formatters/progress_formatter.feature
829
+ - features/docs/formatters/rerun_formatter.feature
830
+ - features/docs/formatters/usage_formatter.feature
831
+ - features/docs/getting_started.feature
832
+ - features/docs/gherkin/background.feature
833
+ - features/docs/gherkin/doc_strings.feature
834
+ - features/docs/gherkin/expand_option_for_outlines.feature
835
+ - features/docs/gherkin/language_from_header.feature
1046
836
  - features/docs/gherkin/language_help.feature
1047
- - features/drb_server_integration.feature
1048
- - features/execute_with_tag_filter.feature
1049
- - features/formatter_callbacks.feature
1050
- - features/formatter_step_file_colon_line.feature
1051
- - features/html_formatter.feature
1052
- - features/iso-8859-1.feature
1053
- - features/json_formatter.feature
837
+ - features/docs/gherkin/outlines.feature
838
+ - features/docs/gherkin/unicode_table.feature
839
+ - features/docs/gherkin/using_descriptions.feature
840
+ - features/docs/gherkin/using_star_notation.feature
841
+ - features/docs/iso-8859-1.feature
842
+ - features/docs/post_configuration_hook.feature
843
+ - features/docs/profiles.feature
844
+ - features/docs/rake_task.feature
845
+ - features/docs/raketask.feature
846
+ - features/docs/report_called_undefined_steps.feature
847
+ - features/docs/wire_protocol.feature
848
+ - features/docs/wire_protocol_erb.feature
849
+ - features/docs/wire_protocol_table_diffing.feature
850
+ - features/docs/wire_protocol_tags.feature
851
+ - features/docs/wire_protocol_timeouts.feature
852
+ - features/docs/work_in_progress.feature
853
+ - features/docs/writing_support_code/around_hooks.feature
854
+ - features/docs/writing_support_code/before_hook.feature
855
+ - features/docs/writing_support_code/hook_order.feature
856
+ - features/docs/writing_support_code/load_path.feature
857
+ - features/docs/writing_support_code/state.feature
858
+ - features/docs/writing_support_code/tagged_hooks.feature
859
+ - features/lib/step_definitions/aruba_steps.rb
860
+ - features/lib/step_definitions/cucumber_steps.rb
861
+ - features/lib/step_definitions/iso-8859-1_steps.rb
862
+ - features/lib/step_definitions/json_steps.rb
863
+ - features/lib/step_definitions/junit_steps.rb
1054
864
  - features/lib/step_definitions/language_steps.rb
1055
- - features/load_path.feature
1056
- - features/nested_steps.feature
1057
- - features/nested_steps_i18n.feature
1058
- - features/nested_steps_with_second_arg.feature
1059
- - features/parsing.feature
1060
- - features/pretty_formatter.feature
1061
- - features/progress_formatter.feature
1062
- - features/raketask.feature
1063
- - features/rerun_formatter.feature
1064
- - features/run_specific_scenarios.feature
1065
- - features/stats_formatters.feature
1066
- - features/step_definitions.feature
1067
- - features/step_definitions/cucumber-features/cucumber_ruby_mappings.rb
1068
- - features/step_definitions/cucumber_steps.rb
1069
- - features/step_definitions/drb_steps.rb
1070
- - features/step_definitions/iso-8859-1_steps.rb
1071
- - features/support/env.rb
1072
- - features/support/feature_factory.rb
1073
- - features/tagged_hooks.feature
1074
- - features/transforms.feature
1075
- - spec/cucumber/ast/background_spec.rb
1076
- - spec/cucumber/ast/doc_string_spec.rb
1077
- - spec/cucumber/ast/feature_factory.rb
1078
- - spec/cucumber/ast/feature_spec.rb
1079
- - spec/cucumber/ast/features_spec.rb
1080
- - spec/cucumber/ast/outline_table_spec.rb
1081
- - spec/cucumber/ast/scenario_outline_spec.rb
1082
- - spec/cucumber/ast/step_spec.rb
1083
- - spec/cucumber/ast/table_spec.rb
1084
- - spec/cucumber/ast/tree_walker_spec.rb
1085
- - spec/cucumber/broadcaster_spec.rb
865
+ - features/lib/step_definitions/profile_steps.rb
866
+ - features/lib/step_definitions/ruby_steps.rb
867
+ - features/lib/step_definitions/wire_steps.rb
868
+ - features/lib/support/env.rb
869
+ - features/lib/support/fake_wire_server.rb
870
+ - features/lib/support/feature_factory.rb
871
+ - features/lib/support/normalise_output.rb
1086
872
  - spec/cucumber/cli/configuration_spec.rb
1087
- - spec/cucumber/cli/drb_client_spec.rb
1088
873
  - spec/cucumber/cli/main_spec.rb
1089
874
  - spec/cucumber/cli/options_spec.rb
1090
875
  - spec/cucumber/cli/profile_loader_spec.rb
1091
876
  - spec/cucumber/configuration_spec.rb
1092
877
  - spec/cucumber/constantize_spec.rb
1093
878
  - spec/cucumber/core_ext/proc_spec.rb
879
+ - spec/cucumber/file_specs_spec.rb
1094
880
  - spec/cucumber/formatter/ansicolor_spec.rb
881
+ - spec/cucumber/formatter/debug_spec.rb
1095
882
  - spec/cucumber/formatter/duration_spec.rb
1096
883
  - spec/cucumber/formatter/html_spec.rb
1097
884
  - spec/cucumber/formatter/interceptor_spec.rb
@@ -1100,15 +887,19 @@ test_files:
1100
887
  - spec/cucumber/formatter/progress_spec.rb
1101
888
  - spec/cucumber/formatter/spec_helper.rb
1102
889
  - spec/cucumber/rake/forked_spec.rb
1103
- - spec/cucumber/rake/rcov_spec.rb
1104
890
  - spec/cucumber/rb_support/rb_language_spec.rb
1105
891
  - spec/cucumber/rb_support/rb_step_definition_spec.rb
1106
892
  - spec/cucumber/rb_support/rb_transform_spec.rb
1107
893
  - spec/cucumber/rb_support/regexp_argument_matcher_spec.rb
1108
894
  - spec/cucumber/rb_support/snippet_spec.rb
895
+ - spec/cucumber/reports/legacy_formatter_spec.rb
1109
896
  - spec/cucumber/runtime/for_programming_languages_spec.rb
897
+ - spec/cucumber/runtime/gated_receiver_spec.rb
1110
898
  - spec/cucumber/runtime/results_spec.rb
1111
899
  - spec/cucumber/runtime/support_code_spec.rb
900
+ - spec/cucumber/runtime/tag_limits/filter_spec.rb
901
+ - spec/cucumber/runtime/tag_limits/test_case_index_spec.rb
902
+ - spec/cucumber/runtime/tag_limits/verifier_spec.rb
1112
903
  - spec/cucumber/runtime_spec.rb
1113
904
  - spec/cucumber/sell_cucumbers.feature
1114
905
  - spec/cucumber/step_match_spec.rb
@@ -1117,7 +908,7 @@ test_files:
1117
908
  - spec/cucumber/wire_support/wire_exception_spec.rb
1118
909
  - spec/cucumber/wire_support/wire_language_spec.rb
1119
910
  - spec/cucumber/wire_support/wire_packet_spec.rb
1120
- - spec/cucumber/wire_support/wire_step_definition_spec.rb
1121
911
  - spec/cucumber/world/pending_spec.rb
912
+ - spec/simplecov_setup.rb
1122
913
  - spec/spec_helper.rb
1123
914
  has_rdoc: