cucumber 2.0.0.rc.5 → 4.0.0.rc.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (527) hide show
  1. checksums.yaml +5 -5
  2. data/{History.md → CHANGELOG.md} +700 -264
  3. data/CONTRIBUTING.md +26 -23
  4. data/LICENSE +1 -1
  5. data/README.md +25 -8
  6. data/bin/cucumber +3 -3
  7. data/lib/autotest/cucumber.rb +2 -0
  8. data/lib/autotest/cucumber_mixin.rb +45 -48
  9. data/lib/autotest/cucumber_rails.rb +2 -0
  10. data/lib/autotest/cucumber_rails_rspec.rb +2 -0
  11. data/lib/autotest/cucumber_rails_rspec2.rb +2 -0
  12. data/lib/autotest/cucumber_rspec.rb +2 -0
  13. data/lib/autotest/cucumber_rspec2.rb +2 -0
  14. data/lib/autotest/discover.rb +4 -2
  15. data/lib/cucumber.rb +3 -7
  16. data/lib/cucumber/cli/configuration.rb +23 -106
  17. data/lib/cucumber/cli/main.rb +45 -25
  18. data/lib/cucumber/cli/options.rb +410 -229
  19. data/lib/cucumber/cli/profile_loader.rb +64 -38
  20. data/lib/cucumber/cli/rerun_file.rb +31 -0
  21. data/lib/cucumber/configuration.rb +240 -8
  22. data/lib/cucumber/constantize.rb +9 -10
  23. data/lib/cucumber/core_ext/string.rb +3 -1
  24. data/lib/cucumber/deprecate.rb +30 -0
  25. data/lib/cucumber/encoding.rb +3 -1
  26. data/lib/cucumber/errors.rb +9 -8
  27. data/lib/cucumber/events.rb +40 -0
  28. data/lib/cucumber/events/gherkin_source_parsed.rb +11 -0
  29. data/lib/cucumber/events/gherkin_source_read.rb +14 -0
  30. data/lib/cucumber/events/step_activated.rb +26 -0
  31. data/lib/cucumber/events/step_definition_registered.rb +20 -0
  32. data/lib/cucumber/events/test_case_finished.rb +14 -0
  33. data/lib/cucumber/events/test_case_started.rb +11 -0
  34. data/lib/cucumber/events/test_run_finished.rb +11 -0
  35. data/lib/cucumber/events/test_run_started.rb +14 -0
  36. data/lib/cucumber/events/test_step_finished.rb +14 -0
  37. data/lib/cucumber/events/test_step_started.rb +11 -0
  38. data/lib/cucumber/file_specs.rb +8 -6
  39. data/lib/cucumber/filters.rb +4 -0
  40. data/lib/cucumber/filters/activate_steps.rb +48 -7
  41. data/lib/cucumber/filters/apply_after_hooks.rb +2 -0
  42. data/lib/cucumber/filters/apply_after_step_hooks.rb +2 -0
  43. data/lib/cucumber/filters/apply_around_hooks.rb +2 -0
  44. data/lib/cucumber/filters/apply_before_hooks.rb +2 -0
  45. data/lib/cucumber/filters/broadcast_test_run_started_event.rb +28 -0
  46. data/lib/cucumber/filters/gated_receiver.rb +2 -2
  47. data/lib/cucumber/filters/prepare_world.rb +7 -13
  48. data/lib/cucumber/filters/quit.rb +4 -7
  49. data/lib/cucumber/filters/randomizer.rb +10 -5
  50. data/lib/cucumber/filters/retry.rb +32 -0
  51. data/lib/cucumber/filters/tag_limits.rb +6 -5
  52. data/lib/cucumber/filters/tag_limits/test_case_index.rb +2 -2
  53. data/lib/cucumber/filters/tag_limits/verifier.rb +5 -7
  54. data/lib/cucumber/formatter/ansicolor.rb +39 -45
  55. data/lib/cucumber/formatter/ast_lookup.rb +165 -0
  56. data/lib/cucumber/formatter/backtrace_filter.rb +54 -0
  57. data/lib/cucumber/formatter/console.rb +93 -115
  58. data/lib/cucumber/formatter/console_counts.rb +39 -0
  59. data/lib/cucumber/formatter/console_issues.rb +61 -0
  60. data/lib/cucumber/formatter/duration.rb +3 -1
  61. data/lib/cucumber/formatter/duration_extractor.rb +31 -0
  62. data/lib/cucumber/formatter/fail_fast.rb +23 -0
  63. data/lib/cucumber/formatter/fanout.rb +4 -3
  64. data/lib/cucumber/formatter/ignore_missing_messages.rb +3 -4
  65. data/lib/cucumber/formatter/interceptor.rb +13 -14
  66. data/lib/cucumber/formatter/io.rb +10 -5
  67. data/lib/cucumber/formatter/json.rb +310 -8
  68. data/lib/cucumber/formatter/junit.rb +143 -173
  69. data/lib/cucumber/formatter/pretty.rb +359 -154
  70. data/lib/cucumber/formatter/progress.rb +78 -72
  71. data/lib/cucumber/formatter/rerun.rb +34 -17
  72. data/lib/cucumber/formatter/stepdefs.rb +3 -2
  73. data/lib/cucumber/formatter/steps.rb +7 -7
  74. data/lib/cucumber/formatter/summary.rb +50 -20
  75. data/lib/cucumber/formatter/unicode.rb +17 -18
  76. data/lib/cucumber/formatter/usage.rb +61 -54
  77. data/lib/cucumber/gherkin/data_table_parser.rb +44 -0
  78. data/lib/cucumber/gherkin/formatter/ansi_escapes.rb +97 -0
  79. data/lib/cucumber/gherkin/formatter/escaping.rb +19 -0
  80. data/lib/cucumber/gherkin/i18n.rb +17 -0
  81. data/lib/cucumber/gherkin/steps_parser.rb +42 -0
  82. data/lib/cucumber/{rb_support/rb_dsl.rb → glue/dsl.rb} +47 -26
  83. data/lib/cucumber/glue/hook.rb +51 -0
  84. data/lib/cucumber/glue/invoke_in_world.rb +65 -0
  85. data/lib/cucumber/glue/proto_world.rb +219 -0
  86. data/lib/cucumber/glue/registry_and_more.rb +192 -0
  87. data/lib/cucumber/glue/snippet.rb +205 -0
  88. data/lib/cucumber/glue/step_definition.rb +142 -0
  89. data/lib/cucumber/glue/world_factory.rb +21 -0
  90. data/lib/cucumber/hooks.rb +34 -21
  91. data/lib/cucumber/load_path.rb +2 -0
  92. data/lib/cucumber/multiline_argument.rb +10 -24
  93. data/lib/cucumber/multiline_argument/data_table.rb +157 -253
  94. data/lib/cucumber/multiline_argument/data_table/diff_matrices.rb +154 -0
  95. data/lib/cucumber/multiline_argument/doc_string.rb +3 -2
  96. data/lib/cucumber/platform.rb +7 -10
  97. data/lib/cucumber/project_initializer.rb +4 -3
  98. data/lib/cucumber/rake/task.rb +37 -29
  99. data/lib/cucumber/rspec/disable_option_parser.rb +11 -8
  100. data/lib/cucumber/rspec/doubles.rb +3 -1
  101. data/lib/cucumber/running_test_case.rb +15 -70
  102. data/lib/cucumber/runtime.rb +83 -81
  103. data/lib/cucumber/runtime/after_hooks.rb +10 -7
  104. data/lib/cucumber/runtime/before_hooks.rb +12 -6
  105. data/lib/cucumber/runtime/for_programming_languages.rb +14 -44
  106. data/lib/cucumber/runtime/step_hooks.rb +8 -4
  107. data/lib/cucumber/runtime/support_code.rb +46 -160
  108. data/lib/cucumber/runtime/user_interface.rb +15 -24
  109. data/lib/cucumber/step_definition_light.rb +10 -6
  110. data/lib/cucumber/step_definitions.rb +6 -4
  111. data/lib/cucumber/step_match.rb +58 -38
  112. data/lib/cucumber/step_match_search.rb +67 -0
  113. data/lib/cucumber/term/ansicolor.rb +40 -39
  114. data/lib/cucumber/unit.rb +2 -0
  115. data/lib/cucumber/version +1 -0
  116. data/{spec → lib}/simplecov_setup.rb +3 -1
  117. metadata +257 -621
  118. data/.coveralls.yml +0 -1
  119. data/.rspec +0 -1
  120. data/.ruby-gemset +0 -1
  121. data/.travis.yml +0 -18
  122. data/.yardopts +0 -1
  123. data/Gemfile +0 -11
  124. data/Rakefile +0 -22
  125. data/cucumber.gemspec +0 -50
  126. data/cucumber.yml +0 -20
  127. data/examples/i18n/README.textile +0 -3
  128. data/examples/i18n/Rakefile +0 -33
  129. data/examples/i18n/ar/Rakefile +0 -6
  130. data/examples/i18n/ar/features/addition.feature +0 -17
  131. data/examples/i18n/ar/features/step_definitions/calculator_steps.rb +0 -24
  132. data/examples/i18n/ar/lib/calculator.rb +0 -11
  133. data/examples/i18n/bg/Rakefile +0 -6
  134. data/examples/i18n/bg/features/addition.feature +0 -12
  135. data/examples/i18n/bg/features/consecutive_calculations.feature +0 -19
  136. data/examples/i18n/bg/features/division.feature +0 -17
  137. data/examples/i18n/bg/features/step_definitions/calculator_steps.rb +0 -24
  138. data/examples/i18n/bg/features/support/env.rb +0 -5
  139. data/examples/i18n/bg/features/support/world.rb +0 -8
  140. data/examples/i18n/bg/lib/calculator.rb +0 -24
  141. data/examples/i18n/ca/Rakefile +0 -6
  142. data/examples/i18n/ca/features/step_definitions/calculator_steps.rb +0 -21
  143. data/examples/i18n/ca/features/suma.feature +0 -17
  144. data/examples/i18n/ca/lib/calculadora.rb +0 -16
  145. data/examples/i18n/cs/Rakefile +0 -6
  146. data/examples/i18n/cs/features/addition.feature +0 -17
  147. data/examples/i18n/cs/features/division.feature +0 -11
  148. data/examples/i18n/cs/features/step_definitions/calculator_steps.rb +0 -24
  149. data/examples/i18n/cs/lib/calculator.rb +0 -14
  150. data/examples/i18n/da/Rakefile +0 -6
  151. data/examples/i18n/da/features/sammenlaegning.feature +0 -18
  152. data/examples/i18n/da/features/step_definitions/lommeregner_steps.rb +0 -24
  153. data/examples/i18n/da/lib/lommeregner.rb +0 -11
  154. data/examples/i18n/de/Rakefile +0 -6
  155. data/examples/i18n/de/features/addition.feature +0 -17
  156. data/examples/i18n/de/features/division.feature +0 -10
  157. data/examples/i18n/de/features/step_definitions/calculator_steps.rb +0 -24
  158. data/examples/i18n/de/lib/calculator.rb +0 -14
  159. data/examples/i18n/el/Rakefile +0 -6
  160. data/examples/i18n/el/features/addition.feature +0 -17
  161. data/examples/i18n/el/features/division.feature +0 -10
  162. data/examples/i18n/el/features/step_definitions/calculator_steps.rb +0 -24
  163. data/examples/i18n/el/lib/calculator.rb +0 -14
  164. data/examples/i18n/en-lol/Rakefile +0 -4
  165. data/examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb +0 -16
  166. data/examples/i18n/en-lol/features/stuffing.feature +0 -8
  167. data/examples/i18n/en-lol/features/support/env.rb +0 -7
  168. data/examples/i18n/en-lol/lib/basket.rb +0 -12
  169. data/examples/i18n/en-lol/lib/belly.rb +0 -11
  170. data/examples/i18n/en/Rakefile +0 -6
  171. data/examples/i18n/en/features/addition.feature +0 -17
  172. data/examples/i18n/en/features/division.feature +0 -10
  173. data/examples/i18n/en/features/step_definitions/calculator_steps.rb +0 -24
  174. data/examples/i18n/en/lib/calculator.rb +0 -14
  175. data/examples/i18n/eo/Rakefile +0 -6
  176. data/examples/i18n/eo/features/adicio.feature +0 -17
  177. data/examples/i18n/eo/features/divido.feature +0 -10
  178. data/examples/i18n/eo/features/step_definitions/calculator_steps.rb +0 -24
  179. data/examples/i18n/eo/lib/calculator.rb +0 -14
  180. data/examples/i18n/es/Rakefile +0 -6
  181. data/examples/i18n/es/features/adicion.feature +0 -17
  182. data/examples/i18n/es/features/step_definitions/calculador_steps.rb +0 -21
  183. data/examples/i18n/es/lib/calculador.rb +0 -14
  184. data/examples/i18n/et/Rakefile +0 -6
  185. data/examples/i18n/et/features/jagamine.feature +0 -10
  186. data/examples/i18n/et/features/liitmine.feature +0 -17
  187. data/examples/i18n/et/features/step_definitions/kalkulaator_steps.rb +0 -24
  188. data/examples/i18n/et/lib/kalkulaator.rb +0 -14
  189. data/examples/i18n/fi/Rakefile +0 -6
  190. data/examples/i18n/fi/features/jakolasku.feature +0 -10
  191. data/examples/i18n/fi/features/step_definitions/laskin_steps.rb +0 -24
  192. data/examples/i18n/fi/features/yhteenlasku.feature +0 -17
  193. data/examples/i18n/fi/lib/laskin.rb +0 -14
  194. data/examples/i18n/fr/Rakefile +0 -8
  195. data/examples/i18n/fr/features/addition.feature +0 -18
  196. data/examples/i18n/fr/features/addition2.feature +0 -17
  197. data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +0 -32
  198. data/examples/i18n/fr/features/support/env.rb +0 -5
  199. data/examples/i18n/fr/lib/calculatrice.rb +0 -10
  200. data/examples/i18n/he/Rakefile +0 -6
  201. data/examples/i18n/he/features/addition.feature +0 -17
  202. data/examples/i18n/he/features/division.feature +0 -10
  203. data/examples/i18n/he/features/step_definitions/calculator_steps.rb +0 -24
  204. data/examples/i18n/he/lib/calculator.rb +0 -15
  205. data/examples/i18n/hi/Rakefile +0 -6
  206. data/examples/i18n/hi/features/addition.feature +0 -16
  207. data/examples/i18n/hi/features/division.feature +0 -10
  208. data/examples/i18n/hi/features/step_definitions/calculator_steps.rb +0 -24
  209. data/examples/i18n/hi/lib/calculator.rb +0 -15
  210. data/examples/i18n/ht/Rakefile +0 -6
  211. data/examples/i18n/ht/features/adisyon.feature +0 -17
  212. data/examples/i18n/ht/features/divizyon.feature +0 -10
  213. data/examples/i18n/ht/features/step_definitions/kalkilatris_steps.rb +0 -25
  214. data/examples/i18n/ht/lib/kalkilatris.rb +0 -14
  215. data/examples/i18n/hu/Rakefile +0 -6
  216. data/examples/i18n/hu/features/osszeadas.feature +0 -17
  217. data/examples/i18n/hu/features/osztas.feature +0 -10
  218. data/examples/i18n/hu/features/step_definitions/calculator_steps.rb +0 -25
  219. data/examples/i18n/hu/lib/calculator.rb +0 -14
  220. data/examples/i18n/id/Rakefile +0 -6
  221. data/examples/i18n/id/features/addition.feature +0 -17
  222. data/examples/i18n/id/features/division.feature +0 -10
  223. data/examples/i18n/id/features/step_definitions/calculator_steps.rb +0 -24
  224. data/examples/i18n/id/lib/calculator.rb +0 -14
  225. data/examples/i18n/it/Rakefile +0 -6
  226. data/examples/i18n/it/features/somma.feature +0 -11
  227. data/examples/i18n/it/features/step_definitions/calcolatrice_steps.rb +0 -24
  228. data/examples/i18n/it/lib/calcolatrice.rb +0 -11
  229. data/examples/i18n/ja/Rakefile +0 -6
  230. data/examples/i18n/ja/features/addition.feature +0 -17
  231. data/examples/i18n/ja/features/division.feature +0 -10
  232. data/examples/i18n/ja/features/step_definitions/calculator_steps.rb +0 -19
  233. data/examples/i18n/ja/features/support/env.rb +0 -5
  234. data/examples/i18n/ja/lib/calculator.rb +0 -14
  235. data/examples/i18n/ko/Rakefile +0 -6
  236. data/examples/i18n/ko/features/addition.feature +0 -17
  237. data/examples/i18n/ko/features/division.feature +0 -11
  238. data/examples/i18n/ko/features/step_definitions/calculator_steps.rb +0 -24
  239. data/examples/i18n/ko/lib/calculator.rb +0 -14
  240. data/examples/i18n/lt/Rakefile +0 -6
  241. data/examples/i18n/lt/features/addition.feature +0 -17
  242. data/examples/i18n/lt/features/division.feature +0 -10
  243. data/examples/i18n/lt/features/step_definitions/calculator_steps.rb +0 -24
  244. data/examples/i18n/lt/lib/calculator.rb +0 -14
  245. data/examples/i18n/lv/Rakefile +0 -6
  246. data/examples/i18n/lv/features/addition.feature +0 -17
  247. data/examples/i18n/lv/features/division.feature +0 -10
  248. data/examples/i18n/lv/features/step_definitions/calculator_steps.rb +0 -24
  249. data/examples/i18n/lv/lib/calculator.rb +0 -14
  250. data/examples/i18n/no/Rakefile +0 -6
  251. data/examples/i18n/no/features/step_definitions/kalkulator_steps.rb +0 -17
  252. data/examples/i18n/no/features/summering.feature +0 -19
  253. data/examples/i18n/no/features/support/env.rb +0 -6
  254. data/examples/i18n/no/lib/kalkulator.rb +0 -11
  255. data/examples/i18n/pl/Rakefile +0 -6
  256. data/examples/i18n/pl/features/addition.feature +0 -17
  257. data/examples/i18n/pl/features/division.feature +0 -10
  258. data/examples/i18n/pl/features/step_definitions/calculator_steps.rb +0 -24
  259. data/examples/i18n/pl/features/support/env.rb +0 -5
  260. data/examples/i18n/pl/lib/calculator.rb +0 -14
  261. data/examples/i18n/pt/Rakefile +0 -6
  262. data/examples/i18n/pt/features/adicao.feature +0 -11
  263. data/examples/i18n/pt/features/step_definitions/calculadora_steps.rb +0 -20
  264. data/examples/i18n/pt/features/support/env.rb +0 -5
  265. data/examples/i18n/pt/lib/calculadora.rb +0 -10
  266. data/examples/i18n/ro/Rakefile +0 -6
  267. data/examples/i18n/ro/features/adunare.feature +0 -12
  268. data/examples/i18n/ro/features/step_definitions/calculator_steps.rb +0 -21
  269. data/examples/i18n/ro/lib/calculator.rb +0 -11
  270. data/examples/i18n/ru/Rakefile +0 -6
  271. data/examples/i18n/ru/features/addition.feature +0 -11
  272. data/examples/i18n/ru/features/consecutive_calculations.feature +0 -17
  273. data/examples/i18n/ru/features/division.feature +0 -16
  274. data/examples/i18n/ru/features/step_definitions/calculator_steps.rb +0 -19
  275. data/examples/i18n/ru/features/support/env.rb +0 -5
  276. data/examples/i18n/ru/features/support/world.rb +0 -8
  277. data/examples/i18n/ru/lib/calculator.rb +0 -24
  278. data/examples/i18n/sk/Rakefile +0 -6
  279. data/examples/i18n/sk/features/addition.feature +0 -17
  280. data/examples/i18n/sk/features/division.feature +0 -10
  281. data/examples/i18n/sk/features/step_definitions/calculator_steps.rb +0 -24
  282. data/examples/i18n/sk/lib/calculator.rb +0 -14
  283. data/examples/i18n/sr-Cyrl/Rakefile +0 -6
  284. data/examples/i18n/sr-Cyrl/features/sabiranje.feature +0 -18
  285. data/examples/i18n/sr-Cyrl/features/step_definitions/calculator_steps.rb +0 -20
  286. data/examples/i18n/sr-Cyrl/features/support/env.rb +0 -5
  287. data/examples/i18n/sr-Cyrl/lib/calculator.rb +0 -12
  288. data/examples/i18n/sr-Latn/Rakefile +0 -6
  289. data/examples/i18n/sr-Latn/features/sabiranje.feature +0 -18
  290. data/examples/i18n/sr-Latn/features/step_definitions/calculator_steps.rb +0 -24
  291. data/examples/i18n/sr-Latn/lib/calculator.rb +0 -12
  292. data/examples/i18n/sv/Rakefile +0 -6
  293. data/examples/i18n/sv/features/step_definitions/kalkulator_steps.rb +0 -24
  294. data/examples/i18n/sv/features/summering.feature +0 -18
  295. data/examples/i18n/sv/lib/kalkulator.rb +0 -11
  296. data/examples/i18n/tr/Rakefile +0 -6
  297. data/examples/i18n/tr/features/bolme.feature +0 -10
  298. data/examples/i18n/tr/features/step_definitions/hesap_makinesi_adimlari.rb +0 -24
  299. data/examples/i18n/tr/features/toplama.feature +0 -18
  300. data/examples/i18n/tr/lib/hesap_makinesi.rb +0 -15
  301. data/examples/i18n/uk/Rakefile +0 -6
  302. data/examples/i18n/uk/features/addition.feature +0 -11
  303. data/examples/i18n/uk/features/consecutive_calculations.feature +0 -17
  304. data/examples/i18n/uk/features/division.feature +0 -16
  305. data/examples/i18n/uk/features/step_definitions/calculator_steps.rb +0 -19
  306. data/examples/i18n/uk/features/support/env.rb +0 -5
  307. data/examples/i18n/uk/features/support/world.rb +0 -8
  308. data/examples/i18n/uk/lib/calculator.rb +0 -24
  309. data/examples/i18n/uz/Rakefile +0 -6
  310. data/examples/i18n/uz/features/addition.feature +0 -10
  311. data/examples/i18n/uz/features/consecutive_calculations.feature +0 -17
  312. data/examples/i18n/uz/features/division.feature +0 -17
  313. data/examples/i18n/uz/features/step_definitions/calculator_steps.rb +0 -19
  314. data/examples/i18n/uz/features/support/env.rb +0 -5
  315. data/examples/i18n/uz/features/support/world.rb +0 -8
  316. data/examples/i18n/uz/lib/calculator.rb +0 -24
  317. data/examples/i18n/zh-CN/Rakefile +0 -4
  318. data/examples/i18n/zh-CN/features/addition.feature +0 -18
  319. data/examples/i18n/zh-CN/features/step_definitions/calculator_steps.rb +0 -26
  320. data/examples/i18n/zh-CN/lib/calculator.rb +0 -10
  321. data/examples/i18n/zh-TW/Rakefile +0 -4
  322. data/examples/i18n/zh-TW/features/addition.feature +0 -17
  323. data/examples/i18n/zh-TW/features/division.feature +0 -11
  324. data/examples/i18n/zh-TW/features/step_definitions/calculator_steps.rb +0 -24
  325. data/examples/i18n/zh-TW/lib/calculator.rb +0 -14
  326. data/examples/rspec_doubles/Rakefile +0 -4
  327. data/examples/rspec_doubles/features/mocking.feature +0 -9
  328. data/examples/rspec_doubles/features/step_definitions/calvin_steps.rb +0 -19
  329. data/examples/rspec_doubles/features/support/env.rb +0 -12
  330. data/examples/sinatra/README.textile +0 -13
  331. data/examples/sinatra/Rakefile +0 -6
  332. data/examples/sinatra/app.rb +0 -14
  333. data/examples/sinatra/features/add.feature +0 -11
  334. data/examples/sinatra/features/step_definitions/add_steps.rb +0 -15
  335. data/examples/sinatra/features/support/env.rb +0 -10
  336. data/examples/sinatra/views/add.erb +0 -7
  337. data/examples/sinatra/views/layout.erb +0 -8
  338. data/examples/tcl/README.textile +0 -11
  339. data/examples/tcl/Rakefile +0 -6
  340. data/examples/tcl/features/fibonnacci.feature +0 -17
  341. data/examples/tcl/features/step_definitions/fib_steps.rb +0 -7
  342. data/examples/tcl/features/support/env.rb +0 -6
  343. data/examples/tcl/src/fib.tcl +0 -3
  344. data/examples/test_unit/Gemfile +0 -4
  345. data/examples/test_unit/Rakefile +0 -6
  346. data/examples/test_unit/features/step_definitions/test_unit_steps.rb +0 -20
  347. data/examples/test_unit/features/test_unit.feature +0 -9
  348. data/examples/watir/README.textile +0 -16
  349. data/examples/watir/Rakefile +0 -12
  350. data/examples/watir/cucumber.yml +0 -1
  351. data/examples/watir/features/search.feature +0 -12
  352. data/examples/watir/features/step_definitions/search_steps.rb +0 -26
  353. data/examples/watir/features/support/env.rb +0 -35
  354. data/examples/watir/features/support/screenshots.rb +0 -47
  355. data/features/docs/api/list_step_defs_as_json.feature +0 -50
  356. data/features/docs/api/run_cli_main_with_existing_runtime.feature +0 -29
  357. data/features/docs/cli/backtraces.feature +0 -36
  358. data/features/docs/cli/dry_run.feature +0 -68
  359. data/features/docs/cli/exclude_files.feature +0 -19
  360. data/features/docs/cli/execute_with_tag_filter.feature +0 -117
  361. data/features/docs/cli/randomize.feature +0 -46
  362. data/features/docs/cli/require.feature +0 -27
  363. data/features/docs/cli/run_scenarios_matching_name.feature +0 -104
  364. data/features/docs/cli/run_specific_scenarios.feature +0 -130
  365. data/features/docs/cli/showing_differences.feature +0 -43
  366. data/features/docs/cli/specifying_multiple_formatters.feature +0 -44
  367. data/features/docs/cli/strict_mode.feature +0 -64
  368. data/features/docs/defining_steps/nested_steps.feature +0 -178
  369. data/features/docs/defining_steps/nested_steps_i18n.feature +0 -34
  370. data/features/docs/defining_steps/nested_steps_with_second_arg.feature +0 -73
  371. data/features/docs/defining_steps/one_line_step_definitions.feature +0 -65
  372. data/features/docs/defining_steps/printing_messages.feature +0 -148
  373. data/features/docs/defining_steps/skip_scenario.feature +0 -62
  374. data/features/docs/defining_steps/snippets.feature +0 -56
  375. data/features/docs/defining_steps/table_diffing.feature +0 -50
  376. data/features/docs/defining_steps/transforms.feature +0 -63
  377. data/features/docs/exception_in_after_hook.feature +0 -126
  378. data/features/docs/exception_in_after_step_hook.feature +0 -102
  379. data/features/docs/exception_in_around_hook.feature +0 -80
  380. data/features/docs/exception_in_before_hook.feature +0 -96
  381. data/features/docs/extending_cucumber/custom_filter.feature +0 -29
  382. data/features/docs/extending_cucumber/custom_formatter.feature +0 -94
  383. data/features/docs/formatters/debug_formatter.feature +0 -47
  384. data/features/docs/formatters/formatter_step_file_colon_line.feature +0 -44
  385. data/features/docs/formatters/html_formatter.feature +0 -90
  386. data/features/docs/formatters/json_formatter.feature +0 -760
  387. data/features/docs/formatters/junit_formatter.feature +0 -316
  388. data/features/docs/formatters/pretty_formatter.feature +0 -73
  389. data/features/docs/formatters/progress_formatter.feature +0 -31
  390. data/features/docs/formatters/rerun_formatter.feature +0 -136
  391. data/features/docs/formatters/usage_formatter.feature +0 -102
  392. data/features/docs/getting_started.feature +0 -27
  393. data/features/docs/gherkin/background.feature +0 -559
  394. data/features/docs/gherkin/doc_strings.feature +0 -74
  395. data/features/docs/gherkin/expand_option_for_outlines.feature +0 -46
  396. data/features/docs/gherkin/language_from_header.feature +0 -32
  397. data/features/docs/gherkin/language_help.feature +0 -37
  398. data/features/docs/gherkin/outlines.feature +0 -158
  399. data/features/docs/gherkin/unicode_table.feature +0 -32
  400. data/features/docs/gherkin/using_descriptions.feature +0 -88
  401. data/features/docs/gherkin/using_star_notation.feature +0 -37
  402. data/features/docs/iso-8859-1.feature +0 -6
  403. data/features/docs/post_configuration_hook.feature +0 -49
  404. data/features/docs/profiles.feature +0 -120
  405. data/features/docs/rake_task.feature +0 -141
  406. data/features/docs/raketask.feature +0 -44
  407. data/features/docs/wire_protocol/erb_configuration.feature +0 -56
  408. data/features/docs/wire_protocol/handle_unexpected_response.feature +0 -30
  409. data/features/docs/wire_protocol/invoke_message.feature +0 -216
  410. data/features/docs/wire_protocol/readme.md +0 -26
  411. data/features/docs/wire_protocol/snippets_message.feature +0 -51
  412. data/features/docs/wire_protocol/step_matches_message.feature +0 -81
  413. data/features/docs/wire_protocol/table_diffing.feature +0 -126
  414. data/features/docs/wire_protocol/tags.feature +0 -87
  415. data/features/docs/wire_protocol/timeouts.feature +0 -64
  416. data/features/docs/work_in_progress.feature +0 -154
  417. data/features/docs/writing_support_code/after_hooks.feature +0 -56
  418. data/features/docs/writing_support_code/around_hooks.feature +0 -260
  419. data/features/docs/writing_support_code/before_hook.feature +0 -65
  420. data/features/docs/writing_support_code/hook_order.feature +0 -61
  421. data/features/docs/writing_support_code/load_path.feature +0 -17
  422. data/features/docs/writing_support_code/state.feature +0 -32
  423. data/features/docs/writing_support_code/tagged_hooks.feature +0 -95
  424. data/features/lib/step_definitions/aruba_steps.rb +0 -22
  425. data/features/lib/step_definitions/cucumber_steps.rb +0 -50
  426. data/features/lib/step_definitions/iso-8859-1_steps.rb +0 -12
  427. data/features/lib/step_definitions/json_steps.rb +0 -7
  428. data/features/lib/step_definitions/junit_steps.rb +0 -13
  429. data/features/lib/step_definitions/language_steps.rb +0 -8
  430. data/features/lib/step_definitions/profile_steps.rb +0 -15
  431. data/features/lib/step_definitions/ruby_steps.rb +0 -3
  432. data/features/lib/step_definitions/wire_steps.rb +0 -58
  433. data/features/lib/support/env.rb +0 -21
  434. data/features/lib/support/fake_wire_server.rb +0 -80
  435. data/features/lib/support/feature_factory.rb +0 -67
  436. data/features/lib/support/normalise_output.rb +0 -33
  437. data/gem_tasks/contributors.rake +0 -15
  438. data/gem_tasks/cov.rake +0 -5
  439. data/gem_tasks/cucumber.rake +0 -25
  440. data/gem_tasks/downloads.rb +0 -7
  441. data/gem_tasks/environment.rake +0 -7
  442. data/gem_tasks/examples.rake +0 -11
  443. data/gem_tasks/fix_cr_lf.rake +0 -10
  444. data/gem_tasks/flog.rake +0 -4
  445. data/gem_tasks/rspec.rake +0 -6
  446. data/gem_tasks/sass.rake +0 -4
  447. data/gem_tasks/stats +0 -16
  448. data/gem_tasks/versions.txt +0 -74
  449. data/lib/cucumber/ast.rb +0 -13
  450. data/lib/cucumber/core_ext/instance_exec.rb +0 -70
  451. data/lib/cucumber/core_ext/proc.rb +0 -36
  452. data/lib/cucumber/formatter/cucumber.css +0 -285
  453. data/lib/cucumber/formatter/cucumber.sass +0 -247
  454. data/lib/cucumber/formatter/debug.rb +0 -35
  455. data/lib/cucumber/formatter/gherkin_formatter_adapter.rb +0 -204
  456. data/lib/cucumber/formatter/gpretty.rb +0 -24
  457. data/lib/cucumber/formatter/html.rb +0 -674
  458. data/lib/cucumber/formatter/jquery-min.js +0 -154
  459. data/lib/cucumber/formatter/json_pretty.rb +0 -10
  460. data/lib/cucumber/formatter/legacy_api/adapter.rb +0 -1060
  461. data/lib/cucumber/formatter/legacy_api/ast.rb +0 -376
  462. data/lib/cucumber/formatter/legacy_api/results.rb +0 -51
  463. data/lib/cucumber/formatter/legacy_api/runtime_facade.rb +0 -30
  464. data/lib/cucumber/language_support.rb +0 -30
  465. data/lib/cucumber/language_support/language_methods.rb +0 -71
  466. data/lib/cucumber/rb_support/rb_hook.rb +0 -18
  467. data/lib/cucumber/rb_support/rb_language.rb +0 -160
  468. data/lib/cucumber/rb_support/rb_step_definition.rb +0 -131
  469. data/lib/cucumber/rb_support/rb_transform.rb +0 -59
  470. data/lib/cucumber/rb_support/rb_world.rb +0 -142
  471. data/lib/cucumber/rb_support/regexp_argument_matcher.rb +0 -21
  472. data/lib/cucumber/rb_support/snippet.rb +0 -149
  473. data/lib/cucumber/wire_support/configuration.rb +0 -38
  474. data/lib/cucumber/wire_support/connection.rb +0 -61
  475. data/lib/cucumber/wire_support/request_handler.rb +0 -32
  476. data/lib/cucumber/wire_support/wire_exception.rb +0 -32
  477. data/lib/cucumber/wire_support/wire_language.rb +0 -68
  478. data/lib/cucumber/wire_support/wire_packet.rb +0 -34
  479. data/lib/cucumber/wire_support/wire_protocol.rb +0 -43
  480. data/lib/cucumber/wire_support/wire_protocol/requests.rb +0 -133
  481. data/lib/cucumber/wire_support/wire_step_definition.rb +0 -19
  482. data/spec/cucumber/cli/configuration_spec.rb +0 -503
  483. data/spec/cucumber/cli/main_spec.rb +0 -105
  484. data/spec/cucumber/cli/options_spec.rb +0 -335
  485. data/spec/cucumber/cli/profile_loader_spec.rb +0 -46
  486. data/spec/cucumber/configuration_spec.rb +0 -23
  487. data/spec/cucumber/constantize_spec.rb +0 -19
  488. data/spec/cucumber/core_ext/proc_spec.rb +0 -69
  489. data/spec/cucumber/file_specs_spec.rb +0 -60
  490. data/spec/cucumber/filters/activate_steps_spec.rb +0 -57
  491. data/spec/cucumber/filters/gated_receiver_spec.rb +0 -47
  492. data/spec/cucumber/filters/tag_limits/test_case_index_spec.rb +0 -38
  493. data/spec/cucumber/filters/tag_limits/verifier_spec.rb +0 -57
  494. data/spec/cucumber/filters/tag_limits_spec.rb +0 -59
  495. data/spec/cucumber/formatter/ansicolor_spec.rb +0 -32
  496. data/spec/cucumber/formatter/debug_spec.rb +0 -64
  497. data/spec/cucumber/formatter/duration_spec.rb +0 -22
  498. data/spec/cucumber/formatter/html_spec.rb +0 -459
  499. data/spec/cucumber/formatter/interceptor_spec.rb +0 -136
  500. data/spec/cucumber/formatter/junit_spec.rb +0 -252
  501. data/spec/cucumber/formatter/legacy_api/adapter_spec.rb +0 -2090
  502. data/spec/cucumber/formatter/pretty_spec.rb +0 -823
  503. data/spec/cucumber/formatter/progress_spec.rb +0 -85
  504. data/spec/cucumber/formatter/rerun_spec.rb +0 -107
  505. data/spec/cucumber/formatter/spec_helper.rb +0 -67
  506. data/spec/cucumber/hooks_spec.rb +0 -30
  507. data/spec/cucumber/multiline_argument/data_table_spec.rb +0 -514
  508. data/spec/cucumber/project_initializer_spec.rb +0 -87
  509. data/spec/cucumber/rake/forked_spec.rb +0 -53
  510. data/spec/cucumber/rb_support/rb_language_spec.rb +0 -279
  511. data/spec/cucumber/rb_support/rb_step_definition_spec.rb +0 -170
  512. data/spec/cucumber/rb_support/rb_transform_spec.rb +0 -46
  513. data/spec/cucumber/rb_support/regexp_argument_matcher_spec.rb +0 -22
  514. data/spec/cucumber/rb_support/snippet_spec.rb +0 -137
  515. data/spec/cucumber/running_test_case_spec.rb +0 -83
  516. data/spec/cucumber/runtime/for_programming_languages_spec.rb +0 -36
  517. data/spec/cucumber/runtime/support_code_spec.rb +0 -123
  518. data/spec/cucumber/runtime_spec.rb +0 -46
  519. data/spec/cucumber/sell_cucumbers.feature +0 -19
  520. data/spec/cucumber/step_match_spec.rb +0 -79
  521. data/spec/cucumber/wire_support/configuration_spec.rb +0 -64
  522. data/spec/cucumber/wire_support/connection_spec.rb +0 -64
  523. data/spec/cucumber/wire_support/wire_exception_spec.rb +0 -50
  524. data/spec/cucumber/wire_support/wire_language_spec.rb +0 -46
  525. data/spec/cucumber/wire_support/wire_packet_spec.rb +0 -44
  526. data/spec/cucumber/world/pending_spec.rb +0 -46
  527. data/spec/spec_helper.rb +0 -29
