cucumber 3.0.1 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (517) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +84 -4
  3. data/CONTRIBUTING.md +3 -4
  4. data/README.md +12 -12
  5. data/lib/autotest/cucumber.rb +1 -0
  6. data/lib/autotest/cucumber_mixin.rb +1 -0
  7. data/lib/autotest/cucumber_rails.rb +1 -0
  8. data/lib/autotest/cucumber_rails_rspec.rb +1 -0
  9. data/lib/autotest/cucumber_rails_rspec2.rb +1 -0
  10. data/lib/autotest/cucumber_rspec.rb +1 -0
  11. data/lib/autotest/cucumber_rspec2.rb +1 -0
  12. data/lib/autotest/discover.rb +1 -0
  13. data/lib/cucumber.rb +1 -0
  14. data/lib/cucumber/cli/configuration.rb +1 -0
  15. data/lib/cucumber/cli/main.rb +2 -2
  16. data/lib/cucumber/cli/options.rb +63 -55
  17. data/lib/cucumber/cli/profile_loader.rb +5 -7
  18. data/lib/cucumber/cli/rerun_file.rb +1 -0
  19. data/lib/cucumber/configuration.rb +8 -7
  20. data/lib/cucumber/constantize.rb +6 -5
  21. data/lib/cucumber/core_ext/string.rb +1 -0
  22. data/lib/cucumber/deprecate.rb +1 -1
  23. data/lib/cucumber/encoding.rb +2 -1
  24. data/lib/cucumber/errors.rb +2 -1
  25. data/lib/cucumber/events.rb +1 -2
  26. data/lib/cucumber/events/gherkin_source_read.rb +1 -4
  27. data/lib/cucumber/events/step_activated.rb +4 -5
  28. data/lib/cucumber/events/step_definition_registered.rb +4 -8
  29. data/lib/cucumber/events/test_case_finished.rb +0 -4
  30. data/lib/cucumber/events/test_case_started.rb +0 -4
  31. data/lib/cucumber/events/test_run_finished.rb +2 -3
  32. data/lib/cucumber/events/test_run_started.rb +2 -4
  33. data/lib/cucumber/events/test_step_finished.rb +0 -6
  34. data/lib/cucumber/events/test_step_started.rb +1 -7
  35. data/lib/cucumber/file_specs.rb +2 -1
  36. data/lib/cucumber/filters.rb +1 -0
  37. data/lib/cucumber/filters/activate_steps.rb +1 -1
  38. data/lib/cucumber/filters/apply_after_hooks.rb +1 -0
  39. data/lib/cucumber/filters/apply_after_step_hooks.rb +1 -0
  40. data/lib/cucumber/filters/apply_around_hooks.rb +1 -0
  41. data/lib/cucumber/filters/apply_before_hooks.rb +1 -0
  42. data/lib/cucumber/filters/broadcast_test_run_started_event.rb +2 -1
  43. data/lib/cucumber/filters/gated_receiver.rb +1 -2
  44. data/lib/cucumber/filters/prepare_world.rb +2 -5
  45. data/lib/cucumber/filters/quit.rb +2 -4
  46. data/lib/cucumber/filters/randomizer.rb +6 -7
  47. data/lib/cucumber/filters/retry.rb +2 -2
  48. data/lib/cucumber/filters/tag_limits.rb +2 -2
  49. data/lib/cucumber/filters/tag_limits/test_case_index.rb +1 -2
  50. data/lib/cucumber/filters/tag_limits/verifier.rb +1 -2
  51. data/lib/cucumber/formatter/ansicolor.rb +13 -12
  52. data/lib/cucumber/formatter/backtrace_filter.rb +1 -2
  53. data/lib/cucumber/formatter/console.rb +11 -12
  54. data/lib/cucumber/formatter/console_counts.rb +4 -4
  55. data/lib/cucumber/formatter/console_issues.rb +3 -3
  56. data/lib/cucumber/formatter/duration.rb +1 -0
  57. data/lib/cucumber/formatter/duration_extractor.rb +1 -1
  58. data/lib/cucumber/formatter/fail_fast.rb +9 -6
  59. data/lib/cucumber/formatter/fanout.rb +1 -3
  60. data/lib/cucumber/formatter/hook_query_visitor.rb +1 -0
  61. data/lib/cucumber/formatter/html.rb +28 -32
  62. data/lib/cucumber/formatter/html_builder.rb +3 -2
  63. data/lib/cucumber/formatter/http_io.rb +146 -0
  64. data/lib/cucumber/formatter/ignore_missing_messages.rb +1 -3
  65. data/lib/cucumber/formatter/interceptor.rb +18 -5
  66. data/lib/cucumber/formatter/io.rb +18 -11
  67. data/lib/cucumber/formatter/json.rb +11 -4
  68. data/lib/cucumber/formatter/json_pretty.rb +1 -1
  69. data/lib/cucumber/formatter/junit.rb +22 -17
  70. data/lib/cucumber/formatter/pretty.rb +4 -3
  71. data/lib/cucumber/formatter/progress.rb +3 -2
  72. data/lib/cucumber/formatter/rerun.rb +2 -1
  73. data/lib/cucumber/formatter/stepdefs.rb +1 -0
  74. data/lib/cucumber/formatter/steps.rb +2 -2
  75. data/lib/cucumber/formatter/summary.rb +1 -2
  76. data/lib/cucumber/formatter/unicode.rb +2 -2
  77. data/lib/cucumber/formatter/usage.rb +22 -19
  78. data/lib/cucumber/gherkin/data_table_parser.rb +1 -0
  79. data/lib/cucumber/gherkin/formatter/ansi_escapes.rb +86 -85
  80. data/lib/cucumber/gherkin/formatter/escaping.rb +13 -12
  81. data/lib/cucumber/gherkin/i18n.rb +1 -0
  82. data/lib/cucumber/gherkin/steps_parser.rb +1 -0
  83. data/lib/cucumber/glue/dsl.rb +1 -0
  84. data/lib/cucumber/glue/hook.rb +1 -0
  85. data/lib/cucumber/glue/invoke_in_world.rb +3 -3
  86. data/lib/cucumber/glue/proto_world.rb +10 -9
  87. data/lib/cucumber/glue/registry_and_more.rb +13 -12
  88. data/lib/cucumber/glue/snippet.rb +1 -5
  89. data/lib/cucumber/glue/step_definition.rb +10 -10
  90. data/lib/cucumber/glue/world_factory.rb +1 -3
  91. data/lib/cucumber/hooks.rb +13 -3
  92. data/lib/cucumber/load_path.rb +1 -0
  93. data/lib/cucumber/multiline_argument.rb +3 -3
  94. data/lib/cucumber/multiline_argument/data_table.rb +16 -20
  95. data/lib/cucumber/multiline_argument/data_table/diff_matrices.rb +7 -11
  96. data/lib/cucumber/multiline_argument/doc_string.rb +1 -0
  97. data/lib/cucumber/platform.rb +2 -1
  98. data/lib/cucumber/project_initializer.rb +1 -1
  99. data/lib/cucumber/rake/task.rb +8 -5
  100. data/lib/cucumber/rspec/disable_option_parser.rb +1 -0
  101. data/lib/cucumber/rspec/doubles.rb +1 -0
  102. data/lib/cucumber/running_test_case.rb +2 -1
  103. data/lib/cucumber/runtime.rb +6 -6
  104. data/lib/cucumber/runtime/after_hooks.rb +1 -0
  105. data/lib/cucumber/runtime/before_hooks.rb +1 -0
  106. data/lib/cucumber/runtime/for_programming_languages.rb +8 -7
  107. data/lib/cucumber/runtime/step_hooks.rb +2 -0
  108. data/lib/cucumber/runtime/support_code.rb +3 -7
  109. data/lib/cucumber/runtime/user_interface.rb +2 -3
  110. data/lib/cucumber/step_argument.rb +1 -0
  111. data/lib/cucumber/step_definition_light.rb +2 -1
  112. data/lib/cucumber/step_definitions.rb +2 -1
  113. data/lib/cucumber/step_match.rb +9 -8
  114. data/lib/cucumber/step_match_search.rb +8 -9
  115. data/lib/cucumber/term/ansicolor.rb +30 -30
  116. data/lib/cucumber/unit.rb +1 -0
  117. data/lib/cucumber/version +1 -1
  118. data/lib/simplecov_setup.rb +1 -0
  119. metadata +64 -659
  120. data/.coveralls.yml +0 -1
  121. data/.cucumberproignore +0 -6
  122. data/.gitattributes +0 -32
  123. data/.github/ISSUE_TEMPLATE.md +0 -48
  124. data/.github/PULL_REQUEST_TEMPLATE.md +0 -40
  125. data/.rspec +0 -1
  126. data/.rubocop.yml +0 -13
  127. data/.rubocop_todo.yml +0 -991
  128. data/.ruby-gemset +0 -1
  129. data/.travis.yml +0 -70
  130. data/.yardopts +0 -1
  131. data/Gemfile +0 -28
  132. data/Rakefile +0 -32
  133. data/appveyor.yml +0 -27
  134. data/cucumber.gemspec +0 -52
  135. data/cucumber.yml +0 -19
  136. data/examples/i18n/README.textile +0 -3
  137. data/examples/i18n/Rakefile +0 -33
  138. data/examples/i18n/ar/Rakefile +0 -6
  139. data/examples/i18n/ar/features/addition.feature +0 -17
  140. data/examples/i18n/ar/features/step_definitions/calculator_steps.rb +0 -29
  141. data/examples/i18n/ar/lib/calculator.rb +0 -11
  142. data/examples/i18n/bg/Rakefile +0 -6
  143. data/examples/i18n/bg/features/addition.feature +0 -12
  144. data/examples/i18n/bg/features/consecutive_calculations.feature +0 -19
  145. data/examples/i18n/bg/features/division.feature +0 -17
  146. data/examples/i18n/bg/features/step_definitions/calculator_steps.rb +0 -24
  147. data/examples/i18n/bg/features/support/env.rb +0 -10
  148. data/examples/i18n/bg/features/support/world.rb +0 -8
  149. data/examples/i18n/bg/lib/calculator.rb +0 -25
  150. data/examples/i18n/ca/Rakefile +0 -6
  151. data/examples/i18n/ca/features/step_definitions/calculator_steps.rb +0 -26
  152. data/examples/i18n/ca/features/suma.feature +0 -17
  153. data/examples/i18n/ca/lib/calculadora.rb +0 -16
  154. data/examples/i18n/cs/Rakefile +0 -6
  155. data/examples/i18n/cs/features/addition.feature +0 -17
  156. data/examples/i18n/cs/features/division.feature +0 -11
  157. data/examples/i18n/cs/features/step_definitions/calculator_steps.rb +0 -29
  158. data/examples/i18n/cs/lib/calculator.rb +0 -14
  159. data/examples/i18n/da/Rakefile +0 -6
  160. data/examples/i18n/da/features/sammenlaegning.feature +0 -18
  161. data/examples/i18n/da/features/step_definitions/lommeregner_steps.rb +0 -29
  162. data/examples/i18n/da/lib/lommeregner.rb +0 -11
  163. data/examples/i18n/de/Rakefile +0 -6
  164. data/examples/i18n/de/features/addition.feature +0 -17
  165. data/examples/i18n/de/features/division.feature +0 -10
  166. data/examples/i18n/de/features/step_definitions/calculator_steps.rb +0 -29
  167. data/examples/i18n/de/lib/calculator.rb +0 -14
  168. data/examples/i18n/el/Rakefile +0 -6
  169. data/examples/i18n/el/features/addition.feature +0 -17
  170. data/examples/i18n/el/features/division.feature +0 -10
  171. data/examples/i18n/el/features/step_definitions/calculator_steps.rb +0 -29
  172. data/examples/i18n/el/lib/calculator.rb +0 -14
  173. data/examples/i18n/en-lol/Rakefile +0 -4
  174. data/examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb +0 -16
  175. data/examples/i18n/en-lol/features/stuffing.feature +0 -8
  176. data/examples/i18n/en-lol/features/support/env.rb +0 -11
  177. data/examples/i18n/en-lol/lib/basket.rb +0 -12
  178. data/examples/i18n/en-lol/lib/belly.rb +0 -11
  179. data/examples/i18n/en/Rakefile +0 -6
  180. data/examples/i18n/en/features/addition.feature +0 -17
  181. data/examples/i18n/en/features/division.feature +0 -10
  182. data/examples/i18n/en/features/step_definitions/calculator_steps.rb +0 -29
  183. data/examples/i18n/en/lib/calculator.rb +0 -14
  184. data/examples/i18n/eo/Rakefile +0 -6
  185. data/examples/i18n/eo/features/adicio.feature +0 -17
  186. data/examples/i18n/eo/features/divido.feature +0 -10
  187. data/examples/i18n/eo/features/step_definitions/calculator_steps.rb +0 -29
  188. data/examples/i18n/eo/lib/calculator.rb +0 -14
  189. data/examples/i18n/es/Rakefile +0 -6
  190. data/examples/i18n/es/features/adicion.feature +0 -17
  191. data/examples/i18n/es/features/step_definitions/calculador_steps.rb +0 -26
  192. data/examples/i18n/es/lib/calculador.rb +0 -14
  193. data/examples/i18n/et/Rakefile +0 -6
  194. data/examples/i18n/et/features/jagamine.feature +0 -10
  195. data/examples/i18n/et/features/liitmine.feature +0 -17
  196. data/examples/i18n/et/features/step_definitions/kalkulaator_steps.rb +0 -29
  197. data/examples/i18n/et/lib/kalkulaator.rb +0 -14
  198. data/examples/i18n/fi/Rakefile +0 -6
  199. data/examples/i18n/fi/features/jakolasku.feature +0 -10
  200. data/examples/i18n/fi/features/step_definitions/laskin_steps.rb +0 -29
  201. data/examples/i18n/fi/features/yhteenlasku.feature +0 -17
  202. data/examples/i18n/fi/lib/laskin.rb +0 -14
  203. data/examples/i18n/fr/Rakefile +0 -8
  204. data/examples/i18n/fr/features/addition.feature +0 -18
  205. data/examples/i18n/fr/features/addition2.feature +0 -17
  206. data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +0 -32
  207. data/examples/i18n/fr/features/support/env.rb +0 -10
  208. data/examples/i18n/fr/lib/calculatrice.rb +0 -10
  209. data/examples/i18n/he/Rakefile +0 -6
  210. data/examples/i18n/he/features/addition.feature +0 -17
  211. data/examples/i18n/he/features/division.feature +0 -10
  212. data/examples/i18n/he/features/step_definitions/calculator_steps.rb +0 -29
  213. data/examples/i18n/he/lib/calculator.rb +0 -15
  214. data/examples/i18n/hi/Rakefile +0 -6
  215. data/examples/i18n/hi/features/addition.feature +0 -16
  216. data/examples/i18n/hi/features/division.feature +0 -10
  217. data/examples/i18n/hi/features/step_definitions/calculator_steps.rb +0 -29
  218. data/examples/i18n/hi/lib/calculator.rb +0 -15
  219. data/examples/i18n/ht/Rakefile +0 -6
  220. data/examples/i18n/ht/features/adisyon.feature +0 -17
  221. data/examples/i18n/ht/features/divizyon.feature +0 -10
  222. data/examples/i18n/ht/features/step_definitions/kalkilatris_steps.rb +0 -29
  223. data/examples/i18n/ht/lib/kalkilatris.rb +0 -14
  224. data/examples/i18n/hu/Rakefile +0 -6
  225. data/examples/i18n/hu/features/osszeadas.feature +0 -17
  226. data/examples/i18n/hu/features/osztas.feature +0 -10
  227. data/examples/i18n/hu/features/step_definitions/calculator_steps.rb +0 -30
  228. data/examples/i18n/hu/lib/calculator.rb +0 -14
  229. data/examples/i18n/id/Rakefile +0 -6
  230. data/examples/i18n/id/features/addition.feature +0 -17
  231. data/examples/i18n/id/features/division.feature +0 -10
  232. data/examples/i18n/id/features/step_definitions/calculator_steps.rb +0 -29
  233. data/examples/i18n/id/lib/calculator.rb +0 -14
  234. data/examples/i18n/it/Rakefile +0 -6
  235. data/examples/i18n/it/features/somma.feature +0 -11
  236. data/examples/i18n/it/features/step_definitions/calcolatrice_steps.rb +0 -29
  237. data/examples/i18n/it/lib/calcolatrice.rb +0 -11
  238. data/examples/i18n/ja/Rakefile +0 -6
  239. data/examples/i18n/ja/features/addition.feature +0 -17
  240. data/examples/i18n/ja/features/division.feature +0 -10
  241. data/examples/i18n/ja/features/step_definitions/calculator_steps.rb +0 -19
  242. data/examples/i18n/ja/features/support/env.rb +0 -10
  243. data/examples/i18n/ja/lib/calculator.rb +0 -14
  244. data/examples/i18n/ko/Rakefile +0 -6
  245. data/examples/i18n/ko/features/addition.feature +0 -17
  246. data/examples/i18n/ko/features/division.feature +0 -11
  247. data/examples/i18n/ko/features/step_definitions/calculator_steps.rb +0 -29
  248. data/examples/i18n/ko/lib/calculator.rb +0 -14
  249. data/examples/i18n/lt/Rakefile +0 -6
  250. data/examples/i18n/lt/features/addition.feature +0 -17
  251. data/examples/i18n/lt/features/division.feature +0 -10
  252. data/examples/i18n/lt/features/step_definitions/calculator_steps.rb +0 -29
  253. data/examples/i18n/lt/lib/calculator.rb +0 -14
  254. data/examples/i18n/lv/Rakefile +0 -6
  255. data/examples/i18n/lv/features/addition.feature +0 -17
  256. data/examples/i18n/lv/features/division.feature +0 -10
  257. data/examples/i18n/lv/features/step_definitions/calculator_steps.rb +0 -29
  258. data/examples/i18n/lv/lib/calculator.rb +0 -14
  259. data/examples/i18n/no/Rakefile +0 -6
  260. data/examples/i18n/no/features/step_definitions/kalkulator_steps.rb +0 -17
  261. data/examples/i18n/no/features/summering.feature +0 -19
  262. data/examples/i18n/no/features/support/env.rb +0 -11
  263. data/examples/i18n/no/lib/kalkulator.rb +0 -11
  264. data/examples/i18n/pl/Rakefile +0 -6
  265. data/examples/i18n/pl/features/addition.feature +0 -17
  266. data/examples/i18n/pl/features/division.feature +0 -10
  267. data/examples/i18n/pl/features/step_definitions/calculator_steps.rb +0 -29
  268. data/examples/i18n/pl/features/support/env.rb +0 -10
  269. data/examples/i18n/pl/lib/calculator.rb +0 -14
  270. data/examples/i18n/pt/Rakefile +0 -6
  271. data/examples/i18n/pt/features/adicao.feature +0 -11
  272. data/examples/i18n/pt/features/step_definitions/calculadora_steps.rb +0 -20
  273. data/examples/i18n/pt/features/support/env.rb +0 -10
  274. data/examples/i18n/pt/lib/calculadora.rb +0 -10
  275. data/examples/i18n/ro/Rakefile +0 -6
  276. data/examples/i18n/ro/features/adunare.feature +0 -12
  277. data/examples/i18n/ro/features/step_definitions/calculator_steps.rb +0 -26
  278. data/examples/i18n/ro/lib/calculator.rb +0 -11
  279. data/examples/i18n/ru/Rakefile +0 -6
  280. data/examples/i18n/ru/features/addition.feature +0 -11
  281. data/examples/i18n/ru/features/consecutive_calculations.feature +0 -17
  282. data/examples/i18n/ru/features/division.feature +0 -16
  283. data/examples/i18n/ru/features/step_definitions/calculator_steps.rb +0 -19
  284. data/examples/i18n/ru/features/support/env.rb +0 -10
  285. data/examples/i18n/ru/features/support/world.rb +0 -8
  286. data/examples/i18n/ru/lib/calculator.rb +0 -25
  287. data/examples/i18n/sk/Rakefile +0 -6
  288. data/examples/i18n/sk/features/addition.feature +0 -17
  289. data/examples/i18n/sk/features/division.feature +0 -10
  290. data/examples/i18n/sk/features/step_definitions/calculator_steps.rb +0 -29
  291. data/examples/i18n/sk/lib/calculator.rb +0 -14
  292. data/examples/i18n/sr-Cyrl/Rakefile +0 -6
  293. data/examples/i18n/sr-Cyrl/features/sabiranje.feature +0 -18
  294. data/examples/i18n/sr-Cyrl/features/step_definitions/calculator_steps.rb +0 -20
  295. data/examples/i18n/sr-Cyrl/features/support/env.rb +0 -10
  296. data/examples/i18n/sr-Cyrl/lib/calculator.rb +0 -12
  297. data/examples/i18n/sr-Latn/Rakefile +0 -6
  298. data/examples/i18n/sr-Latn/features/sabiranje.feature +0 -18
  299. data/examples/i18n/sr-Latn/features/step_definitions/calculator_steps.rb +0 -29
  300. data/examples/i18n/sr-Latn/lib/calculator.rb +0 -12
  301. data/examples/i18n/sv/Rakefile +0 -6
  302. data/examples/i18n/sv/features/step_definitions/kalkulator_steps.rb +0 -29
  303. data/examples/i18n/sv/features/summering.feature +0 -18
  304. data/examples/i18n/sv/lib/kalkulator.rb +0 -11
  305. data/examples/i18n/tr/Rakefile +0 -6
  306. data/examples/i18n/tr/features/bolme.feature +0 -10
  307. data/examples/i18n/tr/features/step_definitions/hesap_makinesi_adimlari.rb +0 -29
  308. data/examples/i18n/tr/features/toplama.feature +0 -18
  309. data/examples/i18n/tr/lib/hesap_makinesi.rb +0 -15
  310. data/examples/i18n/uk/Rakefile +0 -6
  311. data/examples/i18n/uk/features/addition.feature +0 -11
  312. data/examples/i18n/uk/features/consecutive_calculations.feature +0 -17
  313. data/examples/i18n/uk/features/division.feature +0 -16
  314. data/examples/i18n/uk/features/step_definitions/calculator_steps.rb +0 -19
  315. data/examples/i18n/uk/features/support/env.rb +0 -10
  316. data/examples/i18n/uk/features/support/world.rb +0 -8
  317. data/examples/i18n/uk/lib/calculator.rb +0 -25
  318. data/examples/i18n/uz/Rakefile +0 -6
  319. data/examples/i18n/uz/features/addition.feature +0 -10
  320. data/examples/i18n/uz/features/consecutive_calculations.feature +0 -17
  321. data/examples/i18n/uz/features/division.feature +0 -17
  322. data/examples/i18n/uz/features/step_definitions/calculator_steps.rb +0 -19
  323. data/examples/i18n/uz/features/support/env.rb +0 -10
  324. data/examples/i18n/uz/features/support/world.rb +0 -8
  325. data/examples/i18n/uz/lib/calculator.rb +0 -25
  326. data/examples/i18n/zh-CN/Rakefile +0 -4
  327. data/examples/i18n/zh-CN/features/addition.feature +0 -18
  328. data/examples/i18n/zh-CN/features/step_definitions/calculator_steps.rb +0 -31
  329. data/examples/i18n/zh-CN/lib/calculator.rb +0 -10
  330. data/examples/i18n/zh-TW/Rakefile +0 -4
  331. data/examples/i18n/zh-TW/features/addition.feature +0 -17
  332. data/examples/i18n/zh-TW/features/division.feature +0 -11
  333. data/examples/i18n/zh-TW/features/step_definitions/calculator_steps.rb +0 -29
  334. data/examples/i18n/zh-TW/lib/calculator.rb +0 -14
  335. data/examples/rspec_doubles/Rakefile +0 -4
  336. data/examples/rspec_doubles/features/mocking.feature +0 -9
  337. data/examples/rspec_doubles/features/step_definitions/calvin_steps.rb +0 -19
  338. data/examples/rspec_doubles/features/support/env.rb +0 -12
  339. data/examples/sinatra/README.textile +0 -13
  340. data/examples/sinatra/Rakefile +0 -6
  341. data/examples/sinatra/app.rb +0 -14
  342. data/examples/sinatra/features/add.feature +0 -11
  343. data/examples/sinatra/features/step_definitions/add_steps.rb +0 -15
  344. data/examples/sinatra/features/support/env.rb +0 -15
  345. data/examples/sinatra/views/add.erb +0 -7
  346. data/examples/sinatra/views/layout.erb +0 -8
  347. data/examples/tcl/README.textile +0 -11
  348. data/examples/tcl/Rakefile +0 -6
  349. data/examples/tcl/features/fibonnacci.feature +0 -17
  350. data/examples/tcl/features/step_definitions/fib_steps.rb +0 -7
  351. data/examples/tcl/features/support/env.rb +0 -7
  352. data/examples/tcl/src/fib.tcl +0 -3
  353. data/examples/test_unit/Gemfile +0 -4
  354. data/examples/test_unit/Rakefile +0 -6
  355. data/examples/test_unit/features/step_definitions/test_unit_steps.rb +0 -20
  356. data/examples/test_unit/features/test_unit.feature +0 -9
  357. data/examples/watir/README.textile +0 -16
  358. data/examples/watir/Rakefile +0 -12
  359. data/examples/watir/cucumber.yml +0 -1
  360. data/examples/watir/features/search.feature +0 -12
  361. data/examples/watir/features/step_definitions/search_steps.rb +0 -27
  362. data/examples/watir/features/support/env.rb +0 -39
  363. data/examples/watir/features/support/screenshots.rb +0 -47
  364. data/features/docs/api/list_step_defs_as_json.feature +0 -64
  365. data/features/docs/api/listen_for_events.feature +0 -59
  366. data/features/docs/api/run_cli_main_with_existing_runtime.feature +0 -27
  367. data/features/docs/cli/backtraces.feature +0 -36
  368. data/features/docs/cli/dry_run.feature +0 -73
  369. data/features/docs/cli/exclude_files.feature +0 -18
  370. data/features/docs/cli/execute_with_tag_filter.feature +0 -119
  371. data/features/docs/cli/fail_fast.feature +0 -48
  372. data/features/docs/cli/finding_steps.feature +0 -28
  373. data/features/docs/cli/help.feature +0 -8
  374. data/features/docs/cli/i18n.feature +0 -42
  375. data/features/docs/cli/randomize.feature +0 -140
  376. data/features/docs/cli/require.feature +0 -27
  377. data/features/docs/cli/retry_failing_tests.feature +0 -92
  378. data/features/docs/cli/run_scenarios_matching_name.feature +0 -105
  379. data/features/docs/cli/run_specific_scenarios.feature +0 -77
  380. data/features/docs/cli/showing_differences.feature +0 -43
  381. data/features/docs/cli/specifying_multiple_formatters.feature +0 -68
  382. data/features/docs/cli/strict_mode.feature +0 -70
  383. data/features/docs/defining_steps/ambiguous_steps.feature +0 -89
  384. data/features/docs/defining_steps/nested_steps.feature +0 -181
  385. data/features/docs/defining_steps/nested_steps_i18n.feature +0 -37
  386. data/features/docs/defining_steps/nested_steps_with_second_arg.feature +0 -56
  387. data/features/docs/defining_steps/one_line_step_definitions.feature +0 -65
  388. data/features/docs/defining_steps/printing_messages.feature +0 -147
  389. data/features/docs/defining_steps/skip_scenario.feature +0 -31
  390. data/features/docs/defining_steps/snippets.feature +0 -56
  391. data/features/docs/defining_steps/table_diffing.feature +0 -50
  392. data/features/docs/events/gherkin_source_read_event.feature +0 -43
  393. data/features/docs/events/step_activated_event.feature +0 -36
  394. data/features/docs/events/step_definition_registered_event.feature +0 -29
  395. data/features/docs/events/test_case_finished_event.feature +0 -35
  396. data/features/docs/events/test_case_started_event.feature +0 -54
  397. data/features/docs/events/test_run_finished_event.feature +0 -40
  398. data/features/docs/events/test_run_started_event.feature +0 -41
  399. data/features/docs/events/test_step_finished_event.feature +0 -47
  400. data/features/docs/events/test_step_started_event.feature +0 -43
  401. data/features/docs/exception_in_after_hook.feature +0 -127
  402. data/features/docs/exception_in_after_step_hook.feature +0 -104
  403. data/features/docs/exception_in_around_hook.feature +0 -80
  404. data/features/docs/exception_in_before_hook.feature +0 -98
  405. data/features/docs/extending_cucumber/custom_filter.feature +0 -29
  406. data/features/docs/extending_cucumber/custom_formatter.feature +0 -94
  407. data/features/docs/formatters/api_methods.feature +0 -37
  408. data/features/docs/formatters/html_formatter.feature +0 -91
  409. data/features/docs/formatters/json_formatter.feature +0 -767
  410. data/features/docs/formatters/junit_formatter.feature +0 -455
  411. data/features/docs/formatters/pretty_formatter.feature +0 -74
  412. data/features/docs/formatters/progress_formatter.feature +0 -32
  413. data/features/docs/formatters/rerun_formatter.feature +0 -190
  414. data/features/docs/formatters/summary_formatter.feature +0 -35
  415. data/features/docs/formatters/usage_formatter.feature +0 -101
  416. data/features/docs/getting_started.feature +0 -28
  417. data/features/docs/gherkin/background.feature +0 -548
  418. data/features/docs/gherkin/doc_strings.feature +0 -76
  419. data/features/docs/gherkin/expand_option_for_outlines.feature +0 -47
  420. data/features/docs/gherkin/language_from_header.feature +0 -32
  421. data/features/docs/gherkin/outlines.feature +0 -158
  422. data/features/docs/gherkin/unicode_table.feature +0 -33
  423. data/features/docs/gherkin/using_descriptions.feature +0 -83
  424. data/features/docs/gherkin/using_star_notation.feature +0 -37
  425. data/features/docs/iso-8859-1.feature +0 -6
  426. data/features/docs/post_configuration_hook.feature +0 -33
  427. data/features/docs/profiles.feature +0 -120
  428. data/features/docs/rake_task.feature +0 -146
  429. data/features/docs/raketask.feature +0 -46
  430. data/features/docs/work_in_progress.feature +0 -157
  431. data/features/docs/writing_support_code/after_hooks.feature +0 -102
  432. data/features/docs/writing_support_code/after_step_hooks.feature +0 -55
  433. data/features/docs/writing_support_code/around_hooks.feature +0 -266
  434. data/features/docs/writing_support_code/before_hook.feature +0 -66
  435. data/features/docs/writing_support_code/hook_order.feature +0 -63
  436. data/features/docs/writing_support_code/load_path.feature +0 -17
  437. data/features/docs/writing_support_code/parameter_types.feature +0 -69
  438. data/features/docs/writing_support_code/state.feature +0 -32
  439. data/features/docs/writing_support_code/tagged_hooks.feature +0 -95
  440. data/features/docs/writing_support_code/world.feature +0 -129
  441. data/features/lib/step_definitions/aruba_steps.rb +0 -21
  442. data/features/lib/step_definitions/cli_steps.rb +0 -4
  443. data/features/lib/step_definitions/cucumber_steps.rb +0 -75
  444. data/features/lib/step_definitions/iso-8859-1_steps.rb +0 -16
  445. data/features/lib/step_definitions/json_steps.rb +0 -8
  446. data/features/lib/step_definitions/junit_steps.rb +0 -14
  447. data/features/lib/step_definitions/language_steps.rb +0 -9
  448. data/features/lib/step_definitions/profile_steps.rb +0 -16
  449. data/features/lib/step_definitions/retry_steps.rb +0 -55
  450. data/features/lib/step_definitions/ruby_steps.rb +0 -4
  451. data/features/lib/support/env.rb +0 -22
  452. data/features/lib/support/fake_wire_server.rb +0 -94
  453. data/features/lib/support/feature_factory.rb +0 -68
  454. data/features/lib/support/normalise_output.rb +0 -52
  455. data/features/lib/support/parameter_types.rb +0 -5
  456. data/gem_tasks/contributors.rake +0 -19
  457. data/gem_tasks/cov.rake +0 -6
  458. data/gem_tasks/downloads.rb +0 -8
  459. data/gem_tasks/environment.rake +0 -4
  460. data/gem_tasks/examples.rake +0 -12
  461. data/gem_tasks/fix_cr_lf.rake +0 -22
  462. data/gem_tasks/flog.rake +0 -5
  463. data/gem_tasks/rspec.rake +0 -7
  464. data/gem_tasks/sass.rake +0 -5
  465. data/gem_tasks/stats +0 -16
  466. data/gem_tasks/versions.txt +0 -74
  467. data/scripts/invite-collaborator +0 -40
  468. data/scripts/update-changelog +0 -86
  469. data/spec/cucumber/cli/configuration_spec.rb +0 -446
  470. data/spec/cucumber/cli/main_spec.rb +0 -84
  471. data/spec/cucumber/cli/options_spec.rb +0 -445
  472. data/spec/cucumber/cli/profile_loader_spec.rb +0 -66
  473. data/spec/cucumber/cli/rerun_spec.rb +0 -86
  474. data/spec/cucumber/configuration_spec.rb +0 -148
  475. data/spec/cucumber/constantize_spec.rb +0 -20
  476. data/spec/cucumber/events_spec.rb +0 -9
  477. data/spec/cucumber/file_specs_spec.rb +0 -61
  478. data/spec/cucumber/filters/activate_steps_spec.rb +0 -152
  479. data/spec/cucumber/filters/gated_receiver_spec.rb +0 -48
  480. data/spec/cucumber/filters/retry_spec.rb +0 -98
  481. data/spec/cucumber/filters/tag_limits/test_case_index_spec.rb +0 -39
  482. data/spec/cucumber/filters/tag_limits/verifier_spec.rb +0 -58
  483. data/spec/cucumber/filters/tag_limits_spec.rb +0 -60
  484. data/spec/cucumber/formatter/ansicolor_spec.rb +0 -33
  485. data/spec/cucumber/formatter/backtrace_filter_spec.rb +0 -32
  486. data/spec/cucumber/formatter/console_counts_spec.rb +0 -14
  487. data/spec/cucumber/formatter/duration_spec.rb +0 -23
  488. data/spec/cucumber/formatter/fail_fast_spec.rb +0 -88
  489. data/spec/cucumber/formatter/html_spec.rb +0 -543
  490. data/spec/cucumber/formatter/interceptor_spec.rb +0 -137
  491. data/spec/cucumber/formatter/json_spec.rb +0 -815
  492. data/spec/cucumber/formatter/junit_spec.rb +0 -251
  493. data/spec/cucumber/formatter/legacy_api/adapter_spec.rb +0 -2175
  494. data/spec/cucumber/formatter/pretty_spec.rb +0 -907
  495. data/spec/cucumber/formatter/progress_spec.rb +0 -170
  496. data/spec/cucumber/formatter/rerun_spec.rb +0 -97
  497. data/spec/cucumber/formatter/spec_helper.rb +0 -84
  498. data/spec/cucumber/glue/proto_world_spec.rb +0 -63
  499. data/spec/cucumber/glue/registry_and_more_spec.rb +0 -213
  500. data/spec/cucumber/glue/snippet_spec.rb +0 -174
  501. data/spec/cucumber/glue/step_definition_spec.rb +0 -207
  502. data/spec/cucumber/hooks_spec.rb +0 -31
  503. data/spec/cucumber/multiline_argument/data_table_spec.rb +0 -653
  504. data/spec/cucumber/project_initializer_spec.rb +0 -88
  505. data/spec/cucumber/rake/forked_spec.rb +0 -58
  506. data/spec/cucumber/rake/task_spec.rb +0 -86
  507. data/spec/cucumber/running_test_case_spec.rb +0 -140
  508. data/spec/cucumber/runtime/for_programming_languages_spec.rb +0 -8
  509. data/spec/cucumber/runtime/support_code_spec.rb +0 -17
  510. data/spec/cucumber/runtime_spec.rb +0 -21
  511. data/spec/cucumber/sell_cucumbers.feature +0 -19
  512. data/spec/cucumber/step_argument_spec.rb +0 -19
  513. data/spec/cucumber/step_match_search_spec.rb +0 -113
  514. data/spec/cucumber/step_match_spec.rb +0 -86
  515. data/spec/cucumber/world/pending_spec.rb +0 -48
  516. data/spec/spec_helper.rb +0 -30
  517. data/spec/support/standard_step_actions.rb +0 -19
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'timeout'
3
4
 