@@ -0,0 +1,67 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cucumber
4
+ module StepMatchSearch
5
+ def self.new(search, configuration)
6
+ CachesStepMatch.new(
7
+ AssertUnambiguousMatch.new(
8
+ configuration.guess? ? AttemptToGuessAmbiguousMatch.new(search) : search,
9
+ configuration
10
+ )
11
+ )
12
+ end
13
+
14
+ class AssertUnambiguousMatch
15
+ def initialize(search, configuration)
16
+ @search = search
17
+ @configuration = configuration
18
+ end
19
+
20
+ def call(step_name)
21
+ result = @search.call(step_name)
22
+ raise Cucumber::Ambiguous.new(step_name, result, @configuration.guess?) if result.length > 1
23
+ result
24
+ end
25
+ end
26
+
27
+ class AttemptToGuessAmbiguousMatch
28
+ def initialize(search)
29
+ @search = search
30
+ end
31
+
32
+ def call(step_name)
33
+ best_matches(step_name, @search.call(step_name))
34
+ end
35
+
36
+ private
37
+
38
+ def best_matches(_step_name, step_matches) #:nodoc:
39
+ no_groups = step_matches.select { |step_match| step_match.args.empty? }
40
+ max_arg_length = step_matches.map { |step_match| step_match.args.length }.max
41
+ top_groups = step_matches.select { |step_match| step_match.args.length == max_arg_length }
42
+
43
+ if no_groups.any?
44
+ longest_regexp_length = no_groups.map(&:text_length).max
45
+ no_groups.select { |step_match| step_match.text_length == longest_regexp_length }
46
+ elsif top_groups.any?
47
+ shortest_capture_length = top_groups.map { |step_match| step_match.args.inject(0) { |sum, c| sum + c.to_s.length } }.min
48
+ top_groups.select { |step_match| step_match.args.inject(0) { |sum, c| sum + c.to_s.length } == shortest_capture_length }
49
+ else
50
+ top_groups
51
+ end
52
+ end
53
+ end
54
+
55
+ require 'delegate'
56
+ class CachesStepMatch < SimpleDelegator
57
+ def call(step_name) #:nodoc:
58
+ @match_cache ||= {}
59
+
60
+ matches = @match_cache[step_name]
61
+ return matches if matches
62
+
63
+ @match_cache[step_name] = super(step_name)
64
+ end
65
+ end
66
+ end
67
+ end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Cucumber
2
4
  module Term