4
5
  module Cucumber
5
6
  class Runtime
6
-
7
7
  module UserInterface
8
8
  attr_writer :visitor
9
9
 
@@ -33,7 +33,7 @@ module Cucumber
33
33
  STDOUT.flush
34
34
  puts(question)
35
35
 
36
- answer = if(Cucumber::JRUBY)
36
+ answer = if Cucumber::JRUBY
37
37
  jruby_gets(timeout_seconds)
38
38
  else
39
39
  mri_gets(timeout_seconds)
@@ -74,6 +74,5 @@ module Cucumber
74
74
  answer
75
75
  end
76
76
  end
77
-
78
77
  end
79
78
  end
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module Cucumber
3
4
  # Defines the location and value of a captured argument from the step
4
5
  # text
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module Cucumber
3
4
  # TODO: pointless, ancient, kill with fire.
4
5
  # Only used for keeping track of available and invoked step definitions
@@ -16,7 +17,7 @@ module Cucumber
16
17
  end
17
18
 
18
19
  def hash
19
- regexp_source.hash + 31*location.to_s.hash
20
+ regexp_source.hash + 31 * location.to_s.hash
20
21
  end
21
22
  end
22
23
  end
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module Cucumber
3
4
  class StepDefinitions
4
5
  def initialize(configuration = Configuration.default)
@@ -8,7 +9,7 @@ module Cucumber
8
9
  end
9
10
 
10
11
  def to_json
11
- @support_code.step_definitions.map{|stepdef| stepdef.to_hash}.to_json
12
+ @support_code.step_definitions.map(&:to_hash).to_json
12
13
  end
13
14
  end
14
15
  end
@@ -1,8 +1,8 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'cucumber/multiline_argument'
3
4
 
4
5
  module Cucumber
5
-
6
6
  # Represents the match found between a Test Step and its activation
7
7
  class StepMatch #:nodoc:
8
8
  attr_reader :step_definition, :step_arguments
@@ -13,7 +13,10 @@ module Cucumber
13
13
  end
14
14
 
15
15
  def args
16
- @step_arguments.map{|g| g.value }
16
+ current_world = @step_definition.registry.current_world
17
+ @step_arguments.map do |arg|
18
+ arg.value(current_world)
19
+ end
17
20
  end
18
21
 
19
22
  def activate(test_step)
@@ -43,7 +46,7 @@ module Cucumber
43
46
  #
44
47
  # lambda { |param| "[#{param}]" }
45
48
  #
46
- def format_args(format = lambda{|a| a}, &proc)
49
+ def format_args(format = lambda { |a| a }, &proc)
47
50
  replace_arguments(@name_to_match, @step_arguments, format, &proc)