3
5
  # The ANSIColor module can be used for namespacing and mixed into your own
@@ -5,35 +7,35 @@ module Cucumber
5
7
  module ANSIColor
6
8
  # :stopdoc:
7
9
  ATTRIBUTES = [
8
- [ :clear , 0 ],
9
- [ :reset , 0 ], # synonym for :clear
10
- [ :bold , 1 ],
11
- [ :dark , 2 ],
12
- [ :italic , 3 ], # not widely implemented
13
- [ :underline , 4 ],
14
- [ :underscore , 4 ], # synonym for :underline
15
- [ :blink , 5 ],
16
- [ :rapid_blink , 6 ], # not widely implemented
17
- [ :negative , 7 ], # no reverse because of String#reverse
18
- [ :concealed , 8 ],
19
- [ :strikethrough, 9 ], # not widely implemented
20
- [ :black , 30 ],
21
- [ :red , 31 ],
22
- [ :green , 32 ],
23
- [ :yellow , 33 ],
24
- [ :blue , 34 ],
25
- [ :magenta , 35 ],
26
- [ :cyan , 36 ],
27
- [ :white , 37 ],
28
- [ :on_black , 40 ],
29
- [ :on_red , 41 ],
30
- [ :on_green , 42 ],
31
- [ :on_yellow , 43 ],
32
- [ :on_blue , 44 ],
33
- [ :on_magenta , 45 ],
34
- [ :on_cyan , 46 ],
35
- [ :on_white , 47 ],
36
- ]
10
+ [:clear, 0],
11
+ [:reset, 0], # synonym for :clear
12
+ [:bold, 1],
13
+ [:dark, 2],
14
+ [:italic, 3], # not widely implemented
15
+ [:underline, 4],
16
+ [:underscore, 4], # synonym for :underline
17
+ [:blink, 5],
18
+ [:rapid_blink, 6], # not widely implemented
19
+ [:negative, 7], # no reverse because of String#reverse
20
+ [:concealed, 8],
21
+ [:strikethrough, 9], # not widely implemented
22
+ [:black, 30],
23
+ [:red, 31],
24
+ [:green, 32],
25
+ [:yellow, 33],
26
+ [:blue, 34],
27
+ [:magenta, 35],
28
+ [:cyan, 36],
29
+ [:white, 37],
30
+ [:on_black, 40],
31
+ [:on_red, 41],
32
+ [:on_green, 42],
33
+ [:on_yellow, 43],
34
+ [:on_blue, 44],
35
+ [:on_magenta, 45],
36
+ [:on_cyan, 46],
37
+ [:on_white, 47]
38
+ ].freeze
37
39
 