48
51
  end
49
52
 
@@ -63,7 +66,7 @@ module Cucumber
63
66
  @step_definition.expression.source.to_s.unpack('U*').length
64
67
  end
65
68
 
66
- def replace_arguments(string, step_arguments, format, &proc)
69
+ def replace_arguments(string, step_arguments, format)
67
70
  s = string.dup
68
71
  offset = past_offset = 0
69
72
  step_arguments.each do |step_argument|
@@ -71,7 +74,7 @@ module Cucumber
71
74
  next if group.value.nil? || group.start < past_offset
72
75
 
73
76
  replacement = if block_given?
74
- proc.call(group.value)
77
+ yield(group.value)
75
78
  elsif Proc === format
76
79
  format.call(group.value)
77
80
  else
@@ -90,6 +93,7 @@ module Cucumber
90
93
  end
91
94
 
92
95
  private
96
+
93
97
  def deep_clone_args
94
98
  Marshal.load( Marshal.dump( args ) )
95
99
  end
@@ -142,7 +146,6 @@ module Cucumber
142
146
  end
143
147
 
144
148
  class AmbiguousStepMatch
145
-
146
149
  def initialize(error)
147
150
  @error = error
148
151
  end
@@ -150,7 +153,5 @@ module Cucumber
150
153
  def activate(test_step)
151
154
  return test_step.with_action { raise @error }
152
155
  end
153
-
154
156
  end
155
-
156
157
  end
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module Cucumber
3
4
  module StepMatchSearch
4
5
  def self.new(search, configuration)
@@ -34,21 +35,20 @@ module Cucumber
34
35
  private
35
36
 
36
37
  def best_matches(_step_name, step_matches) #:nodoc:
37
- no_groups = step_matches.select {|step_match| step_match.args.empty?}
38
- max_arg_length = step_matches.map {|step_match| step_match.args.length }.max
39
- top_groups = step_matches.select {|step_match| step_match.args.length == max_arg_length }
38
+ no_groups = step_matches.select { |step_match| step_match.args.empty? }
39
+ max_arg_length = step_matches.map { |step_match| step_match.args.length }.max
40
+ top_groups = step_matches.select { |step_match| step_match.args.length == max_arg_length }
40
41
 
41
42
  if no_groups.any?
42
- longest_regexp_length = no_groups.map {|step_match| step_match.text_length }.max
43
- no_groups.select {|step_match| step_match.text_length == longest_regexp_length }
43
+ longest_regexp_length = no_groups.map(&:text_length).max
44
+ no_groups.select { |step_match| step_match.text_length == longest_regexp_length }
44
45
  elsif top_groups.any?
45
- shortest_capture_length = top_groups.map {|step_match| step_match.args.inject(0) {|sum, c| sum + c.to_s.length } }.min
46
- top_groups.select {|step_match| step_match.args.inject(0) {|sum, c| sum + c.to_s.length } == shortest_capture_length }
46
+ shortest_capture_length = top_groups.map { |step_match| step_match.args.inject(0) { |sum, c| sum + c.to_s.length } }.min
47
+ top_groups.select { |step_match| step_match.args.inject(0) { |sum, c| sum + c.to_s.length } == shortest_capture_length }
47
48
  else
48
49
  top_groups
49
50
  end
50
51
  end
51
-
52
52
  end
53
53
 
54
54
  require 'delegate'
@@ -62,6 +62,5 @@ module Cucumber
62
62
  @match_cache[step_name] = super(step_name)
63
63
  end
64
64
  end
65
-
66
65
  end
67
66
  end
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module Cucumber
3
4
  module Term
4
5
  # The ANSIColor module can be used for namespacing and mixed into your own
@@ -6,34 +7,34 @@ module Cucumber
6
7
  module ANSIColor
7
8
  # :stopdoc:
8
9
  ATTRIBUTES = [
9
- [ :clear , 0 ],
10
- [ :reset , 0 ], # synonym for :clear
11
- [ :bold , 1 ],
12
- [ :dark , 2 ],
13
- [ :italic , 3 ], # not widely implemented
14
- [ :underline , 4 ],
15
- [ :underscore , 4 ], # synonym for :underline
16
- [ :blink , 5 ],
17
- [ :rapid_blink , 6 ], # not widely implemented
18
- [ :negative , 7 ], # no reverse because of String#reverse
19
- [ :concealed , 8 ],
20
- [ :strikethrough, 9 ], # not widely implemented
21
- [ :black , 30 ],
22
- [ :red , 31 ],
23
- [ :green , 32 ],
24
- [ :yellow , 33 ],
25
- [ :blue , 34 ],
26
- [ :magenta , 35 ],
27
- [ :cyan , 36 ],
28
- [ :white , 37 ],
29
- [ :on_black , 40 ],
30
- [ :on_red , 41 ],
31
- [ :on_green , 42 ],
32
- [ :on_yellow , 43 ],
33
- [ :on_blue , 44 ],
34
- [ :on_magenta , 45 ],
35
- [ :on_cyan , 46 ],
36
- [ :on_white , 47 ]
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]
37
38
  ]
38
39
 
39
40
  ATTRIBUTE_NAMES = ATTRIBUTES.transpose.first
@@ -56,7 +57,7 @@ module Cucumber
56
57
  ATTRIBUTES.each do |c, v|
57
58
  eval %Q{
58
59
  def #{c}(string = nil)
59
- result = ''
60
+ result = String.new
60
61
  result << "\e[#{v}m" if Cucumber::Term::ANSIColor.coloring?
61
62
  if block_given?
62
63
  result << yield
@@ -77,7 +78,6 @@ module Cucumber
77
78
  # uncoloring strings.
78
79
  COLORED_REGEXP = /\e\[(?:[34][0-7]|[0-9])?m/
79
80
 
80
-
81
81
  def self.included(klass)
82
82
  if klass == String
83
83
  ATTRIBUTES.delete(:clear)
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module Cucumber
3
4
  class Unit
4
5
  def initialize(step_collection)
@@ -1 +1 @@
1
- 3.0.1
1
+ 3.2.0
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  if ENV['SIMPLECOV']
3
4
  begin
4
5
  # Suppress warnings in order not to pollute stdout which tests expectations rely on
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucumber
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aslak Hellesøy
@@ -10,36 +10,64 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-09-29 00:00:00.000000000 Z
13
+ date: 2020-06-02 00:00:00.000000000 Z
14
14
  dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: builder
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: 2.1.2
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: 2.1.2
15
29
  - !ruby/object:Gem::Dependency
16
30
  name: cucumber-core
17
31
  requirement: !ruby/object:Gem::Requirement
18
32
  requirements:
19
33
  - - "~>"
20
34
  - !ruby/object:Gem::Version
21
- version: 3.0.0
35
+ version: 3.2.0
22
36
  type: :runtime
23
37
  prerelease: false
24
38
  version_requirements: !ruby/object:Gem::Requirement
25
39
  requirements:
26
40
  - - "~>"
27
41
  - !ruby/object:Gem::Version
28
- version: 3.0.0
42
+ version: 3.2.0
29
43
  - !ruby/object:Gem::Dependency
30
- name: builder
44
+ name: cucumber-expressions
31
45
  requirement: !ruby/object:Gem::Requirement
32
46
  requirements:
33
- - - ">="
47
+ - - "~>"
34
48
  - !ruby/object:Gem::Version
35
- version: 2.1.2
49
+ version: 6.0.1
36
50
  type: :runtime
37
51
  prerelease: false
38
52
  version_requirements: !ruby/object:Gem::Requirement
39
53
  requirements:
40
- - - ">="
54
+ - - "~>"
41
55
  - !ruby/object:Gem::Version
42
- version: 2.1.2
56
+ version: 6.0.1
57
+ - !ruby/object:Gem::Dependency
58
+ name: cucumber-wire
59
+ requirement: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - "~>"
62
+ - !ruby/object:Gem::Version
63
+ version: 0.0.1
64
+ type: :runtime
65
+ prerelease: false
66
+ version_requirements: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - "~>"
69
+ - !ruby/object:Gem::Version
70
+ version: 0.0.1
43
71
  - !ruby/object:Gem::Dependency
44
72
  name: diff-lcs
45
73
  requirement: !ruby/object:Gem::Requirement
@@ -60,14 +88,14 @@ dependencies:
60
88
  requirements:
61
89
  - - "~>"
62
90
  - !ruby/object:Gem::Version
63
- version: '4.0'
91
+ version: 5.1.0
64
92
  type: :runtime
65
93
  prerelease: false
66
94
  version_requirements: !ruby/object:Gem::Requirement
67
95
  requirements:
68
96
  - - "~>"
69
97
  - !ruby/object:Gem::Version
70
- version: '4.0'
98
+ version: 5.1.0
71
99
  - !ruby/object:Gem::Dependency
72
100
  name: multi_json
73
101
  requirement: !ruby/object:Gem::Requirement
@@ -102,34 +130,6 @@ dependencies:
102
130
  - - ">="
103
131
  - !ruby/object:Gem::Version
104
132
  version: 0.1.2
105
- - !ruby/object:Gem::Dependency
106
- name: cucumber-wire
107
- requirement: !ruby/object:Gem::Requirement
108
- requirements:
109
- - - "~>"
110
- - !ruby/object:Gem::Version
111
- version: 0.0.1
112
- type: :runtime
113
- prerelease: false
114
- version_requirements: !ruby/object:Gem::Requirement
115
- requirements:
116
- - - "~>"
117
- - !ruby/object:Gem::Version
118
- version: 0.0.1
119
- - !ruby/object:Gem::Dependency
120
- name: cucumber-expressions
121
- requirement: !ruby/object:Gem::Requirement
122
- requirements:
123
- - - "~>"
124
- - !ruby/object:Gem::Version
125
- version: 4.0.3
126
- type: :runtime
127
- prerelease: false
128
- version_requirements: !ruby/object:Gem::Requirement
129
- requirements:
130
- - - "~>"
131
- - !ruby/object:Gem::Version
132
- version: 4.0.3
133
133
  - !ruby/object:Gem::Dependency
134
134
  name: aruba
135
135
  requirement: !ruby/object:Gem::Requirement
@@ -164,112 +164,98 @@ dependencies:
164
164
  requirements:
165
165
  - - "~>"
166
166
  - !ruby/object:Gem::Version
167
- version: '1.5'
167
+ version: 1.8.1
168
168
  type: :development
169
169
  prerelease: false
170
170
  version_requirements: !ruby/object:Gem::Requirement
171
171
  requirements:
172
172
  - - "~>"
173
173
  - !ruby/object:Gem::Version
174
- version: '1.5'
174
+ version: 1.8.1
175
175
  - !ruby/object:Gem::Dependency
176
- name: rake
176
+ name: pry
177
177
  requirement: !ruby/object:Gem::Requirement
178
178
  requirements:
179
179
  - - ">="
180
180
  - !ruby/object:Gem::Version
181
- version: 0.9.2
181
+ version: '0'
182
182
  type: :development
183
183
  prerelease: false
184
184
  version_requirements: !ruby/object:Gem::Requirement
185
185
  requirements:
186
186
  - - ">="
187
187
  - !ruby/object:Gem::Version
188
- version: 0.9.2
188
+ version: '0'
189
189
  - !ruby/object:Gem::Dependency
190
- name: rspec
190
+ name: rake
191
191
  requirement: !ruby/object:Gem::Requirement
192
192
  requirements:
193
193
  - - ">="
194
194
  - !ruby/object:Gem::Version
195
- version: '3.0'
195
+ version: 0.9.2
196
196
  type: :development
197
197
  prerelease: false
198
198
  version_requirements: !ruby/object:Gem::Requirement
199
199
  requirements:
200
200
  - - ">="
201
201
  - !ruby/object:Gem::Version
202
- version: '3.0'
202
+ version: 0.9.2
203
203
  - !ruby/object:Gem::Dependency
204
- name: simplecov
204
+ name: rspec
205
205
  requirement: !ruby/object:Gem::Requirement
206
206
  requirements:
207
207
  - - ">="
208
208
  - !ruby/object:Gem::Version
209
- version: 0.6.2
209
+ version: '3.6'
210
210
  type: :development
211
211
  prerelease: false
212
212
  version_requirements: !ruby/object:Gem::Requirement
213
213
  requirements:
214
214
  - - ">="
215
215
  - !ruby/object:Gem::Version
216
- version: 0.6.2
216
+ version: '3.6'
217
217
  - !ruby/object:Gem::Dependency
218
- name: coveralls
218
+ name: rubocop
219
219
  requirement: !ruby/object:Gem::Requirement
220
220
  requirements:
221
221
  - - "~>"
222
222
  - !ruby/object:Gem::Version
223
- version: '0.7'
223
+ version: 0.52.1
224
224
  type: :development
225
225
  prerelease: false
226
226
  version_requirements: !ruby/object:Gem::Requirement
227
227
  requirements:
228
228
  - - "~>"
229
229
  - !ruby/object:Gem::Version
230
- version: '0.7'
230
+ version: 0.52.1
231
231
  - !ruby/object:Gem::Dependency
232
- name: syntax
232
+ name: simplecov
233
233
  requirement: !ruby/object:Gem::Requirement
234
234
  requirements:
235
235
  - - ">="
236
236
  - !ruby/object:Gem::Version
237
- version: 1.0.0
237
+ version: 0.6.2
238
238
  type: :development
239
239
  prerelease: false
240
240
  version_requirements: !ruby/object:Gem::Requirement
241
241
  requirements:
242
242
  - - ">="
243
243
  - !ruby/object:Gem::Version
244
- version: 1.0.0
244
+ version: 0.6.2
245
245
  - !ruby/object:Gem::Dependency
246
- name: pry
246
+ name: syntax
247
247
  requirement: !ruby/object:Gem::Requirement
248
248
  requirements:
249
249
  - - ">="
250
250
  - !ruby/object:Gem::Version
251
- version: '0'
251
+ version: 1.0.0
252
252
  type: :development
253
253
  prerelease: false
254
254
  version_requirements: !ruby/object:Gem::Requirement
255
255
  requirements:
256
256
  - - ">="
257
257
  - !ruby/object:Gem::Version
258
- version: '0'
259
- - !ruby/object:Gem::Dependency
260
- name: rubocop
261
- requirement: !ruby/object:Gem::Requirement
262
- requirements:
263
- - - "~>"
264
- - !ruby/object:Gem::Version
265
- version: 0.40.0
266
- type: :development
267
- prerelease: false
268
- version_requirements: !ruby/object:Gem::Requirement
269
- requirements:
270
- - - "~>"
271
- - !ruby/object:Gem::Version
272
- version: 0.40.0
258
+ version: 1.0.0
273
259
  - !ruby/object:Gem::Dependency
274
260
  name: octokit
275
261
  requirement: !ruby/object:Gem::Requirement
@@ -284,48 +270,6 @@ dependencies:
284
270
  - - ">="
285
271
  - !ruby/object:Gem::Version
286
272
  version: '0'
287
- - !ruby/object:Gem::Dependency
288
- name: bcat
289
- requirement: !ruby/object:Gem::Requirement
290
- requirements:
291
- - - "~>"
292
- - !ruby/object:Gem::Version
293
- version: 0.6.2
294
- type: :development
295
- prerelease: false
296
- version_requirements: !ruby/object:Gem::Requirement
297
- requirements:
298
- - - "~>"
299
- - !ruby/object:Gem::Version
300
- version: 0.6.2
301
- - !ruby/object:Gem::Dependency
302
- name: kramdown
303
- requirement: !ruby/object:Gem::Requirement
304
- requirements:
305
- - - "~>"
306
- - !ruby/object:Gem::Version
307
- version: '0.14'
308
- type: :development
309
- prerelease: false
310
- version_requirements: !ruby/object:Gem::Requirement
311
- requirements:
312
- - - "~>"
313
- - !ruby/object:Gem::Version
314
- version: '0.14'
315
- - !ruby/object:Gem::Dependency
316
- name: yard
317
- requirement: !ruby/object:Gem::Requirement
318
- requirements:
319
- - - "~>"
320
- - !ruby/object:Gem::Version
321
- version: 0.8.0
322
- type: :development
323
- prerelease: false
324
- version_requirements: !ruby/object:Gem::Requirement
325
- requirements:
326
- - - "~>"
327
- - !ruby/object:Gem::Version
328
- version: 0.8.0
329
273
  - !ruby/object:Gem::Dependency
330
274
  name: capybara
331
275
  requirement: !ruby/object:Gem::Requirement
@@ -375,358 +319,11 @@ executables:
375
319
  extensions: []
376
320
  extra_rdoc_files: []
377
321
  files:
378
- - ".coveralls.yml"
379
- - ".cucumberproignore"
380
- - ".gitattributes"
381
- - ".github/ISSUE_TEMPLATE.md"
382
- - ".github/PULL_REQUEST_TEMPLATE.md"
383
- - ".rspec"
384
- - ".rubocop.yml"
385
- - ".rubocop_todo.yml"
386
- - ".ruby-gemset"
387
- - ".travis.yml"
388
- - ".yardopts"
389
322
  - CHANGELOG.md
390
323
  - CONTRIBUTING.md
391
- - Gemfile
392
324
  - LICENSE
393
325
  - README.md
394
- - Rakefile
395
- - appveyor.yml
396
326
  - bin/cucumber
397
- - cucumber.gemspec
398
- - cucumber.yml
399
- - examples/i18n/README.textile
400
- - examples/i18n/Rakefile
401
- - examples/i18n/ar/Rakefile
402
- - examples/i18n/ar/features/addition.feature
403
- - examples/i18n/ar/features/step_definitions/calculator_steps.rb
404
- - examples/i18n/ar/lib/calculator.rb
405
- - examples/i18n/bg/Rakefile
406
- - examples/i18n/bg/features/addition.feature
407
- - examples/i18n/bg/features/consecutive_calculations.feature
408
- - examples/i18n/bg/features/division.feature
409
- - examples/i18n/bg/features/step_definitions/calculator_steps.rb
410
- - examples/i18n/bg/features/support/env.rb
411
- - examples/i18n/bg/features/support/world.rb
412
- - examples/i18n/bg/lib/calculator.rb
413
- - examples/i18n/ca/Rakefile
414
- - examples/i18n/ca/features/step_definitions/calculator_steps.rb
415
- - examples/i18n/ca/features/suma.feature
416
- - examples/i18n/ca/lib/calculadora.rb
417
- - examples/i18n/cs/Rakefile
418
- - examples/i18n/cs/features/addition.feature
419
- - examples/i18n/cs/features/division.feature
420
- - examples/i18n/cs/features/step_definitions/calculator_steps.rb
421
- - examples/i18n/cs/lib/calculator.rb
422
- - examples/i18n/da/Rakefile
423
- - examples/i18n/da/features/sammenlaegning.feature
424
- - examples/i18n/da/features/step_definitions/lommeregner_steps.rb
425
- - examples/i18n/da/lib/lommeregner.rb
426
- - examples/i18n/de/Rakefile
427
- - examples/i18n/de/features/addition.feature
428
- - examples/i18n/de/features/division.feature
429
- - examples/i18n/de/features/step_definitions/calculator_steps.rb
430
- - examples/i18n/de/lib/calculator.rb
431
- - examples/i18n/el/Rakefile
432
- - examples/i18n/el/features/addition.feature
433
- - examples/i18n/el/features/division.feature
434
- - examples/i18n/el/features/step_definitions/calculator_steps.rb
435
- - examples/i18n/el/lib/calculator.rb
436
- - examples/i18n/en-lol/Rakefile
437
- - examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb
438
- - examples/i18n/en-lol/features/stuffing.feature
439
- - examples/i18n/en-lol/features/support/env.rb
440
- - examples/i18n/en-lol/lib/basket.rb
441
- - examples/i18n/en-lol/lib/belly.rb
442
- - examples/i18n/en/Rakefile
443
- - examples/i18n/en/features/addition.feature
444
- - examples/i18n/en/features/division.feature
445
- - examples/i18n/en/features/step_definitions/calculator_steps.rb
446
- - examples/i18n/en/lib/calculator.rb
447
- - examples/i18n/eo/Rakefile
448
- - examples/i18n/eo/features/adicio.feature
449
- - examples/i18n/eo/features/divido.feature
450
- - examples/i18n/eo/features/step_definitions/calculator_steps.rb
451
- - examples/i18n/eo/lib/calculator.rb
452
- - examples/i18n/es/Rakefile
453
- - examples/i18n/es/features/adicion.feature
454
- - examples/i18n/es/features/step_definitions/calculador_steps.rb
455
- - examples/i18n/es/lib/calculador.rb
456
- - examples/i18n/et/Rakefile
457
- - examples/i18n/et/features/jagamine.feature
458
- - examples/i18n/et/features/liitmine.feature
459
- - examples/i18n/et/features/step_definitions/kalkulaator_steps.rb
460
- - examples/i18n/et/lib/kalkulaator.rb
461
- - examples/i18n/fi/Rakefile
462
- - examples/i18n/fi/features/jakolasku.feature
463
- - examples/i18n/fi/features/step_definitions/laskin_steps.rb
464
- - examples/i18n/fi/features/yhteenlasku.feature
465
- - examples/i18n/fi/lib/laskin.rb
466
- - examples/i18n/fr/Rakefile
467
- - examples/i18n/fr/features/addition.feature
468
- - examples/i18n/fr/features/addition2.feature
469
- - examples/i18n/fr/features/step_definitions/calculatrice_steps.rb
470
- - examples/i18n/fr/features/support/env.rb
471
- - examples/i18n/fr/lib/calculatrice.rb
472
- - examples/i18n/he/Rakefile
473
- - examples/i18n/he/features/addition.feature
474
- - examples/i18n/he/features/division.feature
475
- - examples/i18n/he/features/step_definitions/calculator_steps.rb
476
- - examples/i18n/he/lib/calculator.rb
477
- - examples/i18n/hi/Rakefile
478
- - examples/i18n/hi/features/addition.feature
479
- - examples/i18n/hi/features/division.feature
480
- - examples/i18n/hi/features/step_definitions/calculator_steps.rb
481
- - examples/i18n/hi/lib/calculator.rb
482
- - examples/i18n/ht/Rakefile
483
- - examples/i18n/ht/features/adisyon.feature
484
- - examples/i18n/ht/features/divizyon.feature
485
- - examples/i18n/ht/features/step_definitions/kalkilatris_steps.rb
486
- - examples/i18n/ht/lib/kalkilatris.rb
487
- - examples/i18n/hu/Rakefile
488
- - examples/i18n/hu/features/osszeadas.feature
489
- - examples/i18n/hu/features/osztas.feature
490
- - examples/i18n/hu/features/step_definitions/calculator_steps.rb
491
- - examples/i18n/hu/lib/calculator.rb
492
- - examples/i18n/id/Rakefile
493
- - examples/i18n/id/features/addition.feature
494
- - examples/i18n/id/features/division.feature
495
- - examples/i18n/id/features/step_definitions/calculator_steps.rb
496
- - examples/i18n/id/lib/calculator.rb
497
- - examples/i18n/it/Rakefile
498
- - examples/i18n/it/features/somma.feature
499
- - examples/i18n/it/features/step_definitions/calcolatrice_steps.rb
500
- - examples/i18n/it/lib/calcolatrice.rb
501
- - examples/i18n/ja/Rakefile
502
- - examples/i18n/ja/features/addition.feature
503
- - examples/i18n/ja/features/division.feature
504
- - examples/i18n/ja/features/step_definitions/calculator_steps.rb
505
- - examples/i18n/ja/features/support/env.rb
506
- - examples/i18n/ja/lib/calculator.rb
507
- - examples/i18n/ko/Rakefile
508
- - examples/i18n/ko/features/addition.feature
509
- - examples/i18n/ko/features/division.feature
510
- - examples/i18n/ko/features/step_definitions/calculator_steps.rb
511
- - examples/i18n/ko/lib/calculator.rb
512
- - examples/i18n/lt/Rakefile
513
- - examples/i18n/lt/features/addition.feature
514
- - examples/i18n/lt/features/division.feature
515
- - examples/i18n/lt/features/step_definitions/calculator_steps.rb
516
- - examples/i18n/lt/lib/calculator.rb
517
- - examples/i18n/lv/Rakefile
518
- - examples/i18n/lv/features/addition.feature
519
- - examples/i18n/lv/features/division.feature
520
- - examples/i18n/lv/features/step_definitions/calculator_steps.rb
521
- - examples/i18n/lv/lib/calculator.rb
522
- - examples/i18n/no/Rakefile
523
- - examples/i18n/no/features/step_definitions/kalkulator_steps.rb
524
- - examples/i18n/no/features/summering.feature
525
- - examples/i18n/no/features/support/env.rb
526
- - examples/i18n/no/lib/kalkulator.rb
527
- - examples/i18n/pl/Rakefile
528
- - examples/i18n/pl/features/addition.feature
529
- - examples/i18n/pl/features/division.feature
530
- - examples/i18n/pl/features/step_definitions/calculator_steps.rb
531
- - examples/i18n/pl/features/support/env.rb
532
- - examples/i18n/pl/lib/calculator.rb
533
- - examples/i18n/pt/Rakefile
534
- - examples/i18n/pt/features/adicao.feature
535
- - examples/i18n/pt/features/step_definitions/calculadora_steps.rb
536
- - examples/i18n/pt/features/support/env.rb
537
- - examples/i18n/pt/lib/calculadora.rb
538
- - examples/i18n/ro/Rakefile
539
- - examples/i18n/ro/features/adunare.feature
540
- - examples/i18n/ro/features/step_definitions/calculator_steps.rb
541
- - examples/i18n/ro/lib/calculator.rb
542
- - examples/i18n/ru/Rakefile
543
- - examples/i18n/ru/features/addition.feature
544
- - examples/i18n/ru/features/consecutive_calculations.feature
545
- - examples/i18n/ru/features/division.feature
546
- - examples/i18n/ru/features/step_definitions/calculator_steps.rb
547
- - examples/i18n/ru/features/support/env.rb
548
- - examples/i18n/ru/features/support/world.rb
549
- - examples/i18n/ru/lib/calculator.rb
550
- - examples/i18n/sk/Rakefile
551
- - examples/i18n/sk/features/addition.feature
552
- - examples/i18n/sk/features/division.feature
553
- - examples/i18n/sk/features/step_definitions/calculator_steps.rb
554
- - examples/i18n/sk/lib/calculator.rb
555
- - examples/i18n/sr-Cyrl/Rakefile
556
- - examples/i18n/sr-Cyrl/features/sabiranje.feature
557
- - examples/i18n/sr-Cyrl/features/step_definitions/calculator_steps.rb
558
- - examples/i18n/sr-Cyrl/features/support/env.rb
559
- - examples/i18n/sr-Cyrl/lib/calculator.rb
560
- - examples/i18n/sr-Latn/Rakefile
561
- - examples/i18n/sr-Latn/features/sabiranje.feature
562
- - examples/i18n/sr-Latn/features/step_definitions/calculator_steps.rb
563
- - examples/i18n/sr-Latn/lib/calculator.rb
564
- - examples/i18n/sv/Rakefile
565
- - examples/i18n/sv/features/step_definitions/kalkulator_steps.rb
566
- - examples/i18n/sv/features/summering.feature
567
- - examples/i18n/sv/lib/kalkulator.rb
568
- - examples/i18n/tr/Rakefile
569
- - examples/i18n/tr/features/bolme.feature
570
- - examples/i18n/tr/features/step_definitions/hesap_makinesi_adimlari.rb
571
- - examples/i18n/tr/features/toplama.feature
572
- - examples/i18n/tr/lib/hesap_makinesi.rb
573
- - examples/i18n/uk/Rakefile
574
- - examples/i18n/uk/features/addition.feature
575
- - examples/i18n/uk/features/consecutive_calculations.feature
576
- - examples/i18n/uk/features/division.feature
577
- - examples/i18n/uk/features/step_definitions/calculator_steps.rb
578
- - examples/i18n/uk/features/support/env.rb
579
- - examples/i18n/uk/features/support/world.rb
580
- - examples/i18n/uk/lib/calculator.rb
581
- - examples/i18n/uz/Rakefile
582
- - examples/i18n/uz/features/addition.feature
583
- - examples/i18n/uz/features/consecutive_calculations.feature
584
- - examples/i18n/uz/features/division.feature
585
- - examples/i18n/uz/features/step_definitions/calculator_steps.rb
586
- - examples/i18n/uz/features/support/env.rb
587
- - examples/i18n/uz/features/support/world.rb
588
- - examples/i18n/uz/lib/calculator.rb
589
- - examples/i18n/zh-CN/Rakefile
590
- - examples/i18n/zh-CN/features/addition.feature
591
- - examples/i18n/zh-CN/features/step_definitions/calculator_steps.rb
592
- - examples/i18n/zh-CN/lib/calculator.rb
593
- - examples/i18n/zh-TW/Rakefile
594
- - examples/i18n/zh-TW/features/addition.feature
595
- - examples/i18n/zh-TW/features/division.feature
596
- - examples/i18n/zh-TW/features/step_definitions/calculator_steps.rb
597
- - examples/i18n/zh-TW/lib/calculator.rb
598
- - examples/rspec_doubles/Rakefile
599
- - examples/rspec_doubles/features/mocking.feature
600
- - examples/rspec_doubles/features/step_definitions/calvin_steps.rb
601
- - examples/rspec_doubles/features/support/env.rb
602
- - examples/sinatra/README.textile
603
- - examples/sinatra/Rakefile
604
- - examples/sinatra/app.rb
605
- - examples/sinatra/features/add.feature
606
- - examples/sinatra/features/step_definitions/add_steps.rb
607
- - examples/sinatra/features/support/env.rb
608
- - examples/sinatra/views/add.erb
609
- - examples/sinatra/views/layout.erb
610
- - examples/tcl/README.textile
611
- - examples/tcl/Rakefile
612
- - examples/tcl/features/fibonnacci.feature
613
- - examples/tcl/features/step_definitions/fib_steps.rb
614
- - examples/tcl/features/support/env.rb
615
- - examples/tcl/src/fib.tcl
616
- - examples/test_unit/Gemfile
617
- - examples/test_unit/Rakefile
618
- - examples/test_unit/features/step_definitions/test_unit_steps.rb
619
- - examples/test_unit/features/test_unit.feature
620
- - examples/watir/README.textile
621
- - examples/watir/Rakefile
622
- - examples/watir/cucumber.yml
623
- - examples/watir/features/search.feature
624
- - examples/watir/features/step_definitions/search_steps.rb
625
- - examples/watir/features/support/env.rb
626
- - examples/watir/features/support/screenshots.rb
627
- - features/docs/api/list_step_defs_as_json.feature
628
- - features/docs/api/listen_for_events.feature
629
- - features/docs/api/run_cli_main_with_existing_runtime.feature
630
- - features/docs/cli/backtraces.feature
631
- - features/docs/cli/dry_run.feature
632
- - features/docs/cli/exclude_files.feature
633
- - features/docs/cli/execute_with_tag_filter.feature
634
- - features/docs/cli/fail_fast.feature
635
- - features/docs/cli/finding_steps.feature
636
- - features/docs/cli/help.feature
637
- - features/docs/cli/i18n.feature
638
- - features/docs/cli/randomize.feature
639
- - features/docs/cli/require.feature
640
- - features/docs/cli/retry_failing_tests.feature
641
- - features/docs/cli/run_scenarios_matching_name.feature
642
- - features/docs/cli/run_specific_scenarios.feature
643
- - features/docs/cli/showing_differences.feature
644
- - features/docs/cli/specifying_multiple_formatters.feature
645
- - features/docs/cli/strict_mode.feature
646
- - features/docs/defining_steps/ambiguous_steps.feature
647
- - features/docs/defining_steps/nested_steps.feature
648
- - features/docs/defining_steps/nested_steps_i18n.feature
649
- - features/docs/defining_steps/nested_steps_with_second_arg.feature
650
- - features/docs/defining_steps/one_line_step_definitions.feature
651
- - features/docs/defining_steps/printing_messages.feature
652
- - features/docs/defining_steps/skip_scenario.feature
653
- - features/docs/defining_steps/snippets.feature
654
- - features/docs/defining_steps/table_diffing.feature
655
- - features/docs/events/gherkin_source_read_event.feature
656
- - features/docs/events/step_activated_event.feature
657
- - features/docs/events/step_definition_registered_event.feature
658
- - features/docs/events/test_case_finished_event.feature
659
- - features/docs/events/test_case_started_event.feature
660
- - features/docs/events/test_run_finished_event.feature
661
- - features/docs/events/test_run_started_event.feature
662
- - features/docs/events/test_step_finished_event.feature
663
- - features/docs/events/test_step_started_event.feature
664
- - features/docs/exception_in_after_hook.feature
665
- - features/docs/exception_in_after_step_hook.feature
666
- - features/docs/exception_in_around_hook.feature
667
- - features/docs/exception_in_before_hook.feature
668
- - features/docs/extending_cucumber/custom_filter.feature
669
- - features/docs/extending_cucumber/custom_formatter.feature
670
- - features/docs/formatters/api_methods.feature
671
- - features/docs/formatters/html_formatter.feature
672
- - features/docs/formatters/json_formatter.feature
673
- - features/docs/formatters/junit_formatter.feature
674
- - features/docs/formatters/pretty_formatter.feature
675
- - features/docs/formatters/progress_formatter.feature
676
- - features/docs/formatters/rerun_formatter.feature
677
- - features/docs/formatters/summary_formatter.feature
678
- - features/docs/formatters/usage_formatter.feature
679
- - features/docs/getting_started.feature
680
- - features/docs/gherkin/background.feature
681
- - features/docs/gherkin/doc_strings.feature
682
- - features/docs/gherkin/expand_option_for_outlines.feature
683
- - features/docs/gherkin/language_from_header.feature
684
- - features/docs/gherkin/outlines.feature
685
- - features/docs/gherkin/unicode_table.feature
686
- - features/docs/gherkin/using_descriptions.feature
687
- - features/docs/gherkin/using_star_notation.feature
688
- - features/docs/iso-8859-1.feature
689
- - features/docs/post_configuration_hook.feature
690
- - features/docs/profiles.feature
691
- - features/docs/rake_task.feature
692
- - features/docs/raketask.feature
693
- - features/docs/work_in_progress.feature
694
- - features/docs/writing_support_code/after_hooks.feature
695
- - features/docs/writing_support_code/after_step_hooks.feature
696
- - features/docs/writing_support_code/around_hooks.feature
697
- - features/docs/writing_support_code/before_hook.feature
698
- - features/docs/writing_support_code/hook_order.feature
699
- - features/docs/writing_support_code/load_path.feature
700
- - features/docs/writing_support_code/parameter_types.feature
701
- - features/docs/writing_support_code/state.feature
702
- - features/docs/writing_support_code/tagged_hooks.feature
703
- - features/docs/writing_support_code/world.feature
704
- - features/lib/step_definitions/aruba_steps.rb
705
- - features/lib/step_definitions/cli_steps.rb
706
- - features/lib/step_definitions/cucumber_steps.rb
707
- - features/lib/step_definitions/iso-8859-1_steps.rb
708
- - features/lib/step_definitions/json_steps.rb
709
- - features/lib/step_definitions/junit_steps.rb
710
- - features/lib/step_definitions/language_steps.rb
711
- - features/lib/step_definitions/profile_steps.rb
712
- - features/lib/step_definitions/retry_steps.rb
713
- - features/lib/step_definitions/ruby_steps.rb
714
- - features/lib/support/env.rb
715
- - features/lib/support/fake_wire_server.rb
716
- - features/lib/support/feature_factory.rb
717
- - features/lib/support/normalise_output.rb
718
- - features/lib/support/parameter_types.rb
719
- - gem_tasks/contributors.rake
720
- - gem_tasks/cov.rake
721
- - gem_tasks/downloads.rb
722
- - gem_tasks/environment.rake
723
- - gem_tasks/examples.rake
724
- - gem_tasks/fix_cr_lf.rake
725
- - gem_tasks/flog.rake
726
- - gem_tasks/rspec.rake
727
- - gem_tasks/sass.rake
728
- - gem_tasks/stats
729
- - gem_tasks/versions.txt
730
327
  - lib/autotest/cucumber.rb
731
328
  - lib/autotest/cucumber_mixin.rb
732
329
  - lib/autotest/cucumber_rails.rb
@@ -787,6 +384,7 @@ files:
787
384
  - lib/cucumber/formatter/hook_query_visitor.rb
788
385
  - lib/cucumber/formatter/html.rb
789
386
  - lib/cucumber/formatter/html_builder.rb
387
+ - lib/cucumber/formatter/http_io.rb
790
388
  - lib/cucumber/formatter/ignore_missing_messages.rb
791
389
  - lib/cucumber/formatter/inline-js.js
792
390
  - lib/cucumber/formatter/interceptor.rb
@@ -848,57 +446,6 @@ files:
848
446
  - lib/cucumber/unit.rb
849
447
  - lib/cucumber/version
850
448
  - lib/simplecov_setup.rb
851
- - scripts/invite-collaborator
852
- - scripts/update-changelog
853
- - spec/cucumber/cli/configuration_spec.rb
854
- - spec/cucumber/cli/main_spec.rb
855
- - spec/cucumber/cli/options_spec.rb
856
- - spec/cucumber/cli/profile_loader_spec.rb
857
- - spec/cucumber/cli/rerun_spec.rb
858
- - spec/cucumber/configuration_spec.rb
859
- - spec/cucumber/constantize_spec.rb
860
- - spec/cucumber/events_spec.rb
861
- - spec/cucumber/file_specs_spec.rb
862
- - spec/cucumber/filters/activate_steps_spec.rb
863
- - spec/cucumber/filters/gated_receiver_spec.rb
864
- - spec/cucumber/filters/retry_spec.rb
865
- - spec/cucumber/filters/tag_limits/test_case_index_spec.rb
866
- - spec/cucumber/filters/tag_limits/verifier_spec.rb
867
- - spec/cucumber/filters/tag_limits_spec.rb
868
- - spec/cucumber/formatter/ansicolor_spec.rb
869
- - spec/cucumber/formatter/backtrace_filter_spec.rb
870
- - spec/cucumber/formatter/console_counts_spec.rb
871
- - spec/cucumber/formatter/duration_spec.rb
872
- - spec/cucumber/formatter/fail_fast_spec.rb
873
- - spec/cucumber/formatter/html_spec.rb
874
- - spec/cucumber/formatter/interceptor_spec.rb
875
- - spec/cucumber/formatter/json_spec.rb
876
- - spec/cucumber/formatter/junit_spec.rb
877
- - spec/cucumber/formatter/legacy_api/adapter_spec.rb
878
- - spec/cucumber/formatter/pretty_spec.rb
879
- - spec/cucumber/formatter/progress_spec.rb
880
- - spec/cucumber/formatter/rerun_spec.rb
881
- - spec/cucumber/formatter/spec_helper.rb
882
- - spec/cucumber/glue/proto_world_spec.rb
883
- - spec/cucumber/glue/registry_and_more_spec.rb
884
- - spec/cucumber/glue/snippet_spec.rb
885
- - spec/cucumber/glue/step_definition_spec.rb
886
- - spec/cucumber/hooks_spec.rb
887
- - spec/cucumber/multiline_argument/data_table_spec.rb
888
- - spec/cucumber/project_initializer_spec.rb
889
- - spec/cucumber/rake/forked_spec.rb
890
- - spec/cucumber/rake/task_spec.rb
891
- - spec/cucumber/running_test_case_spec.rb
892
- - spec/cucumber/runtime/for_programming_languages_spec.rb
893
- - spec/cucumber/runtime/support_code_spec.rb
894
- - spec/cucumber/runtime_spec.rb
895
- - spec/cucumber/sell_cucumbers.feature
896
- - spec/cucumber/step_argument_spec.rb
897
- - spec/cucumber/step_match_search_spec.rb
898
- - spec/cucumber/step_match_spec.rb
899
- - spec/cucumber/world/pending_spec.rb
900
- - spec/spec_helper.rb
901
- - spec/support/standard_step_actions.rb
902
449
  homepage: https://cucumber.io/
903
450
  licenses:
904
451
  - MIT
@@ -912,157 +459,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
912
459
  requirements:
913
460
  - - ">="
914
461
  - !ruby/object:Gem::Version
915
- version: '2.1'
462
+ version: '2.2'
916
463
  required_rubygems_version: !ruby/object:Gem::Requirement
917
464
  requirements:
918
465
  - - ">="
919
466
  - !ruby/object:Gem::Version
920
467
  version: '0'
921
468
  requirements: []
922
- rubyforge_project:
923
- rubygems_version: 2.6.8
469
+ rubygems_version: 3.0.6
924
470
  signing_key:
925
471
  specification_version: 4
926
- summary: cucumber-3.0.1
927
- test_files:
928
- - features/docs/api/list_step_defs_as_json.feature
929
- - features/docs/api/listen_for_events.feature
930
- - features/docs/api/run_cli_main_with_existing_runtime.feature
931
- - features/docs/cli/backtraces.feature
932
- - features/docs/cli/dry_run.feature
933
- - features/docs/cli/exclude_files.feature
934
- - features/docs/cli/execute_with_tag_filter.feature
935
- - features/docs/cli/fail_fast.feature
936
- - features/docs/cli/finding_steps.feature
937
- - features/docs/cli/help.feature
938
- - features/docs/cli/i18n.feature
939
- - features/docs/cli/randomize.feature
940
- - features/docs/cli/require.feature
941
- - features/docs/cli/retry_failing_tests.feature
942
- - features/docs/cli/run_scenarios_matching_name.feature
943
- - features/docs/cli/run_specific_scenarios.feature
944
- - features/docs/cli/showing_differences.feature
945
- - features/docs/cli/specifying_multiple_formatters.feature
946
- - features/docs/cli/strict_mode.feature
947
- - features/docs/defining_steps/ambiguous_steps.feature
948
- - features/docs/defining_steps/nested_steps.feature
949
- - features/docs/defining_steps/nested_steps_i18n.feature
950
- - features/docs/defining_steps/nested_steps_with_second_arg.feature
951
- - features/docs/defining_steps/one_line_step_definitions.feature
952
- - features/docs/defining_steps/printing_messages.feature
953
- - features/docs/defining_steps/skip_scenario.feature
954
- - features/docs/defining_steps/snippets.feature
955
- - features/docs/defining_steps/table_diffing.feature
956
- - features/docs/events/gherkin_source_read_event.feature
957
- - features/docs/events/step_activated_event.feature
958
- - features/docs/events/step_definition_registered_event.feature
959
- - features/docs/events/test_case_finished_event.feature
960
- - features/docs/events/test_case_started_event.feature
961
- - features/docs/events/test_run_finished_event.feature
962
- - features/docs/events/test_run_started_event.feature
963
- - features/docs/events/test_step_finished_event.feature
964
- - features/docs/events/test_step_started_event.feature
965
- - features/docs/exception_in_after_hook.feature
966
- - features/docs/exception_in_after_step_hook.feature
967
- - features/docs/exception_in_around_hook.feature
968
- - features/docs/exception_in_before_hook.feature
969
- - features/docs/extending_cucumber/custom_filter.feature
970
- - features/docs/extending_cucumber/custom_formatter.feature
971
- - features/docs/formatters/api_methods.feature
972
- - features/docs/formatters/html_formatter.feature
973
- - features/docs/formatters/json_formatter.feature
974
- - features/docs/formatters/junit_formatter.feature
975
- - features/docs/formatters/pretty_formatter.feature
976
- - features/docs/formatters/progress_formatter.feature
977
- - features/docs/formatters/rerun_formatter.feature
978
- - features/docs/formatters/summary_formatter.feature
979
- - features/docs/formatters/usage_formatter.feature
980
- - features/docs/getting_started.feature
981
- - features/docs/gherkin/background.feature
982
- - features/docs/gherkin/doc_strings.feature
983
- - features/docs/gherkin/expand_option_for_outlines.feature
984
- - features/docs/gherkin/language_from_header.feature
985
- - features/docs/gherkin/outlines.feature
986
- - features/docs/gherkin/unicode_table.feature
987
- - features/docs/gherkin/using_descriptions.feature
988
- - features/docs/gherkin/using_star_notation.feature
989
- - features/docs/iso-8859-1.feature
990
- - features/docs/post_configuration_hook.feature
991
- - features/docs/profiles.feature
992
- - features/docs/rake_task.feature
993
- - features/docs/raketask.feature
994
- - features/docs/work_in_progress.feature
995
- - features/docs/writing_support_code/after_hooks.feature
996
- - features/docs/writing_support_code/after_step_hooks.feature
997
- - features/docs/writing_support_code/around_hooks.feature
998
- - features/docs/writing_support_code/before_hook.feature
999
- - features/docs/writing_support_code/hook_order.feature
1000
- - features/docs/writing_support_code/load_path.feature
1001
- - features/docs/writing_support_code/parameter_types.feature
1002
- - features/docs/writing_support_code/state.feature
1003
- - features/docs/writing_support_code/tagged_hooks.feature
1004
- - features/docs/writing_support_code/world.feature
1005
- - features/lib/step_definitions/aruba_steps.rb
1006
- - features/lib/step_definitions/cli_steps.rb
1007
- - features/lib/step_definitions/cucumber_steps.rb
1008
- - features/lib/step_definitions/iso-8859-1_steps.rb
1009
- - features/lib/step_definitions/json_steps.rb
1010
- - features/lib/step_definitions/junit_steps.rb
1011
- - features/lib/step_definitions/language_steps.rb
1012
- - features/lib/step_definitions/profile_steps.rb
1013
- - features/lib/step_definitions/retry_steps.rb
1014
- - features/lib/step_definitions/ruby_steps.rb
1015
- - features/lib/support/env.rb
1016
- - features/lib/support/fake_wire_server.rb
1017
- - features/lib/support/feature_factory.rb
1018
- - features/lib/support/normalise_output.rb
1019
- - features/lib/support/parameter_types.rb
1020
- - spec/cucumber/cli/configuration_spec.rb
1021
- - spec/cucumber/cli/main_spec.rb
1022
- - spec/cucumber/cli/options_spec.rb
1023
- - spec/cucumber/cli/profile_loader_spec.rb
1024
- - spec/cucumber/cli/rerun_spec.rb
1025
- - spec/cucumber/configuration_spec.rb
1026
- - spec/cucumber/constantize_spec.rb
1027
- - spec/cucumber/events_spec.rb
1028
- - spec/cucumber/file_specs_spec.rb
1029
- - spec/cucumber/filters/activate_steps_spec.rb
1030
- - spec/cucumber/filters/gated_receiver_spec.rb
1031
- - spec/cucumber/filters/retry_spec.rb
1032
- - spec/cucumber/filters/tag_limits/test_case_index_spec.rb
1033
- - spec/cucumber/filters/tag_limits/verifier_spec.rb
1034
- - spec/cucumber/filters/tag_limits_spec.rb
1035
- - spec/cucumber/formatter/ansicolor_spec.rb
1036
- - spec/cucumber/formatter/backtrace_filter_spec.rb
1037
- - spec/cucumber/formatter/console_counts_spec.rb
1038
- - spec/cucumber/formatter/duration_spec.rb
1039
- - spec/cucumber/formatter/fail_fast_spec.rb
1040
- - spec/cucumber/formatter/html_spec.rb
1041
- - spec/cucumber/formatter/interceptor_spec.rb
1042
- - spec/cucumber/formatter/json_spec.rb
1043
- - spec/cucumber/formatter/junit_spec.rb
1044
- - spec/cucumber/formatter/legacy_api/adapter_spec.rb
1045
- - spec/cucumber/formatter/pretty_spec.rb
1046
- - spec/cucumber/formatter/progress_spec.rb
1047
- - spec/cucumber/formatter/rerun_spec.rb
1048
- - spec/cucumber/formatter/spec_helper.rb
1049
- - spec/cucumber/glue/proto_world_spec.rb
1050
- - spec/cucumber/glue/registry_and_more_spec.rb
1051
- - spec/cucumber/glue/snippet_spec.rb
1052
- - spec/cucumber/glue/step_definition_spec.rb
1053
- - spec/cucumber/hooks_spec.rb
1054
- - spec/cucumber/multiline_argument/data_table_spec.rb
1055
- - spec/cucumber/project_initializer_spec.rb
1056
- - spec/cucumber/rake/forked_spec.rb
1057
- - spec/cucumber/rake/task_spec.rb
1058
- - spec/cucumber/running_test_case_spec.rb
1059
- - spec/cucumber/runtime/for_programming_languages_spec.rb
1060
- - spec/cucumber/runtime/support_code_spec.rb
1061
- - spec/cucumber/runtime_spec.rb
1062
- - spec/cucumber/sell_cucumbers.feature
1063
- - spec/cucumber/step_argument_spec.rb
1064
- - spec/cucumber/step_match_search_spec.rb
1065
- - spec/cucumber/step_match_spec.rb
1066
- - spec/cucumber/world/pending_spec.rb
1067
- - spec/spec_helper.rb
1068
- - spec/support/standard_step_actions.rb
472
+ summary: cucumber-3.2.0
473
+ test_files: []