38
40
  ATTRIBUTE_NAMES = ATTRIBUTES.transpose.first
39
41
  # :startdoc:
@@ -52,10 +54,11 @@ module Cucumber
52
54
  end
53
55
  self.coloring = true
54
56
 
57
+ # rubocop:disable Security/Eval
55
58
  ATTRIBUTES.each do |c, v|
56
- eval %Q{
59
+ eval <<-END_EVAL, binding, __FILE__, __LINE__ + 1
57
60
  def #{c}(string = nil)
58
- result = ''
61
+ result = String.new
59
62
  result << "\e[#{v}m" if Cucumber::Term::ANSIColor.coloring?
60
63
  if block_given?
61
64
  result << yield
@@ -69,24 +72,23 @@ module Cucumber
69
72
  result << "\e[0m" if Cucumber::Term::ANSIColor.coloring?
70
73
  result
71
74
  end
72
- }
75
+ END_EVAL
73
76
  end
77
+ # rubocop:enable Security/Eval
74
78
 
75
79
  # Regular expression that is used to scan for ANSI-sequences while
76
80
  # uncoloring strings.
77
81
  COLORED_REGEXP = /\e\[(?:[34][0-7]|[0-9])?m/
78
82
 
79
-
80
83
  def self.included(klass)
81
- if klass == String
82
- ATTRIBUTES.delete(:clear)
83
- ATTRIBUTE_NAMES.delete(:clear)
84
- end
84
+ return unless klass == String
85
+ ATTRIBUTES.delete(:clear)
86
+ ATTRIBUTE_NAMES.delete(:clear)
85
87
  end
86
88
 
87
89
  # Returns an uncolored version of the string, that is all
88
90
  # ANSI-sequences are stripped from the string.
89
- def uncolored(string = nil) # :yields:
91
+ def uncolored(string = nil)
90
92
  if block_given?
91
93
  yield.gsub(COLORED_REGEXP, '')
92
94
  elsif string
@@ -104,7 +106,6 @@ module Cucumber
104
106
  def attributes
105
107
  ATTRIBUTE_NAMES
106
108
  end
107
- extend self
108
109
  end
109
110
  end
110
111
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Cucumber
2
4
  class Unit
3
5
  def initialize(step_collection)
@@ -0,0 +1 @@
1
+ 4.0.0.rc.3
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  if ENV['SIMPLECOV']
2
4
  begin
3
5
  # Suppress warnings in order not to pollute stdout which tests expectations rely on
@@ -13,6 +15,6 @@ if ENV['SIMPLECOV']
13
15
  add_filter '/features/'
14
16
  end
15
17
  rescue LoadError
16
- warn("Unable to load simplecov")
18
+ warn('Unable to load simplecov')
17
19
  end
18
20
  end
metadata CHANGED
@@ -1,315 +1,451 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucumber
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.rc.5
4
+ version: 4.0.0.rc.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aslak Hellesøy
8
+ - Matt Wynne
9
+ - Steve Tooke
8
10
  autorequire:
9
11
  bindir: bin
10
12
  cert_chain: []
11
- date: 2015-03-19 00:00:00.000000000 Z
13
+ date: 2019-10-31 00:00:00.000000000 Z
12
14
  dependencies:
13
15
  - !ruby/object:Gem::Dependency
14
- name: cucumber-core
16
+ name: builder
15
17
  requirement: !ruby/object:Gem::Requirement
16
18
  requirements:
17
19
  - - "~>"
18
20
  - !ruby/object:Gem::Version
19
- version: 1.1.0
21
+ version: '3.2'
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: 3.2.3
20
25
  type: :runtime
21
26
  prerelease: false
22
27
  version_requirements: !ruby/object:Gem::Requirement
23
28
  requirements:
24
29
  - - "~>"
25
30
  - !ruby/object:Gem::Version
26
- version: 1.1.0
31
+ version: '3.2'
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: 3.2.3
27
35
  - !ruby/object:Gem::Dependency
28
- name: builder
36
+ name: cucumber-core
29
37
  requirement: !ruby/object:Gem::Requirement
30
38
  requirements:
31
39
  - - ">="
32
40
  - !ruby/object:Gem::Version
33
- version: 2.1.2
41
+ version: 5.0.0
42
+ - - "~>"
43
+ - !ruby/object:Gem::Version
44
+ version: '5.0'
34
45
  type: :runtime
35
46
  prerelease: false
36
47
  version_requirements: !ruby/object:Gem::Requirement
37
48
  requirements:
38
49
  - - ">="
39
50
  - !ruby/object:Gem::Version
40
- version: 2.1.2
51
+ version: 5.0.0
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
41
55
  - !ruby/object:Gem::Dependency
42
- name: diff-lcs
56
+ name: cucumber-expressions
43
57
  requirement: !ruby/object:Gem::Requirement
44
58
  requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '8.0'
45
62
  - - ">="
46
63
  - !ruby/object:Gem::Version
47
- version: 1.1.3
64
+ version: 8.0.2
48
65
  type: :runtime
49
66
  prerelease: false
50
67
  version_requirements: !ruby/object:Gem::Requirement
51
68
  requirements:
69
+ - - "~>"
70
+ - !ruby/object:Gem::Version
71
+ version: '8.0'
52
72
  - - ">="
53
73
  - !ruby/object:Gem::Version
54
- version: 1.1.3
74
+ version: 8.0.2
55
75
  - !ruby/object:Gem::Dependency
56
- name: gherkin
76
+ name: cucumber-wire
57
77
  requirement: !ruby/object:Gem::Requirement
58
78
  requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: 1.1.0
59
82
  - - "~>"
60
83
  - !ruby/object:Gem::Version
61
- version: '2.12'
84
+ version: '1.1'
62
85
  type: :runtime
63
86
  prerelease: false
64
87
  version_requirements: !ruby/object:Gem::Requirement
65
88
  requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: 1.1.0
66
92
  - - "~>"
67
93
  - !ruby/object:Gem::Version
68
- version: '2.12'
94
+ version: '1.1'
69
95
  - !ruby/object:Gem::Dependency
70
- name: multi_json
96
+ name: diff-lcs
71
97
  requirement: !ruby/object:Gem::Requirement
72
98
  requirements:
73
99
  - - ">="
74
100
  - !ruby/object:Gem::Version
75
- version: 1.7.5
76
- - - "<"
101
+ version: '1.3'
102
+ - - "~>"
77
103
  - !ruby/object:Gem::Version
78
- version: '2.0'
104
+ version: '1.3'
79
105
  type: :runtime
80
106
  prerelease: false
81
107
  version_requirements: !ruby/object:Gem::Requirement
82
108
  requirements:
83
109
  - - ">="
84
110
  - !ruby/object:Gem::Version
85
- version: 1.7.5
86
- - - "<"
111
+ version: '1.3'
112
+ - - "~>"
87
113
  - !ruby/object:Gem::Version
88
- version: '2.0'
114
+ version: '1.3'
89
115
  - !ruby/object:Gem::Dependency
90
- name: multi_test
116
+ name: gherkin
91
117
  requirement: !ruby/object:Gem::Requirement
92
118
  requirements:
119
+ - - "~>"
120
+ - !ruby/object:Gem::Version
121
+ version: '8.1'
93
122
  - - ">="
94
123
  - !ruby/object:Gem::Version
95
- version: 0.1.2
124
+ version: 8.1.1
96
125
  type: :runtime
97
126
  prerelease: false
98
127
  version_requirements: !ruby/object:Gem::Requirement
99
128
  requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '8.1'
100
132
  - - ">="
101
133
  - !ruby/object:Gem::Version
102
- version: 0.1.2
134
+ version: 8.1.1
103
135
  - !ruby/object:Gem::Dependency
104
- name: aruba
136
+ name: multi_json
105
137
  requirement: !ruby/object:Gem::Requirement
106
138
  requirements:
107
139
  - - "~>"
108
140
  - !ruby/object:Gem::Version
109
- version: 0.6.1
110
- type: :development
141
+ version: '1.13'
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: 1.13.1
145
+ type: :runtime
111
146
  prerelease: false
112
147
  version_requirements: !ruby/object:Gem::Requirement
113
148
  requirements:
114
149
  - - "~>"
115
150
  - !ruby/object:Gem::Version
116
- version: 0.6.1
151
+ version: '1.13'
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ version: 1.13.1
117
155
  - !ruby/object:Gem::Dependency
118
- name: json
156
+ name: multi_test
119
157
  requirement: !ruby/object:Gem::Requirement
120
158
  requirements:
121
159
  - - "~>"
122
160
  - !ruby/object:Gem::Version
123
- version: '1.7'
124
- type: :development
161
+ version: '0.1'
162
+ - - ">="
163
+ - !ruby/object:Gem::Version
164
+ version: 0.1.2
165
+ type: :runtime
125
166
  prerelease: false
126
167
  version_requirements: !ruby/object:Gem::Requirement
127
168
  requirements:
128
169
  - - "~>"
129
170
  - !ruby/object:Gem::Version
130
- version: '1.7'
171
+ version: '0.1'
172
+ - - ">="
173
+ - !ruby/object:Gem::Version
174
+ version: 0.1.2
131
175
  - !ruby/object:Gem::Dependency
132
- name: nokogiri
176
+ name: aruba
133
177
  requirement: !ruby/object:Gem::Requirement
134
178
  requirements:
135
179
  - - "~>"
136
180
  - !ruby/object:Gem::Version
137
- version: '1.5'
181
+ version: '0.14'
182
+ - - ">="
183
+ - !ruby/object:Gem::Version
184
+ version: 0.14.11
138
185
  type: :development
139
186
  prerelease: false
140
187
  version_requirements: !ruby/object:Gem::Requirement
141
188
  requirements:
142
189
  - - "~>"
143
190
  - !ruby/object:Gem::Version
144
- version: '1.5'
191
+ version: '0.14'
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: 0.14.11
145
195
  - !ruby/object:Gem::Dependency
146
- name: rake
196
+ name: json
147
197
  requirement: !ruby/object:Gem::Requirement
148
198
  requirements:
149
199
  - - ">="
150
200
  - !ruby/object:Gem::Version
151
- version: 0.9.2
201
+ version: 2.2.0
202
+ - - "~>"
203
+ - !ruby/object:Gem::Version
204
+ version: '2.2'
152
205
  type: :development
153
206
  prerelease: false
154
207
  version_requirements: !ruby/object:Gem::Requirement
155
208
  requirements:
156
209
  - - ">="
157
210
  - !ruby/object:Gem::Version
158
- version: 0.9.2
211
+ version: 2.2.0
212
+ - - "~>"
213
+ - !ruby/object:Gem::Version
214
+ version: '2.2'
159
215
  - !ruby/object:Gem::Dependency
160
- name: rspec
216
+ name: nokogiri
161
217
  requirement: !ruby/object:Gem::Requirement
162
218
  requirements:
219
+ - - "~>"
220
+ - !ruby/object:Gem::Version
221
+ version: '1.10'
163
222
  - - ">="
164
223
  - !ruby/object:Gem::Version
165
- version: '3.0'
224
+ version: 1.10.4
166
225
  type: :development
167
226
  prerelease: false
168
227
  version_requirements: !ruby/object:Gem::Requirement
169
228
  requirements:
229
+ - - "~>"
230
+ - !ruby/object:Gem::Version
231
+ version: '1.10'
170
232
  - - ">="
171
233
  - !ruby/object:Gem::Version
172
- version: '3.0'
234
+ version: 1.10.4
173
235
  - !ruby/object:Gem::Dependency
174
- name: simplecov
236
+ name: pry
175
237
  requirement: !ruby/object:Gem::Requirement
176
238
  requirements:
239
+ - - "~>"
240
+ - !ruby/object:Gem::Version
241
+ version: '0.12'
177
242
  - - ">="
178
243
  - !ruby/object:Gem::Version
179
- version: 0.6.2
244
+ version: 0.12.2
180
245
  type: :development
181
246
  prerelease: false
182
247
  version_requirements: !ruby/object:Gem::Requirement
183
248
  requirements:
249
+ - - "~>"
250
+ - !ruby/object:Gem::Version
251
+ version: '0.12'
184
252
  - - ">="
185
253
  - !ruby/object:Gem::Version
186
- version: 0.6.2
254
+ version: 0.12.2
187
255
  - !ruby/object:Gem::Dependency
188
- name: coveralls
256
+ name: rake
189
257
  requirement: !ruby/object:Gem::Requirement
190
258
  requirements:
191
259
  - - "~>"
192
260
  - !ruby/object:Gem::Version
193
- version: '0.7'
261
+ version: '12.3'
262
+ - - ">="
263
+ - !ruby/object:Gem::Version
264
+ version: 12.3.3
194
265
  type: :development
195
266
  prerelease: false
196
267
  version_requirements: !ruby/object:Gem::Requirement
197
268
  requirements:
198
269
  - - "~>"
199
270
  - !ruby/object:Gem::Version
200
- version: '0.7'
271
+ version: '12.3'
272
+ - - ">="
273
+ - !ruby/object:Gem::Version
274
+ version: 12.3.3
201
275
  - !ruby/object:Gem::Dependency
202
- name: syntax
276
+ name: rspec
203
277
  requirement: !ruby/object:Gem::Requirement
204
278
  requirements:
205
279
  - - ">="
206
280
  - !ruby/object:Gem::Version
207
- version: 1.0.0
281
+ version: 3.8.0
282
+ - - "~>"
283
+ - !ruby/object:Gem::Version
284
+ version: '3.8'
208
285
  type: :development
209
286
  prerelease: false
210
287
  version_requirements: !ruby/object:Gem::Requirement
211
288
  requirements:
212
289
  - - ">="
213
290
  - !ruby/object:Gem::Version
214
- version: 1.0.0
291
+ version: 3.8.0
292
+ - - "~>"
293
+ - !ruby/object:Gem::Version
294
+ version: '3.8'
215
295
  - !ruby/object:Gem::Dependency
216
- name: pry
296
+ name: rubocop
217
297
  requirement: !ruby/object:Gem::Requirement
218
298
  requirements:
219
- - - ">="
299
+ - - "~>"
220
300
  - !ruby/object:Gem::Version
221
- version: '0'
301
+ version: '0.75'
302
+ - - '='
303
+ - !ruby/object:Gem::Version
304
+ version: 0.75.1
222
305
  type: :development
223
306
  prerelease: false
224
307
  version_requirements: !ruby/object:Gem::Requirement
225
308
  requirements:
226
- - - ">="
309
+ - - "~>"
310
+ - !ruby/object:Gem::Version
311
+ version: '0.75'
312
+ - - '='
227
313
  - !ruby/object:Gem::Version
228
- version: '0'
314
+ version: 0.75.1
229
315
  - !ruby/object:Gem::Dependency
230
- name: bcat
316
+ name: simplecov
231
317
  requirement: !ruby/object:Gem::Requirement
232
318
  requirements:
319
+ - - ">="
320
+ - !ruby/object:Gem::Version
321
+ version: 0.17.0
233
322
  - - "~>"
234
323
  - !ruby/object:Gem::Version
235
- version: 0.6.2
324
+ version: '0.17'
236
325
  type: :development
237
326
  prerelease: false
238
327
  version_requirements: !ruby/object:Gem::Requirement
239
328
  requirements:
329
+ - - ">="
330
+ - !ruby/object:Gem::Version
331
+ version: 0.17.0
240
332
  - - "~>"
241
333
  - !ruby/object:Gem::Version
242
- version: 0.6.2
334
+ version: '0.17'
243
335
  - !ruby/object:Gem::Dependency
244
- name: kramdown
336
+ name: syntax
245
337
  requirement: !ruby/object:Gem::Requirement
246
338
  requirements:
247
339
  - - "~>"
248
340
  - !ruby/object:Gem::Version
249
- version: '0.14'
341
+ version: '1.2'
342
+ - - ">="
343
+ - !ruby/object:Gem::Version
344
+ version: 1.2.2
250
345
  type: :development
251
346
  prerelease: false
252
347
  version_requirements: !ruby/object:Gem::Requirement
253
348
  requirements:
254
349
  - - "~>"
255
350
  - !ruby/object:Gem::Version
256
- version: '0.14'
351
+ version: '1.2'
352
+ - - ">="
353
+ - !ruby/object:Gem::Version
354
+ version: 1.2.2
257
355
  - !ruby/object:Gem::Dependency
258
- name: yard
356
+ name: test-unit
259
357
  requirement: !ruby/object:Gem::Requirement
260
358
  requirements:
261
359
  - - "~>"
262
360
  - !ruby/object:Gem::Version
263
- version: 0.8.0
361
+ version: '1.2'
362
+ - - ">="
363
+ - !ruby/object:Gem::Version
364
+ version: 1.2.3
264
365
  type: :development
265
366
  prerelease: false
266
367
  version_requirements: !ruby/object:Gem::Requirement
267
368
  requirements:
268
369
  - - "~>"
269
370
  - !ruby/object:Gem::Version
270
- version: 0.8.0
371
+ version: '1.2'
372
+ - - ">="
373
+ - !ruby/object:Gem::Version
374
+ version: 1.2.3
271
375
  - !ruby/object:Gem::Dependency
272
- name: capybara
376
+ name: octokit
273
377
  requirement: !ruby/object:Gem::Requirement
274
378
  requirements:
275
379
  - - ">="
276
380
  - !ruby/object:Gem::Version
277
- version: '2.1'
381
+ version: 4.14.0
382
+ - - "~>"
383
+ - !ruby/object:Gem::Version
384
+ version: '4.14'
278
385
  type: :development
279
386
  prerelease: false
280
387
  version_requirements: !ruby/object:Gem::Requirement
281
388
  requirements:
282
389
  - - ">="
283
390
  - !ruby/object:Gem::Version
284
- version: '2.1'
391
+ version: 4.14.0
392
+ - - "~>"
393
+ - !ruby/object:Gem::Version
394
+ version: '4.14'
285
395
  - !ruby/object:Gem::Dependency
286
396
  name: rack-test
287
397
  requirement: !ruby/object:Gem::Requirement
288
398
  requirements:
289
399
  - - ">="
290
400
  - !ruby/object:Gem::Version
291
- version: 0.6.1
401
+ version: 1.1.0
402
+ - - "~>"
403
+ - !ruby/object:Gem::Version
404
+ version: '1.1'
292
405
  type: :development
293
406
  prerelease: false
294
407
  version_requirements: !ruby/object:Gem::Requirement
295
408
  requirements:
296
409
  - - ">="
297
410
  - !ruby/object:Gem::Version
298
- version: 0.6.1
411
+ version: 1.1.0
412
+ - - "~>"
413
+ - !ruby/object:Gem::Version
414
+ version: '1.1'
299
415
  - !ruby/object:Gem::Dependency
300
416
  name: sinatra
301
417
  requirement: !ruby/object:Gem::Requirement
302
418
  requirements:
419
+ - - "~>"
420
+ - !ruby/object:Gem::Version
421
+ version: '2.0'
303
422
  - - ">="
304
423
  - !ruby/object:Gem::Version
305
- version: 1.3.2
424
+ version: 2.0.5
306
425
  type: :development
307
426
  prerelease: false
308
427
  version_requirements: !ruby/object:Gem::Requirement
309
428
  requirements:
429
+ - - "~>"
430
+ - !ruby/object:Gem::Version
431
+ version: '2.0'
310
432
  - - ">="
311
433
  - !ruby/object:Gem::Version
312
- version: 1.3.2
434
+ version: 2.0.5
435
+ - !ruby/object:Gem::Dependency
436
+ name: capybara
437
+ requirement: !ruby/object:Gem::Requirement
438
+ requirements:
439
+ - - '='
440
+ - !ruby/object:Gem::Version
441
+ version: 3.15.0
442
+ type: :development
443
+ prerelease: false
444
+ version_requirements: !ruby/object:Gem::Requirement
445
+ requirements:
446
+ - - '='
447
+ - !ruby/object:Gem::Version
448
+ version: 3.15.0
313
449
  description: Behaviour Driven Development with elegance and joy
314
450
  email: cukes@googlegroups.com
315
451
  executables:
@@ -317,342 +453,11 @@ executables:
317
453
  extensions: []
318
454
  extra_rdoc_files: []
319
455
  files:
320
- - ".coveralls.yml"
321
- - ".rspec"
322
- - ".ruby-gemset"
323
- - ".travis.yml"
324
- - ".yardopts"
456
+ - CHANGELOG.md
325
457
  - CONTRIBUTING.md
326
- - Gemfile
327
- - History.md
328
458
  - LICENSE
329
459
  - README.md
330
- - Rakefile
331
460
  - bin/cucumber
332
- - cucumber.gemspec
333
- - cucumber.yml
334
- - examples/i18n/README.textile
335
- - examples/i18n/Rakefile
336
- - examples/i18n/ar/Rakefile
337
- - examples/i18n/ar/features/addition.feature
338
- - examples/i18n/ar/features/step_definitions/calculator_steps.rb
339
- - examples/i18n/ar/lib/calculator.rb
340
- - examples/i18n/bg/Rakefile
341
- - examples/i18n/bg/features/addition.feature
342
- - examples/i18n/bg/features/consecutive_calculations.feature
343
- - examples/i18n/bg/features/division.feature
344
- - examples/i18n/bg/features/step_definitions/calculator_steps.rb
345
- - examples/i18n/bg/features/support/env.rb
346
- - examples/i18n/bg/features/support/world.rb
347
- - examples/i18n/bg/lib/calculator.rb
348
- - examples/i18n/ca/Rakefile
349
- - examples/i18n/ca/features/step_definitions/calculator_steps.rb
350
- - examples/i18n/ca/features/suma.feature
351
- - examples/i18n/ca/lib/calculadora.rb
352
- - examples/i18n/cs/Rakefile
353
- - examples/i18n/cs/features/addition.feature
354
- - examples/i18n/cs/features/division.feature
355
- - examples/i18n/cs/features/step_definitions/calculator_steps.rb
356
- - examples/i18n/cs/lib/calculator.rb
357
- - examples/i18n/da/Rakefile
358
- - examples/i18n/da/features/sammenlaegning.feature
359
- - examples/i18n/da/features/step_definitions/lommeregner_steps.rb
360
- - examples/i18n/da/lib/lommeregner.rb
361
- - examples/i18n/de/Rakefile
362
- - examples/i18n/de/features/addition.feature
363
- - examples/i18n/de/features/division.feature
364
- - examples/i18n/de/features/step_definitions/calculator_steps.rb
365
- - examples/i18n/de/lib/calculator.rb
366
- - examples/i18n/el/Rakefile
367
- - examples/i18n/el/features/addition.feature
368
- - examples/i18n/el/features/division.feature
369
- - examples/i18n/el/features/step_definitions/calculator_steps.rb
370
- - examples/i18n/el/lib/calculator.rb
371
- - examples/i18n/en-lol/Rakefile
372
- - examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb
373
- - examples/i18n/en-lol/features/stuffing.feature
374
- - examples/i18n/en-lol/features/support/env.rb
375
- - examples/i18n/en-lol/lib/basket.rb
376
- - examples/i18n/en-lol/lib/belly.rb
377
- - examples/i18n/en/Rakefile
378
- - examples/i18n/en/features/addition.feature
379
- - examples/i18n/en/features/division.feature
380
- - examples/i18n/en/features/step_definitions/calculator_steps.rb
381
- - examples/i18n/en/lib/calculator.rb
382
- - examples/i18n/eo/Rakefile
383
- - examples/i18n/eo/features/adicio.feature
384
- - examples/i18n/eo/features/divido.feature
385
- - examples/i18n/eo/features/step_definitions/calculator_steps.rb
386
- - examples/i18n/eo/lib/calculator.rb
387
- - examples/i18n/es/Rakefile
388
- - examples/i18n/es/features/adicion.feature
389
- - examples/i18n/es/features/step_definitions/calculador_steps.rb
390
- - examples/i18n/es/lib/calculador.rb
391
- - examples/i18n/et/Rakefile
392
- - examples/i18n/et/features/jagamine.feature
393
- - examples/i18n/et/features/liitmine.feature
394
- - examples/i18n/et/features/step_definitions/kalkulaator_steps.rb
395
- - examples/i18n/et/lib/kalkulaator.rb
396
- - examples/i18n/fi/Rakefile
397
- - examples/i18n/fi/features/jakolasku.feature
398
- - examples/i18n/fi/features/step_definitions/laskin_steps.rb
399
- - examples/i18n/fi/features/yhteenlasku.feature
400
- - examples/i18n/fi/lib/laskin.rb
401
- - examples/i18n/fr/Rakefile
402
- - examples/i18n/fr/features/addition.feature
403
- - examples/i18n/fr/features/addition2.feature
404
- - examples/i18n/fr/features/step_definitions/calculatrice_steps.rb
405
- - examples/i18n/fr/features/support/env.rb
406
- - examples/i18n/fr/lib/calculatrice.rb
407
- - examples/i18n/he/Rakefile
408
- - examples/i18n/he/features/addition.feature
409
- - examples/i18n/he/features/division.feature
410
- - examples/i18n/he/features/step_definitions/calculator_steps.rb
411
- - examples/i18n/he/lib/calculator.rb
412
- - examples/i18n/hi/Rakefile
413
- - examples/i18n/hi/features/addition.feature
414
- - examples/i18n/hi/features/division.feature
415
- - examples/i18n/hi/features/step_definitions/calculator_steps.rb
416
- - examples/i18n/hi/lib/calculator.rb
417
- - examples/i18n/ht/Rakefile
418
- - examples/i18n/ht/features/adisyon.feature
419
- - examples/i18n/ht/features/divizyon.feature
420
- - examples/i18n/ht/features/step_definitions/kalkilatris_steps.rb
421
- - examples/i18n/ht/lib/kalkilatris.rb
422
- - examples/i18n/hu/Rakefile
423
- - examples/i18n/hu/features/osszeadas.feature
424
- - examples/i18n/hu/features/osztas.feature
425
- - examples/i18n/hu/features/step_definitions/calculator_steps.rb
426
- - examples/i18n/hu/lib/calculator.rb
427
- - examples/i18n/id/Rakefile
428
- - examples/i18n/id/features/addition.feature
429
- - examples/i18n/id/features/division.feature
430
- - examples/i18n/id/features/step_definitions/calculator_steps.rb
431
- - examples/i18n/id/lib/calculator.rb
432
- - examples/i18n/it/Rakefile
433
- - examples/i18n/it/features/somma.feature
434
- - examples/i18n/it/features/step_definitions/calcolatrice_steps.rb
435
- - examples/i18n/it/lib/calcolatrice.rb
436
- - examples/i18n/ja/Rakefile
437
- - examples/i18n/ja/features/addition.feature
438
- - examples/i18n/ja/features/division.feature
439
- - examples/i18n/ja/features/step_definitions/calculator_steps.rb
440
- - examples/i18n/ja/features/support/env.rb
441
- - examples/i18n/ja/lib/calculator.rb
442
- - examples/i18n/ko/Rakefile
443
- - examples/i18n/ko/features/addition.feature
444
- - examples/i18n/ko/features/division.feature
445
- - examples/i18n/ko/features/step_definitions/calculator_steps.rb
446
- - examples/i18n/ko/lib/calculator.rb
447
- - examples/i18n/lt/Rakefile
448
- - examples/i18n/lt/features/addition.feature
449
- - examples/i18n/lt/features/division.feature
450
- - examples/i18n/lt/features/step_definitions/calculator_steps.rb
451
- - examples/i18n/lt/lib/calculator.rb
452
- - examples/i18n/lv/Rakefile
453
- - examples/i18n/lv/features/addition.feature
454
- - examples/i18n/lv/features/division.feature
455
- - examples/i18n/lv/features/step_definitions/calculator_steps.rb
456
- - examples/i18n/lv/lib/calculator.rb
457
- - examples/i18n/no/Rakefile
458
- - examples/i18n/no/features/step_definitions/kalkulator_steps.rb
459
- - examples/i18n/no/features/summering.feature
460
- - examples/i18n/no/features/support/env.rb
461
- - examples/i18n/no/lib/kalkulator.rb
462
- - examples/i18n/pl/Rakefile
463
- - examples/i18n/pl/features/addition.feature
464
- - examples/i18n/pl/features/division.feature
465
- - examples/i18n/pl/features/step_definitions/calculator_steps.rb
466
- - examples/i18n/pl/features/support/env.rb
467
- - examples/i18n/pl/lib/calculator.rb
468
- - examples/i18n/pt/Rakefile
469
- - examples/i18n/pt/features/adicao.feature
470
- - examples/i18n/pt/features/step_definitions/calculadora_steps.rb
471
- - examples/i18n/pt/features/support/env.rb
472
- - examples/i18n/pt/lib/calculadora.rb
473
- - examples/i18n/ro/Rakefile
474
- - examples/i18n/ro/features/adunare.feature
475
- - examples/i18n/ro/features/step_definitions/calculator_steps.rb
476
- - examples/i18n/ro/lib/calculator.rb
477
- - examples/i18n/ru/Rakefile
478
- - examples/i18n/ru/features/addition.feature
479
- - examples/i18n/ru/features/consecutive_calculations.feature
480
- - examples/i18n/ru/features/division.feature
481
- - examples/i18n/ru/features/step_definitions/calculator_steps.rb
482
- - examples/i18n/ru/features/support/env.rb
483
- - examples/i18n/ru/features/support/world.rb
484
- - examples/i18n/ru/lib/calculator.rb
485
- - examples/i18n/sk/Rakefile
486
- - examples/i18n/sk/features/addition.feature
487
- - examples/i18n/sk/features/division.feature
488
- - examples/i18n/sk/features/step_definitions/calculator_steps.rb
489
- - examples/i18n/sk/lib/calculator.rb
490
- - examples/i18n/sr-Cyrl/Rakefile
491
- - examples/i18n/sr-Cyrl/features/sabiranje.feature
492
- - examples/i18n/sr-Cyrl/features/step_definitions/calculator_steps.rb
493
- - examples/i18n/sr-Cyrl/features/support/env.rb
494
- - examples/i18n/sr-Cyrl/lib/calculator.rb
495
- - examples/i18n/sr-Latn/Rakefile
496
- - examples/i18n/sr-Latn/features/sabiranje.feature
497
- - examples/i18n/sr-Latn/features/step_definitions/calculator_steps.rb
498
- - examples/i18n/sr-Latn/lib/calculator.rb
499
- - examples/i18n/sv/Rakefile
500
- - examples/i18n/sv/features/step_definitions/kalkulator_steps.rb
501
- - examples/i18n/sv/features/summering.feature
502
- - examples/i18n/sv/lib/kalkulator.rb
503
- - examples/i18n/tr/Rakefile
504
- - examples/i18n/tr/features/bolme.feature
505
- - examples/i18n/tr/features/step_definitions/hesap_makinesi_adimlari.rb
506
- - examples/i18n/tr/features/toplama.feature
507
- - examples/i18n/tr/lib/hesap_makinesi.rb
508
- - examples/i18n/uk/Rakefile
509
- - examples/i18n/uk/features/addition.feature
510
- - examples/i18n/uk/features/consecutive_calculations.feature
511
- - examples/i18n/uk/features/division.feature
512
- - examples/i18n/uk/features/step_definitions/calculator_steps.rb
513
- - examples/i18n/uk/features/support/env.rb
514
- - examples/i18n/uk/features/support/world.rb
515
- - examples/i18n/uk/lib/calculator.rb
516
- - examples/i18n/uz/Rakefile
517
- - examples/i18n/uz/features/addition.feature
518
- - examples/i18n/uz/features/consecutive_calculations.feature
519
- - examples/i18n/uz/features/division.feature
520
- - examples/i18n/uz/features/step_definitions/calculator_steps.rb
521
- - examples/i18n/uz/features/support/env.rb
522
- - examples/i18n/uz/features/support/world.rb
523
- - examples/i18n/uz/lib/calculator.rb
524
- - examples/i18n/zh-CN/Rakefile
525
- - examples/i18n/zh-CN/features/addition.feature
526
- - examples/i18n/zh-CN/features/step_definitions/calculator_steps.rb
527
- - examples/i18n/zh-CN/lib/calculator.rb
528
- - examples/i18n/zh-TW/Rakefile
529
- - examples/i18n/zh-TW/features/addition.feature
530
- - examples/i18n/zh-TW/features/division.feature
531
- - examples/i18n/zh-TW/features/step_definitions/calculator_steps.rb
532
- - examples/i18n/zh-TW/lib/calculator.rb
533
- - examples/rspec_doubles/Rakefile
534
- - examples/rspec_doubles/features/mocking.feature
535
- - examples/rspec_doubles/features/step_definitions/calvin_steps.rb
536
- - examples/rspec_doubles/features/support/env.rb
537
- - examples/sinatra/README.textile
538
- - examples/sinatra/Rakefile
539
- - examples/sinatra/app.rb
540
- - examples/sinatra/features/add.feature
541
- - examples/sinatra/features/step_definitions/add_steps.rb
542
- - examples/sinatra/features/support/env.rb
543
- - examples/sinatra/views/add.erb
544
- - examples/sinatra/views/layout.erb
545
- - examples/tcl/README.textile
546
- - examples/tcl/Rakefile
547
- - examples/tcl/features/fibonnacci.feature
548
- - examples/tcl/features/step_definitions/fib_steps.rb
549
- - examples/tcl/features/support/env.rb
550
- - examples/tcl/src/fib.tcl
551
- - examples/test_unit/Gemfile
552
- - examples/test_unit/Rakefile
553
- - examples/test_unit/features/step_definitions/test_unit_steps.rb
554
- - examples/test_unit/features/test_unit.feature
555
- - examples/watir/README.textile
556
- - examples/watir/Rakefile
557
- - examples/watir/cucumber.yml
558
- - examples/watir/features/search.feature
559
- - examples/watir/features/step_definitions/search_steps.rb
560
- - examples/watir/features/support/env.rb
561
- - examples/watir/features/support/screenshots.rb
562
- - features/docs/api/list_step_defs_as_json.feature
563
- - features/docs/api/run_cli_main_with_existing_runtime.feature
564
- - features/docs/cli/backtraces.feature
565
- - features/docs/cli/dry_run.feature
566
- - features/docs/cli/exclude_files.feature
567
- - features/docs/cli/execute_with_tag_filter.feature
568
- - features/docs/cli/randomize.feature
569
- - features/docs/cli/require.feature
570
- - features/docs/cli/run_scenarios_matching_name.feature
571
- - features/docs/cli/run_specific_scenarios.feature
572
- - features/docs/cli/showing_differences.feature
573
- - features/docs/cli/specifying_multiple_formatters.feature
574
- - features/docs/cli/strict_mode.feature
575
- - features/docs/defining_steps/nested_steps.feature
576
- - features/docs/defining_steps/nested_steps_i18n.feature
577
- - features/docs/defining_steps/nested_steps_with_second_arg.feature
578
- - features/docs/defining_steps/one_line_step_definitions.feature
579
- - features/docs/defining_steps/printing_messages.feature
580
- - features/docs/defining_steps/skip_scenario.feature
581
- - features/docs/defining_steps/snippets.feature
582
- - features/docs/defining_steps/table_diffing.feature
583
- - features/docs/defining_steps/transforms.feature
584
- - features/docs/exception_in_after_hook.feature
585
- - features/docs/exception_in_after_step_hook.feature
586
- - features/docs/exception_in_around_hook.feature
587
- - features/docs/exception_in_before_hook.feature
588
- - features/docs/extending_cucumber/custom_filter.feature
589
- - features/docs/extending_cucumber/custom_formatter.feature
590
- - features/docs/formatters/debug_formatter.feature
591
- - features/docs/formatters/formatter_step_file_colon_line.feature
592
- - features/docs/formatters/html_formatter.feature
593
- - features/docs/formatters/json_formatter.feature
594
- - features/docs/formatters/junit_formatter.feature
595
- - features/docs/formatters/pretty_formatter.feature
596
- - features/docs/formatters/progress_formatter.feature
597
- - features/docs/formatters/rerun_formatter.feature
598
- - features/docs/formatters/usage_formatter.feature
599
- - features/docs/getting_started.feature
600
- - features/docs/gherkin/background.feature
601
- - features/docs/gherkin/doc_strings.feature
602
- - features/docs/gherkin/expand_option_for_outlines.feature
603
- - features/docs/gherkin/language_from_header.feature
604
- - features/docs/gherkin/language_help.feature
605
- - features/docs/gherkin/outlines.feature
606
- - features/docs/gherkin/unicode_table.feature
607
- - features/docs/gherkin/using_descriptions.feature
608
- - features/docs/gherkin/using_star_notation.feature
609
- - features/docs/iso-8859-1.feature
610
- - features/docs/post_configuration_hook.feature
611
- - features/docs/profiles.feature
612
- - features/docs/rake_task.feature
613
- - features/docs/raketask.feature
614
- - features/docs/wire_protocol/erb_configuration.feature
615
- - features/docs/wire_protocol/handle_unexpected_response.feature
616
- - features/docs/wire_protocol/invoke_message.feature
617
- - features/docs/wire_protocol/readme.md
618
- - features/docs/wire_protocol/snippets_message.feature
619
- - features/docs/wire_protocol/step_matches_message.feature
620
- - features/docs/wire_protocol/table_diffing.feature
621
- - features/docs/wire_protocol/tags.feature
622
- - features/docs/wire_protocol/timeouts.feature
623
- - features/docs/work_in_progress.feature
624
- - features/docs/writing_support_code/after_hooks.feature
625
- - features/docs/writing_support_code/around_hooks.feature
626
- - features/docs/writing_support_code/before_hook.feature
627
- - features/docs/writing_support_code/hook_order.feature
628
- - features/docs/writing_support_code/load_path.feature
629
- - features/docs/writing_support_code/state.feature
630
- - features/docs/writing_support_code/tagged_hooks.feature
631
- - features/lib/step_definitions/aruba_steps.rb
632
- - features/lib/step_definitions/cucumber_steps.rb
633
- - features/lib/step_definitions/iso-8859-1_steps.rb
634
- - features/lib/step_definitions/json_steps.rb
635
- - features/lib/step_definitions/junit_steps.rb
636
- - features/lib/step_definitions/language_steps.rb
637
- - features/lib/step_definitions/profile_steps.rb
638
- - features/lib/step_definitions/ruby_steps.rb
639
- - features/lib/step_definitions/wire_steps.rb
640
- - features/lib/support/env.rb
641
- - features/lib/support/fake_wire_server.rb
642
- - features/lib/support/feature_factory.rb
643
- - features/lib/support/normalise_output.rb
644
- - gem_tasks/contributors.rake
645
- - gem_tasks/cov.rake
646
- - gem_tasks/cucumber.rake
647
- - gem_tasks/downloads.rb
648
- - gem_tasks/environment.rake
649
- - gem_tasks/examples.rake
650
- - gem_tasks/fix_cr_lf.rake
651
- - gem_tasks/flog.rake
652
- - gem_tasks/rspec.rake
653
- - gem_tasks/sass.rake
654
- - gem_tasks/stats
655
- - gem_tasks/versions.txt
656
461
  - lib/autotest/cucumber.rb
657
462
  - lib/autotest/cucumber_mixin.rb
658
463
  - lib/autotest/cucumber_rails.rb
@@ -662,18 +467,28 @@ files:
662
467
  - lib/autotest/cucumber_rspec2.rb
663
468
  - lib/autotest/discover.rb
664
469
  - lib/cucumber.rb
665
- - lib/cucumber/ast.rb
666
470
  - lib/cucumber/cli/configuration.rb
667
471
  - lib/cucumber/cli/main.rb
668
472
  - lib/cucumber/cli/options.rb
669
473
  - lib/cucumber/cli/profile_loader.rb
474
+ - lib/cucumber/cli/rerun_file.rb
670
475
  - lib/cucumber/configuration.rb
671
476
  - lib/cucumber/constantize.rb
672
- - lib/cucumber/core_ext/instance_exec.rb
673
- - lib/cucumber/core_ext/proc.rb
674
477
  - lib/cucumber/core_ext/string.rb
478
+ - lib/cucumber/deprecate.rb
675
479
  - lib/cucumber/encoding.rb
676
480
  - lib/cucumber/errors.rb
481
+ - lib/cucumber/events.rb
482
+ - lib/cucumber/events/gherkin_source_parsed.rb
483
+ - lib/cucumber/events/gherkin_source_read.rb
484
+ - lib/cucumber/events/step_activated.rb
485
+ - lib/cucumber/events/step_definition_registered.rb
486
+ - lib/cucumber/events/test_case_finished.rb
487
+ - lib/cucumber/events/test_case_started.rb
488
+ - lib/cucumber/events/test_run_finished.rb
489
+ - lib/cucumber/events/test_run_started.rb
490
+ - lib/cucumber/events/test_step_finished.rb
491
+ - lib/cucumber/events/test_step_started.rb
677
492
  - lib/cucumber/file_specs.rb
678
493
  - lib/cucumber/filters.rb
679
494
  - lib/cucumber/filters/activate_steps.rb
@@ -681,34 +496,30 @@ files:
681
496
  - lib/cucumber/filters/apply_after_step_hooks.rb
682
497
  - lib/cucumber/filters/apply_around_hooks.rb
683
498
  - lib/cucumber/filters/apply_before_hooks.rb
499
+ - lib/cucumber/filters/broadcast_test_run_started_event.rb
684
500
  - lib/cucumber/filters/gated_receiver.rb
685
501
  - lib/cucumber/filters/prepare_world.rb
686
502
  - lib/cucumber/filters/quit.rb
687
503
  - lib/cucumber/filters/randomizer.rb
504
+ - lib/cucumber/filters/retry.rb
688
505
  - lib/cucumber/filters/tag_limits.rb
689
506
  - lib/cucumber/filters/tag_limits/test_case_index.rb
690
507
  - lib/cucumber/filters/tag_limits/verifier.rb
691
508
  - lib/cucumber/formatter/ansicolor.rb
509
+ - lib/cucumber/formatter/ast_lookup.rb
510
+ - lib/cucumber/formatter/backtrace_filter.rb
692
511
  - lib/cucumber/formatter/console.rb
693
- - lib/cucumber/formatter/cucumber.css
694
- - lib/cucumber/formatter/cucumber.sass
695
- - lib/cucumber/formatter/debug.rb
512
+ - lib/cucumber/formatter/console_counts.rb
513
+ - lib/cucumber/formatter/console_issues.rb
696
514
  - lib/cucumber/formatter/duration.rb
515
+ - lib/cucumber/formatter/duration_extractor.rb
516
+ - lib/cucumber/formatter/fail_fast.rb
697
517
  - lib/cucumber/formatter/fanout.rb
698
- - lib/cucumber/formatter/gherkin_formatter_adapter.rb
699
- - lib/cucumber/formatter/gpretty.rb
700
- - lib/cucumber/formatter/html.rb
701
518
  - lib/cucumber/formatter/ignore_missing_messages.rb
702
519
  - lib/cucumber/formatter/interceptor.rb
703
520
  - lib/cucumber/formatter/io.rb
704
- - lib/cucumber/formatter/jquery-min.js
705
521
  - lib/cucumber/formatter/json.rb
706
- - lib/cucumber/formatter/json_pretty.rb
707
522
  - lib/cucumber/formatter/junit.rb
708
- - lib/cucumber/formatter/legacy_api/adapter.rb
709
- - lib/cucumber/formatter/legacy_api/ast.rb
710
- - lib/cucumber/formatter/legacy_api/results.rb
711
- - lib/cucumber/formatter/legacy_api/runtime_facade.rb
712
523
  - lib/cucumber/formatter/pretty.rb
713
524
  - lib/cucumber/formatter/progress.rb
714
525
  - lib/cucumber/formatter/rerun.rb
@@ -717,24 +528,28 @@ files:
717
528
  - lib/cucumber/formatter/summary.rb
718
529
  - lib/cucumber/formatter/unicode.rb
719
530
  - lib/cucumber/formatter/usage.rb
531
+ - lib/cucumber/gherkin/data_table_parser.rb
532
+ - lib/cucumber/gherkin/formatter/ansi_escapes.rb
533
+ - lib/cucumber/gherkin/formatter/escaping.rb
534
+ - lib/cucumber/gherkin/i18n.rb
535
+ - lib/cucumber/gherkin/steps_parser.rb
536
+ - lib/cucumber/glue/dsl.rb
537
+ - lib/cucumber/glue/hook.rb
538
+ - lib/cucumber/glue/invoke_in_world.rb
539
+ - lib/cucumber/glue/proto_world.rb
540
+ - lib/cucumber/glue/registry_and_more.rb
541
+ - lib/cucumber/glue/snippet.rb
542
+ - lib/cucumber/glue/step_definition.rb
543
+ - lib/cucumber/glue/world_factory.rb
720
544
  - lib/cucumber/hooks.rb
721
- - lib/cucumber/language_support.rb
722
- - lib/cucumber/language_support/language_methods.rb
723
545
  - lib/cucumber/load_path.rb
724
546
  - lib/cucumber/multiline_argument.rb
725
547
  - lib/cucumber/multiline_argument/data_table.rb
548
+ - lib/cucumber/multiline_argument/data_table/diff_matrices.rb
726
549
  - lib/cucumber/multiline_argument/doc_string.rb
727
550
  - lib/cucumber/platform.rb
728
551
  - lib/cucumber/project_initializer.rb
729
552
  - lib/cucumber/rake/task.rb
730
- - lib/cucumber/rb_support/rb_dsl.rb
731
- - lib/cucumber/rb_support/rb_hook.rb
732
- - lib/cucumber/rb_support/rb_language.rb
733
- - lib/cucumber/rb_support/rb_step_definition.rb
734
- - lib/cucumber/rb_support/rb_transform.rb
735
- - lib/cucumber/rb_support/rb_world.rb
736
- - lib/cucumber/rb_support/regexp_argument_matcher.rb
737
- - lib/cucumber/rb_support/snippet.rb
738
553
  - lib/cucumber/rspec/disable_option_parser.rb
739
554
  - lib/cucumber/rspec/doubles.rb
740
555
  - lib/cucumber/running_test_case.rb
@@ -748,68 +563,20 @@ files:
748
563
  - lib/cucumber/step_definition_light.rb
749
564
  - lib/cucumber/step_definitions.rb
750
565
  - lib/cucumber/step_match.rb
566
+ - lib/cucumber/step_match_search.rb
751
567
  - lib/cucumber/term/ansicolor.rb
752
568
  - lib/cucumber/unit.rb
753
- - lib/cucumber/wire_support/configuration.rb
754
- - lib/cucumber/wire_support/connection.rb
755
- - lib/cucumber/wire_support/request_handler.rb
756
- - lib/cucumber/wire_support/wire_exception.rb
757
- - lib/cucumber/wire_support/wire_language.rb
758
- - lib/cucumber/wire_support/wire_packet.rb
759
- - lib/cucumber/wire_support/wire_protocol.rb
760
- - lib/cucumber/wire_support/wire_protocol/requests.rb
761
- - lib/cucumber/wire_support/wire_step_definition.rb
762
- - spec/cucumber/cli/configuration_spec.rb
763
- - spec/cucumber/cli/main_spec.rb
764
- - spec/cucumber/cli/options_spec.rb
765
- - spec/cucumber/cli/profile_loader_spec.rb
766
- - spec/cucumber/configuration_spec.rb
767
- - spec/cucumber/constantize_spec.rb
768
- - spec/cucumber/core_ext/proc_spec.rb
769
- - spec/cucumber/file_specs_spec.rb
770
- - spec/cucumber/filters/activate_steps_spec.rb
771
- - spec/cucumber/filters/gated_receiver_spec.rb
772
- - spec/cucumber/filters/tag_limits/test_case_index_spec.rb
773
- - spec/cucumber/filters/tag_limits/verifier_spec.rb
774
- - spec/cucumber/filters/tag_limits_spec.rb
775
- - spec/cucumber/formatter/ansicolor_spec.rb
776
- - spec/cucumber/formatter/debug_spec.rb
777
- - spec/cucumber/formatter/duration_spec.rb
778
- - spec/cucumber/formatter/html_spec.rb
779
- - spec/cucumber/formatter/interceptor_spec.rb
780
- - spec/cucumber/formatter/junit_spec.rb
781
- - spec/cucumber/formatter/legacy_api/adapter_spec.rb
782
- - spec/cucumber/formatter/pretty_spec.rb
783
- - spec/cucumber/formatter/progress_spec.rb
784
- - spec/cucumber/formatter/rerun_spec.rb
785
- - spec/cucumber/formatter/spec_helper.rb
786
- - spec/cucumber/hooks_spec.rb
787
- - spec/cucumber/multiline_argument/data_table_spec.rb
788
- - spec/cucumber/project_initializer_spec.rb
789
- - spec/cucumber/rake/forked_spec.rb
790
- - spec/cucumber/rb_support/rb_language_spec.rb
791
- - spec/cucumber/rb_support/rb_step_definition_spec.rb
792
- - spec/cucumber/rb_support/rb_transform_spec.rb
793
- - spec/cucumber/rb_support/regexp_argument_matcher_spec.rb
794
- - spec/cucumber/rb_support/snippet_spec.rb
795
- - spec/cucumber/running_test_case_spec.rb
796
- - spec/cucumber/runtime/for_programming_languages_spec.rb
797
- - spec/cucumber/runtime/support_code_spec.rb
798
- - spec/cucumber/runtime_spec.rb
799
- - spec/cucumber/sell_cucumbers.feature
800
- - spec/cucumber/step_match_spec.rb
801
- - spec/cucumber/wire_support/configuration_spec.rb
802
- - spec/cucumber/wire_support/connection_spec.rb
803
- - spec/cucumber/wire_support/wire_exception_spec.rb
804
- - spec/cucumber/wire_support/wire_language_spec.rb
805
- - spec/cucumber/wire_support/wire_packet_spec.rb
806
- - spec/cucumber/world/pending_spec.rb
807
- - spec/simplecov_setup.rb
808
- - spec/spec_helper.rb
809
- homepage: http://cukes.info
569
+ - lib/cucumber/version
570
+ - lib/simplecov_setup.rb
571
+ homepage: https://cucumber.io/
810
572
  licenses:
811
573
  - MIT
812
- metadata: {}
574
+ metadata:
575
+ bug_tracker_uri: https://github.com/cucumber/cucumber-ruby/issues
576
+ changelog_uri: https://github.com/cucumber/cucumber-ruby/blob/master/CHANGELOG.md
577
+ documentation_uri: https://www.rubydoc.info/github/cucumber/cucumber-ruby/
578
+ mailing_list_uri: https://groups.google.com/forum/#!forum/cukes
579
+ source_code_uri: https://github.com/cucumber/cucumber-ruby
813
580
  post_install_message:
814
581
  rdoc_options:
815
582
  - "--charset=UTF-8"
@@ -819,146 +586,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
819
586
  requirements:
820
587
  - - ">="
821
588
  - !ruby/object:Gem::Version
822
- version: 1.9.3
589
+ version: '2.3'
823
590
  required_rubygems_version: !ruby/object:Gem::Requirement
824
591
  requirements:
825
592
  - - ">"
826
593
  - !ruby/object:Gem::Version
827
594
  version: 1.3.1
828
595
  requirements: []
829
- rubyforge_project:
830
- rubygems_version: 2.2.2
596
+ rubygems_version: 3.0.3
831
597
  signing_key:
832
598
  specification_version: 4
833
- summary: cucumber-2.0.0.rc.5
834
- test_files:
835
- - features/docs/api/list_step_defs_as_json.feature
836
- - features/docs/api/run_cli_main_with_existing_runtime.feature
837
- - features/docs/cli/backtraces.feature
838
- - features/docs/cli/dry_run.feature
839
- - features/docs/cli/exclude_files.feature
840
- - features/docs/cli/execute_with_tag_filter.feature
841
- - features/docs/cli/randomize.feature
842
- - features/docs/cli/require.feature
843
- - features/docs/cli/run_scenarios_matching_name.feature
844
- - features/docs/cli/run_specific_scenarios.feature
845
- - features/docs/cli/showing_differences.feature
846
- - features/docs/cli/specifying_multiple_formatters.feature
847
- - features/docs/cli/strict_mode.feature
848
- - features/docs/defining_steps/nested_steps.feature
849
- - features/docs/defining_steps/nested_steps_i18n.feature
850
- - features/docs/defining_steps/nested_steps_with_second_arg.feature
851
- - features/docs/defining_steps/one_line_step_definitions.feature
852
- - features/docs/defining_steps/printing_messages.feature
853
- - features/docs/defining_steps/skip_scenario.feature
854
- - features/docs/defining_steps/snippets.feature
855
- - features/docs/defining_steps/table_diffing.feature
856
- - features/docs/defining_steps/transforms.feature
857
- - features/docs/exception_in_after_hook.feature
858
- - features/docs/exception_in_after_step_hook.feature
859
- - features/docs/exception_in_around_hook.feature
860
- - features/docs/exception_in_before_hook.feature
861
- - features/docs/extending_cucumber/custom_filter.feature
862
- - features/docs/extending_cucumber/custom_formatter.feature
863
- - features/docs/formatters/debug_formatter.feature
864
- - features/docs/formatters/formatter_step_file_colon_line.feature
865
- - features/docs/formatters/html_formatter.feature
866
- - features/docs/formatters/json_formatter.feature
867
- - features/docs/formatters/junit_formatter.feature
868
- - features/docs/formatters/pretty_formatter.feature
869
- - features/docs/formatters/progress_formatter.feature
870
- - features/docs/formatters/rerun_formatter.feature
871
- - features/docs/formatters/usage_formatter.feature
872
- - features/docs/getting_started.feature
873
- - features/docs/gherkin/background.feature
874
- - features/docs/gherkin/doc_strings.feature
875
- - features/docs/gherkin/expand_option_for_outlines.feature
876
- - features/docs/gherkin/language_from_header.feature
877
- - features/docs/gherkin/language_help.feature
878
- - features/docs/gherkin/outlines.feature
879
- - features/docs/gherkin/unicode_table.feature
880
- - features/docs/gherkin/using_descriptions.feature
881
- - features/docs/gherkin/using_star_notation.feature
882
- - features/docs/iso-8859-1.feature
883
- - features/docs/post_configuration_hook.feature
884
- - features/docs/profiles.feature
885
- - features/docs/rake_task.feature
886
- - features/docs/raketask.feature
887
- - features/docs/wire_protocol/erb_configuration.feature
888
- - features/docs/wire_protocol/handle_unexpected_response.feature
889
- - features/docs/wire_protocol/invoke_message.feature
890
- - features/docs/wire_protocol/readme.md
891
- - features/docs/wire_protocol/snippets_message.feature
892
- - features/docs/wire_protocol/step_matches_message.feature
893
- - features/docs/wire_protocol/table_diffing.feature
894
- - features/docs/wire_protocol/tags.feature
895
- - features/docs/wire_protocol/timeouts.feature
896
- - features/docs/work_in_progress.feature
897
- - features/docs/writing_support_code/after_hooks.feature
898
- - features/docs/writing_support_code/around_hooks.feature
899
- - features/docs/writing_support_code/before_hook.feature
900
- - features/docs/writing_support_code/hook_order.feature
901
- - features/docs/writing_support_code/load_path.feature
902
- - features/docs/writing_support_code/state.feature
903
- - features/docs/writing_support_code/tagged_hooks.feature
904
- - features/lib/step_definitions/aruba_steps.rb
905
- - features/lib/step_definitions/cucumber_steps.rb
906
- - features/lib/step_definitions/iso-8859-1_steps.rb
907
- - features/lib/step_definitions/json_steps.rb
908
- - features/lib/step_definitions/junit_steps.rb
909
- - features/lib/step_definitions/language_steps.rb
910
- - features/lib/step_definitions/profile_steps.rb
911
- - features/lib/step_definitions/ruby_steps.rb
912
- - features/lib/step_definitions/wire_steps.rb
913
- - features/lib/support/env.rb
914
- - features/lib/support/fake_wire_server.rb
915
- - features/lib/support/feature_factory.rb
916
- - features/lib/support/normalise_output.rb
917
- - spec/cucumber/cli/configuration_spec.rb
918
- - spec/cucumber/cli/main_spec.rb
919
- - spec/cucumber/cli/options_spec.rb
920
- - spec/cucumber/cli/profile_loader_spec.rb
921
- - spec/cucumber/configuration_spec.rb
922
- - spec/cucumber/constantize_spec.rb
923
- - spec/cucumber/core_ext/proc_spec.rb
924
- - spec/cucumber/file_specs_spec.rb
925
- - spec/cucumber/filters/activate_steps_spec.rb
926
- - spec/cucumber/filters/gated_receiver_spec.rb
927
- - spec/cucumber/filters/tag_limits/test_case_index_spec.rb
928
- - spec/cucumber/filters/tag_limits/verifier_spec.rb
929
- - spec/cucumber/filters/tag_limits_spec.rb
930
- - spec/cucumber/formatter/ansicolor_spec.rb
931
- - spec/cucumber/formatter/debug_spec.rb
932
- - spec/cucumber/formatter/duration_spec.rb
933
- - spec/cucumber/formatter/html_spec.rb
934
- - spec/cucumber/formatter/interceptor_spec.rb
935
- - spec/cucumber/formatter/junit_spec.rb
936
- - spec/cucumber/formatter/legacy_api/adapter_spec.rb
937
- - spec/cucumber/formatter/pretty_spec.rb
938
- - spec/cucumber/formatter/progress_spec.rb
939
- - spec/cucumber/formatter/rerun_spec.rb
940
- - spec/cucumber/formatter/spec_helper.rb
941
- - spec/cucumber/hooks_spec.rb
942
- - spec/cucumber/multiline_argument/data_table_spec.rb
943
- - spec/cucumber/project_initializer_spec.rb
944
- - spec/cucumber/rake/forked_spec.rb
945
- - spec/cucumber/rb_support/rb_language_spec.rb
946
- - spec/cucumber/rb_support/rb_step_definition_spec.rb
947
- - spec/cucumber/rb_support/rb_transform_spec.rb
948
- - spec/cucumber/rb_support/regexp_argument_matcher_spec.rb
949
- - spec/cucumber/rb_support/snippet_spec.rb
950
- - spec/cucumber/running_test_case_spec.rb
951
- - spec/cucumber/runtime/for_programming_languages_spec.rb
952
- - spec/cucumber/runtime/support_code_spec.rb
953
- - spec/cucumber/runtime_spec.rb
954
- - spec/cucumber/sell_cucumbers.feature
955
- - spec/cucumber/step_match_spec.rb
956
- - spec/cucumber/wire_support/configuration_spec.rb
957
- - spec/cucumber/wire_support/connection_spec.rb
958
- - spec/cucumber/wire_support/wire_exception_spec.rb
959
- - spec/cucumber/wire_support/wire_language_spec.rb
960
- - spec/cucumber/wire_support/wire_packet_spec.rb
961
- - spec/cucumber/world/pending_spec.rb
962
- - spec/simplecov_setup.rb
963
- - spec/spec_helper.rb
964
- has_rdoc:
599
+ summary: cucumber-4.0.0.rc.3
600
+ test_files: []