stefl-cucumber 0.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (538) hide show
  1. data/.gitattributes +1 -0
  2. data/.gitignore +24 -0
  3. data/.rspec +1 -0
  4. data/Gemfile +7 -0
  5. data/History.txt +1613 -0
  6. data/LICENSE +22 -0
  7. data/README.rdoc +26 -0
  8. data/Rakefile +12 -0
  9. data/bin/cucumber +22 -0
  10. data/cucumber.gemspec +50 -0
  11. data/cucumber.yml +20 -0
  12. data/examples/i18n/README.textile +18 -0
  13. data/examples/i18n/Rakefile +33 -0
  14. data/examples/i18n/ar/Rakefile +6 -0
  15. data/examples/i18n/ar/features/addition.feature +17 -0
  16. data/examples/i18n/ar/features/step_definitons/calculator_steps.rb +24 -0
  17. data/examples/i18n/ar/lib/calculator.rb +11 -0
  18. data/examples/i18n/bg/Rakefile +6 -0
  19. data/examples/i18n/bg/features/addition.feature +12 -0
  20. data/examples/i18n/bg/features/consecutive_calculations.feature +19 -0
  21. data/examples/i18n/bg/features/division.feature +17 -0
  22. data/examples/i18n/bg/features/step_definitons/calculator_steps.rb +24 -0
  23. data/examples/i18n/bg/features/support/env.rb +5 -0
  24. data/examples/i18n/bg/features/support/world.rb +8 -0
  25. data/examples/i18n/bg/lib/calculator.rb +24 -0
  26. data/examples/i18n/ca/Rakefile +6 -0
  27. data/examples/i18n/ca/features/step_definitons/calculator_steps.rb +21 -0
  28. data/examples/i18n/ca/features/suma.feature +17 -0
  29. data/examples/i18n/ca/lib/calculadora.rb +16 -0
  30. data/examples/i18n/da/Rakefile +6 -0
  31. data/examples/i18n/da/features/sammenlaegning.feature +18 -0
  32. data/examples/i18n/da/features/step_definitons/lommeregner_steps.rb +24 -0
  33. data/examples/i18n/da/lib/lommeregner.rb +11 -0
  34. data/examples/i18n/de/.gitignore +1 -0
  35. data/examples/i18n/de/Rakefile +6 -0
  36. data/examples/i18n/de/features/addition.feature +17 -0
  37. data/examples/i18n/de/features/division.feature +10 -0
  38. data/examples/i18n/de/features/step_definitons/calculator_steps.rb +24 -0
  39. data/examples/i18n/de/lib/calculator.rb +14 -0
  40. data/examples/i18n/en-lol/Rakefile +4 -0
  41. data/examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb +16 -0
  42. data/examples/i18n/en-lol/features/stuffing.feature +8 -0
  43. data/examples/i18n/en-lol/features/support/env.rb +7 -0
  44. data/examples/i18n/en-lol/lib/basket.rb +12 -0
  45. data/examples/i18n/en-lol/lib/belly.rb +11 -0
  46. data/examples/i18n/en/.gitignore +1 -0
  47. data/examples/i18n/en/Rakefile +6 -0
  48. data/examples/i18n/en/features/addition.feature +17 -0
  49. data/examples/i18n/en/features/division.feature +10 -0
  50. data/examples/i18n/en/features/step_definitons/calculator_steps.rb +24 -0
  51. data/examples/i18n/en/lib/calculator.rb +14 -0
  52. data/examples/i18n/eo/.gitignore +1 -0
  53. data/examples/i18n/eo/Rakefile +6 -0
  54. data/examples/i18n/eo/features/adicio.feature +17 -0
  55. data/examples/i18n/eo/features/divido.feature +10 -0
  56. data/examples/i18n/eo/features/step_definitons/calculator_steps.rb +24 -0
  57. data/examples/i18n/eo/lib/calculator.rb +14 -0
  58. data/examples/i18n/es/Rakefile +6 -0
  59. data/examples/i18n/es/features/adicion.feature +17 -0
  60. data/examples/i18n/es/features/step_definitons/calculador_steps.rb +21 -0
  61. data/examples/i18n/es/lib/calculador.rb +14 -0
  62. data/examples/i18n/et/Rakefile +6 -0
  63. data/examples/i18n/et/features/jagamine.feature +10 -0
  64. data/examples/i18n/et/features/liitmine.feature +17 -0
  65. data/examples/i18n/et/features/step_definitions/kalkulaator_steps.rb +24 -0
  66. data/examples/i18n/et/lib/kalkulaator.rb +14 -0
  67. data/examples/i18n/fi/.gitignore +1 -0
  68. data/examples/i18n/fi/Rakefile +6 -0
  69. data/examples/i18n/fi/features/jakolasku.feature +10 -0
  70. data/examples/i18n/fi/features/step_definitons/laskin_steps.rb +24 -0
  71. data/examples/i18n/fi/features/yhteenlasku.feature +17 -0
  72. data/examples/i18n/fi/lib/laskin.rb +14 -0
  73. data/examples/i18n/fr/Rakefile +6 -0
  74. data/examples/i18n/fr/features/addition.feature +18 -0
  75. data/examples/i18n/fr/features/addition2.feature +17 -0
  76. data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +32 -0
  77. data/examples/i18n/fr/features/support/env.rb +5 -0
  78. data/examples/i18n/fr/lib/calculatrice.rb +10 -0
  79. data/examples/i18n/he/Rakefile +6 -0
  80. data/examples/i18n/he/features/addition.feature +17 -0
  81. data/examples/i18n/he/features/division.feature +10 -0
  82. data/examples/i18n/he/features/step_definitons/calculator_steps.rb +24 -0
  83. data/examples/i18n/he/lib/calculator.rb +15 -0
  84. data/examples/i18n/hu/.gitignore +1 -0
  85. data/examples/i18n/hu/Rakefile +6 -0
  86. data/examples/i18n/hu/features/osszeadas.feature +17 -0
  87. data/examples/i18n/hu/features/osztas.feature +10 -0
  88. data/examples/i18n/hu/features/step_definitons/calculator_steps.rb +25 -0
  89. data/examples/i18n/hu/lib/calculator.rb +14 -0
  90. data/examples/i18n/id/.gitignore +1 -0
  91. data/examples/i18n/id/Rakefile +6 -0
  92. data/examples/i18n/id/features/addition.feature +17 -0
  93. data/examples/i18n/id/features/division.feature +10 -0
  94. data/examples/i18n/id/features/step_definitons/calculator_steps.rb +24 -0
  95. data/examples/i18n/id/lib/calculator.rb +14 -0
  96. data/examples/i18n/it/Rakefile +6 -0
  97. data/examples/i18n/it/features/somma.feature +11 -0
  98. data/examples/i18n/it/features/step_definitons/calcolatrice_steps.rb +24 -0
  99. data/examples/i18n/it/lib/calcolatrice.rb +11 -0
  100. data/examples/i18n/ja/.gitignore +1 -0
  101. data/examples/i18n/ja/Rakefile +6 -0
  102. data/examples/i18n/ja/features/addition.feature +17 -0
  103. data/examples/i18n/ja/features/division.feature +10 -0
  104. data/examples/i18n/ja/features/step_definitons/calculator_steps.rb +19 -0
  105. data/examples/i18n/ja/features/support/env.rb +5 -0
  106. data/examples/i18n/ja/lib/calculator.rb +14 -0
  107. data/examples/i18n/ko/.gitignore +1 -0
  108. data/examples/i18n/ko/Rakefile +6 -0
  109. data/examples/i18n/ko/features/addition.feature +17 -0
  110. data/examples/i18n/ko/features/division.feature +11 -0
  111. data/examples/i18n/ko/features/step_definitons/calculator_steps.rb +24 -0
  112. data/examples/i18n/ko/lib/calculator.rb +14 -0
  113. data/examples/i18n/lt/.gitignore +1 -0
  114. data/examples/i18n/lt/Rakefile +6 -0
  115. data/examples/i18n/lt/features/addition.feature +17 -0
  116. data/examples/i18n/lt/features/division.feature +10 -0
  117. data/examples/i18n/lt/features/step_definitons/calculator_steps.rb +24 -0
  118. data/examples/i18n/lt/lib/calculator.rb +14 -0
  119. data/examples/i18n/lv/Rakefile +6 -0
  120. data/examples/i18n/lv/features/addition.feature +17 -0
  121. data/examples/i18n/lv/features/division.feature +10 -0
  122. data/examples/i18n/lv/features/step_definitons/calculator_steps.rb +24 -0
  123. data/examples/i18n/lv/lib/calculator.rb +14 -0
  124. data/examples/i18n/no/Rakefile +6 -0
  125. data/examples/i18n/no/features/step_definitons/kalkulator_steps.rb +17 -0
  126. data/examples/i18n/no/features/summering.feature +19 -0
  127. data/examples/i18n/no/features/support/env.rb +6 -0
  128. data/examples/i18n/no/lib/kalkulator.rb +11 -0
  129. data/examples/i18n/pl/.gitignore +1 -0
  130. data/examples/i18n/pl/Rakefile +6 -0
  131. data/examples/i18n/pl/features/addition.feature +17 -0
  132. data/examples/i18n/pl/features/division.feature +10 -0
  133. data/examples/i18n/pl/features/step_definitons/calculator_steps.rb +24 -0
  134. data/examples/i18n/pl/features/support/env.rb +5 -0
  135. data/examples/i18n/pl/lib/calculator.rb +14 -0
  136. data/examples/i18n/pt/Rakefile +6 -0
  137. data/examples/i18n/pt/features/adicao.feature +11 -0
  138. data/examples/i18n/pt/features/step_definitions/calculadora_steps.rb +20 -0
  139. data/examples/i18n/pt/features/support/env.rb +5 -0
  140. data/examples/i18n/pt/lib/calculadora.rb +10 -0
  141. data/examples/i18n/ro/Rakefile +6 -0
  142. data/examples/i18n/ro/features/step_definitons/calculator_steps.rb +24 -0
  143. data/examples/i18n/ro/features/suma.feature +11 -0
  144. data/examples/i18n/ro/lib/calculator.rb +11 -0
  145. data/examples/i18n/ru/Rakefile +6 -0
  146. data/examples/i18n/ru/features/addition.feature +11 -0
  147. data/examples/i18n/ru/features/consecutive_calculations.feature +17 -0
  148. data/examples/i18n/ru/features/division.feature +16 -0
  149. data/examples/i18n/ru/features/step_definitons/calculator_steps.rb +19 -0
  150. data/examples/i18n/ru/features/support/env.rb +5 -0
  151. data/examples/i18n/ru/features/support/world.rb +8 -0
  152. data/examples/i18n/ru/lib/calculator.rb +24 -0
  153. data/examples/i18n/sk/.gitignore +1 -0
  154. data/examples/i18n/sk/Rakefile +6 -0
  155. data/examples/i18n/sk/features/addition.feature +17 -0
  156. data/examples/i18n/sk/features/division.feature +10 -0
  157. data/examples/i18n/sk/features/step_definitons/calculator_steps.rb +24 -0
  158. data/examples/i18n/sk/lib/calculator.rb +14 -0
  159. data/examples/i18n/sr-Cyrl/Rakefile +6 -0
  160. data/examples/i18n/sr-Cyrl/features/sabiranje.feature +18 -0
  161. data/examples/i18n/sr-Cyrl/features/step_definitons/calculator_steps.rb +20 -0
  162. data/examples/i18n/sr-Cyrl/features/support/env.rb +5 -0
  163. data/examples/i18n/sr-Cyrl/lib/calculator.rb +12 -0
  164. data/examples/i18n/sr-Latn/Rakefile +6 -0
  165. data/examples/i18n/sr-Latn/features/sabiranje.feature +18 -0
  166. data/examples/i18n/sr-Latn/features/step_definitons/calculator_steps.rb +24 -0
  167. data/examples/i18n/sr-Latn/lib/calculator.rb +12 -0
  168. data/examples/i18n/sv/Rakefile +6 -0
  169. data/examples/i18n/sv/features/step_definitons/kalkulator_steps.rb +24 -0
  170. data/examples/i18n/sv/features/summering.feature +18 -0
  171. data/examples/i18n/sv/lib/kalkulator.rb +11 -0
  172. data/examples/i18n/tr/.gitignore +1 -0
  173. data/examples/i18n/tr/Rakefile +6 -0
  174. data/examples/i18n/tr/features/bolme.feature +10 -0
  175. data/examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb +24 -0
  176. data/examples/i18n/tr/features/toplama.feature +18 -0
  177. data/examples/i18n/tr/lib/hesap_makinesi.rb +15 -0
  178. data/examples/i18n/uk/Rakefile +6 -0
  179. data/examples/i18n/uk/features/addition.feature +11 -0
  180. data/examples/i18n/uk/features/consecutive_calculations.feature +17 -0
  181. data/examples/i18n/uk/features/division.feature +16 -0
  182. data/examples/i18n/uk/features/step_definitons/calculator_steps.rb +19 -0
  183. data/examples/i18n/uk/features/support/env.rb +5 -0
  184. data/examples/i18n/uk/features/support/world.rb +8 -0
  185. data/examples/i18n/uk/lib/calculator.rb +24 -0
  186. data/examples/i18n/uz/Rakefile +6 -0
  187. data/examples/i18n/uz/features/addition.feature +10 -0
  188. data/examples/i18n/uz/features/consecutive_calculations.feature +17 -0
  189. data/examples/i18n/uz/features/division.feature +17 -0
  190. data/examples/i18n/uz/features/step_definitons/calculator_steps.rb +19 -0
  191. data/examples/i18n/uz/features/support/env.rb +5 -0
  192. data/examples/i18n/uz/features/support/world.rb +8 -0
  193. data/examples/i18n/uz/lib/calculator.rb +24 -0
  194. data/examples/i18n/zh-CN/Rakefile +4 -0
  195. data/examples/i18n/zh-CN/features/addition.feature +18 -0
  196. data/examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb +26 -0
  197. data/examples/i18n/zh-CN/lib/calculator.rb +10 -0
  198. data/examples/i18n/zh-TW/.gitignore +1 -0
  199. data/examples/i18n/zh-TW/Rakefile +4 -0
  200. data/examples/i18n/zh-TW/features/addition.feature +17 -0
  201. data/examples/i18n/zh-TW/features/division.feature +11 -0
  202. data/examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb +24 -0
  203. data/examples/i18n/zh-TW/lib/calculator.rb +14 -0
  204. data/examples/python/README.textile +7 -0
  205. data/examples/python/Rakefile +4 -0
  206. data/examples/python/features/fibonacci.feature +19 -0
  207. data/examples/python/features/step_definitions/fib_steps.py +11 -0
  208. data/examples/python/lib/.gitignore +1 -0
  209. data/examples/python/lib/fib.py +7 -0
  210. data/examples/ramaze/README.textile +7 -0
  211. data/examples/ramaze/Rakefile +6 -0
  212. data/examples/ramaze/app.rb +21 -0
  213. data/examples/ramaze/features/add.feature +11 -0
  214. data/examples/ramaze/features/step_definitions/add_steps.rb +15 -0
  215. data/examples/ramaze/features/support/env.rb +32 -0
  216. data/examples/ramaze/layout/default.html.erb +8 -0
  217. data/examples/ramaze/view/index.html.erb +5 -0
  218. data/examples/rspec_doubles/Rakefile +4 -0
  219. data/examples/rspec_doubles/features/mocking.feature +9 -0
  220. data/examples/rspec_doubles/features/step_definitions/calvin_steps.rb +19 -0
  221. data/examples/rspec_doubles/features/support/env.rb +12 -0
  222. data/examples/ruby2python/README.textile +7 -0
  223. data/examples/ruby2python/Rakefile +4 -0
  224. data/examples/ruby2python/features/fibonacci.feature +19 -0
  225. data/examples/ruby2python/features/step_definitions/fib_steps.rb +7 -0
  226. data/examples/ruby2python/features/support/env.rb +21 -0
  227. data/examples/ruby2python/lib/.gitignore +1 -0
  228. data/examples/ruby2python/lib/fib.py +7 -0
  229. data/examples/sinatra/README.textile +13 -0
  230. data/examples/sinatra/Rakefile +6 -0
  231. data/examples/sinatra/app.rb +14 -0
  232. data/examples/sinatra/features/add.feature +11 -0
  233. data/examples/sinatra/features/step_definitions/add_steps.rb +15 -0
  234. data/examples/sinatra/features/support/env.rb +10 -0
  235. data/examples/sinatra/views/add.erb +7 -0
  236. data/examples/sinatra/views/layout.erb +8 -0
  237. data/examples/tcl/README.textile +11 -0
  238. data/examples/tcl/Rakefile +6 -0
  239. data/examples/tcl/features/fibonnacci.feature +17 -0
  240. data/examples/tcl/features/step_definitions/fib_steps.rb +7 -0
  241. data/examples/tcl/features/support/env.rb +6 -0
  242. data/examples/tcl/src/fib.tcl +3 -0
  243. data/examples/test_unit/Rakefile +6 -0
  244. data/examples/test_unit/features/step_definitions/test_unit_steps.rb +23 -0
  245. data/examples/test_unit/features/test_unit.feature +9 -0
  246. data/examples/v8/Rakefile +6 -0
  247. data/examples/v8/features/fibonacci.feature +43 -0
  248. data/examples/v8/features/step_definitions/fib_steps.js +49 -0
  249. data/examples/v8/features/support/env.js +14 -0
  250. data/examples/v8/lib/fibonacci.js +19 -0
  251. data/examples/watir/.gitignore +2 -0
  252. data/examples/watir/README.textile +16 -0
  253. data/examples/watir/Rakefile +12 -0
  254. data/examples/watir/cucumber.yml +1 -0
  255. data/examples/watir/features/search.feature +12 -0
  256. data/examples/watir/features/step_definitions/search_steps.rb +26 -0
  257. data/examples/watir/features/support/env.rb +32 -0
  258. data/examples/watir/features/support/screenshots.rb +47 -0
  259. data/features/background.feature +498 -0
  260. data/features/custom_formatter.feature +41 -0
  261. data/features/execute_with_tag_filter.feature +63 -0
  262. data/features/hooks.feature +59 -0
  263. data/features/json_formatter.feature +249 -0
  264. data/features/stats_formatters.feature +70 -0
  265. data/features/step_definitions/cucumber_steps.rb +8 -0
  266. data/features/support/env.rb +31 -0
  267. data/features/tagged_hooks.feature +217 -0
  268. data/fixtures/json/features/background.feature +7 -0
  269. data/fixtures/json/features/embed.feature +4 -0
  270. data/fixtures/json/features/one_passing_one_failing.feature +11 -0
  271. data/fixtures/json/features/step_definitions/steps.rb +32 -0
  272. data/fixtures/json/features/tables.feature +13 -0
  273. data/fixtures/junit/features/one_passing_one_failing.feature +8 -0
  274. data/fixtures/junit/features/pending.feature +5 -0
  275. data/fixtures/junit/features/step_definitions/steps.rb +11 -0
  276. data/fixtures/self_test/.gitignore +1 -0
  277. data/fixtures/self_test/README.textile +6 -0
  278. data/fixtures/self_test/Rakefile +6 -0
  279. data/fixtures/self_test/features/call_undefined_step_from_step_def.feature +7 -0
  280. data/fixtures/self_test/features/failing_expectation.feature +4 -0
  281. data/fixtures/self_test/features/lots_of_undefined.feature +8 -0
  282. data/fixtures/self_test/features/multiline_name.feature +27 -0
  283. data/fixtures/self_test/features/outline_sample.feature +15 -0
  284. data/fixtures/self_test/features/sample.feature +21 -0
  285. data/fixtures/self_test/features/search_sample.feature +32 -0
  286. data/fixtures/self_test/features/step_definitions/sample_steps.rb +84 -0
  287. data/fixtures/self_test/features/support/env.rb +18 -0
  288. data/fixtures/self_test/features/tags_sample.feature +17 -0
  289. data/fixtures/self_test/features/tons_of_cukes.feature +52 -0
  290. data/fixtures/self_test/features/undefined_multiline_args.feature +12 -0
  291. data/fixtures/self_test/list-of-features.txt +1 -0
  292. data/fixtures/steps_library/features/step_definitions/steps_lib1.rb +8 -0
  293. data/fixtures/steps_library/features/step_definitions/steps_lib2.rb +8 -0
  294. data/fixtures/tickets/Rakefile +20 -0
  295. data/fixtures/tickets/features.html +138 -0
  296. data/fixtures/tickets/features/172.feature +28 -0
  297. data/fixtures/tickets/features/177/1.feature +28 -0
  298. data/fixtures/tickets/features/177/2.feature +20 -0
  299. data/fixtures/tickets/features/177/3.feature +18 -0
  300. data/fixtures/tickets/features/180.feature +7 -0
  301. data/fixtures/tickets/features/229/tagged_hooks.feature +8 -0
  302. data/fixtures/tickets/features/229/tagged_hooks.rb +14 -0
  303. data/fixtures/tickets/features/236.feature +13 -0
  304. data/fixtures/tickets/features/241.feature +12 -0
  305. data/fixtures/tickets/features/246.feature +4 -0
  306. data/fixtures/tickets/features/248.feature +11 -0
  307. data/fixtures/tickets/features/270/back.feature +14 -0
  308. data/fixtures/tickets/features/270/back.steps.rb +14 -0
  309. data/fixtures/tickets/features/272/hooks.feature +26 -0
  310. data/fixtures/tickets/features/272/hooks_steps.rb +53 -0
  311. data/fixtures/tickets/features/279/py_string_indent.feature +25 -0
  312. data/fixtures/tickets/features/279/py_string_indent.steps.rb +12 -0
  313. data/fixtures/tickets/features/279/wrong.feature_ +11 -0
  314. data/fixtures/tickets/features/301/filter_background_tagged_hooks.feature +6 -0
  315. data/fixtures/tickets/features/301/filter_background_tagged_hooks_steps.rb +12 -0
  316. data/fixtures/tickets/features/306/only_background.feature +4 -0
  317. data/fixtures/tickets/features/around_timeout.feature +6 -0
  318. data/fixtures/tickets/features/gherkin_67.feature +12 -0
  319. data/fixtures/tickets/features/gherkin_68.feature +4 -0
  320. data/fixtures/tickets/features/half_manual.feature +11 -0
  321. data/fixtures/tickets/features/lib/eatting_machine.rb +18 -0
  322. data/fixtures/tickets/features/lib/pantry.rb +20 -0
  323. data/fixtures/tickets/features/scenario_outline.feature +95 -0
  324. data/fixtures/tickets/features/step_definitons/246_steps.rb +3 -0
  325. data/fixtures/tickets/features/step_definitons/248_steps.rb +15 -0
  326. data/fixtures/tickets/features/step_definitons/around_timeout_steps.rb +9 -0
  327. data/fixtures/tickets/features/step_definitons/half_manual_steps.rb +11 -0
  328. data/fixtures/tickets/features/step_definitons/scenario_outline_steps.rb +42 -0
  329. data/fixtures/tickets/features/step_definitons/tickets_steps.rb +88 -0
  330. data/fixtures/tickets/features/table_diffing.feature +13 -0
  331. data/fixtures/tickets/features/tickets.feature +28 -0
  332. data/gem_tasks/contributors.rake +15 -0
  333. data/gem_tasks/cucumber.rake +19 -0
  334. data/gem_tasks/environment.rake +7 -0
  335. data/gem_tasks/examples.rake +11 -0
  336. data/gem_tasks/fix_cr_lf.rake +10 -0
  337. data/gem_tasks/flog.rake +4 -0
  338. data/gem_tasks/rspec.rake +8 -0
  339. data/gem_tasks/sass.rake +4 -0
  340. data/gem_tasks/sdoc.rake +12 -0
  341. data/legacy_features/announce.feature +164 -0
  342. data/legacy_features/api/list_step_defs_as_json.feature +50 -0
  343. data/legacy_features/api/run_cli_main_with_existing_runtime.feature +34 -0
  344. data/legacy_features/around_hooks.feature +232 -0
  345. data/legacy_features/bug_371.feature +32 -0
  346. data/legacy_features/bug_464.feature +16 -0
  347. data/legacy_features/bug_475.feature +42 -0
  348. data/legacy_features/bug_585_tab_indentation.feature +22 -0
  349. data/legacy_features/bug_600.feature +67 -0
  350. data/legacy_features/call_steps_from_stepdefs.feature +154 -0
  351. data/legacy_features/cucumber_cli.feature +591 -0
  352. data/legacy_features/cucumber_cli_outlines.feature +117 -0
  353. data/legacy_features/default_snippets.feature +42 -0
  354. data/legacy_features/diffing.feature +25 -0
  355. data/legacy_features/drb_server_integration.feature +174 -0
  356. data/legacy_features/exception_in_after_block.feature +127 -0
  357. data/legacy_features/exception_in_after_step_block.feature +104 -0
  358. data/legacy_features/exception_in_before_block.feature +98 -0
  359. data/legacy_features/exclude_files.feature +20 -0
  360. data/legacy_features/expand.feature +60 -0
  361. data/legacy_features/html_formatter.feature +8 -0
  362. data/legacy_features/html_formatter/a.html +550 -0
  363. data/legacy_features/junit_formatter.feature +92 -0
  364. data/legacy_features/language_from_header.feature +30 -0
  365. data/legacy_features/language_help.feature +78 -0
  366. data/legacy_features/listener_debugger_formatter.feature +42 -0
  367. data/legacy_features/multiline_names.feature +44 -0
  368. data/legacy_features/post_configuration_hook.feature +50 -0
  369. data/legacy_features/profiles.feature +126 -0
  370. data/legacy_features/rake_task.feature +152 -0
  371. data/legacy_features/report_called_undefined_steps.feature +34 -0
  372. data/legacy_features/rerun_formatter.feature +45 -0
  373. data/legacy_features/simplest.feature +11 -0
  374. data/legacy_features/snippet.feature +23 -0
  375. data/legacy_features/snippets_when_using_star_keyword.feature +36 -0
  376. data/legacy_features/step_definitions/cucumber_steps.rb +168 -0
  377. data/legacy_features/step_definitions/extra_steps.rb +2 -0
  378. data/legacy_features/step_definitions/simplest_steps.rb +3 -0
  379. data/legacy_features/step_definitions/wire_steps.rb +34 -0
  380. data/legacy_features/support/env.rb +157 -0
  381. data/legacy_features/support/env.rb.simplest +7 -0
  382. data/legacy_features/support/fake_wire_server.rb +77 -0
  383. data/legacy_features/table_diffing.feature +45 -0
  384. data/legacy_features/table_mapping.feature +34 -0
  385. data/legacy_features/transform.feature +245 -0
  386. data/legacy_features/unicode_table.feature +35 -0
  387. data/legacy_features/wire_protocol.feature +332 -0
  388. data/legacy_features/wire_protocol_table_diffing.feature +119 -0
  389. data/legacy_features/wire_protocol_tags.feature +87 -0
  390. data/legacy_features/wire_protocol_timeouts.feature +63 -0
  391. data/legacy_features/work_in_progress.feature +156 -0
  392. data/lib/README.rdoc +12 -0
  393. data/lib/autotest/cucumber.rb +6 -0
  394. data/lib/autotest/cucumber_mixin.rb +135 -0
  395. data/lib/autotest/cucumber_rails.rb +6 -0
  396. data/lib/autotest/cucumber_rails_rspec.rb +6 -0
  397. data/lib/autotest/cucumber_rails_rspec2.rb +6 -0
  398. data/lib/autotest/cucumber_rspec.rb +6 -0
  399. data/lib/autotest/cucumber_rspec2.rb +6 -0
  400. data/lib/autotest/discover.rb +9 -0
  401. data/lib/cucumber.rb +27 -0
  402. data/lib/cucumber/ast.rb +30 -0
  403. data/lib/cucumber/ast/background.rb +99 -0
  404. data/lib/cucumber/ast/comment.rb +31 -0
  405. data/lib/cucumber/ast/examples.rb +43 -0
  406. data/lib/cucumber/ast/feature.rb +103 -0
  407. data/lib/cucumber/ast/feature_element.rb +78 -0
  408. data/lib/cucumber/ast/features.rb +35 -0
  409. data/lib/cucumber/ast/outline_table.rb +187 -0
  410. data/lib/cucumber/ast/py_string.rb +80 -0
  411. data/lib/cucumber/ast/scenario.rb +117 -0
  412. data/lib/cucumber/ast/scenario_outline.rb +122 -0
  413. data/lib/cucumber/ast/step.rb +126 -0
  414. data/lib/cucumber/ast/step_collection.rb +76 -0
  415. data/lib/cucumber/ast/step_invocation.rb +199 -0
  416. data/lib/cucumber/ast/table.rb +689 -0
  417. data/lib/cucumber/ast/tags.rb +28 -0
  418. data/lib/cucumber/ast/tree_walker.rb +184 -0
  419. data/lib/cucumber/ast/visitor.rb +11 -0
  420. data/lib/cucumber/broadcaster.rb +13 -0
  421. data/lib/cucumber/cli/configuration.rb +209 -0
  422. data/lib/cucumber/cli/drb_client.rb +43 -0
  423. data/lib/cucumber/cli/main.rb +78 -0
  424. data/lib/cucumber/cli/options.rb +406 -0
  425. data/lib/cucumber/cli/profile_loader.rb +91 -0
  426. data/lib/cucumber/configuration.rb +49 -0
  427. data/lib/cucumber/constantize.rb +34 -0
  428. data/lib/cucumber/core_ext/disable_mini_unit_autorun.rb +14 -0
  429. data/lib/cucumber/core_ext/instance_exec.rb +98 -0
  430. data/lib/cucumber/core_ext/proc.rb +34 -0
  431. data/lib/cucumber/core_ext/string.rb +9 -0
  432. data/lib/cucumber/errors.rb +40 -0
  433. data/lib/cucumber/feature_file.rb +62 -0
  434. data/lib/cucumber/formatter/ansicolor.rb +160 -0
  435. data/lib/cucumber/formatter/console.rb +177 -0
  436. data/lib/cucumber/formatter/cucumber.css +275 -0
  437. data/lib/cucumber/formatter/cucumber.sass +271 -0
  438. data/lib/cucumber/formatter/debug.rb +33 -0
  439. data/lib/cucumber/formatter/duration.rb +13 -0
  440. data/lib/cucumber/formatter/gherkin_formatter_adapter.rb +84 -0
  441. data/lib/cucumber/formatter/gpretty.rb +24 -0
  442. data/lib/cucumber/formatter/html.rb +644 -0
  443. data/lib/cucumber/formatter/io.rb +31 -0
  444. data/lib/cucumber/formatter/jquery-min.js +154 -0
  445. data/lib/cucumber/formatter/json.rb +29 -0
  446. data/lib/cucumber/formatter/json_pretty.rb +13 -0
  447. data/lib/cucumber/formatter/junit.rb +150 -0
  448. data/lib/cucumber/formatter/ordered_xml_markup.rb +24 -0
  449. data/lib/cucumber/formatter/pdf.rb +244 -0
  450. data/lib/cucumber/formatter/pretty.rb +237 -0
  451. data/lib/cucumber/formatter/progress.rb +92 -0
  452. data/lib/cucumber/formatter/rerun.rb +55 -0
  453. data/lib/cucumber/formatter/stepdefs.rb +14 -0
  454. data/lib/cucumber/formatter/steps.rb +49 -0
  455. data/lib/cucumber/formatter/summary.rb +35 -0
  456. data/lib/cucumber/formatter/unicode.rb +79 -0
  457. data/lib/cucumber/formatter/usage.rb +127 -0
  458. data/lib/cucumber/js_support/js_dsl.js +57 -0
  459. data/lib/cucumber/js_support/js_language.rb +185 -0
  460. data/lib/cucumber/js_support/js_snippets.rb +27 -0
  461. data/lib/cucumber/language_support.rb +30 -0
  462. data/lib/cucumber/language_support/language_methods.rb +129 -0
  463. data/lib/cucumber/parser.rb +2 -0
  464. data/lib/cucumber/parser/gherkin_builder.rb +130 -0
  465. data/lib/cucumber/platform.rb +29 -0
  466. data/lib/cucumber/py_support/py_dsl.py +10 -0
  467. data/lib/cucumber/py_support/py_language.py +10 -0
  468. data/lib/cucumber/py_support/py_language.rb +84 -0
  469. data/lib/cucumber/rake/task.rb +170 -0
  470. data/lib/cucumber/rb_support/rb_dsl.rb +112 -0
  471. data/lib/cucumber/rb_support/rb_hook.rb +18 -0
  472. data/lib/cucumber/rb_support/rb_language.rb +195 -0
  473. data/lib/cucumber/rb_support/rb_step_definition.rb +82 -0
  474. data/lib/cucumber/rb_support/rb_transform.rb +37 -0
  475. data/lib/cucumber/rb_support/rb_world.rb +95 -0
  476. data/lib/cucumber/rb_support/regexp_argument_matcher.rb +21 -0
  477. data/lib/cucumber/rspec/disable_option_parser.rb +23 -0
  478. data/lib/cucumber/rspec/doubles.rb +16 -0
  479. data/lib/cucumber/runtime.rb +145 -0
  480. data/lib/cucumber/runtime/features_loader.rb +62 -0
  481. data/lib/cucumber/runtime/for_programming_languages.rb +65 -0
  482. data/lib/cucumber/runtime/results.rb +64 -0
  483. data/lib/cucumber/runtime/support_code.rb +203 -0
  484. data/lib/cucumber/runtime/user_interface.rb +80 -0
  485. data/lib/cucumber/step_argument.rb +9 -0
  486. data/lib/cucumber/step_definition_light.rb +20 -0
  487. data/lib/cucumber/step_definitions.rb +14 -0
  488. data/lib/cucumber/step_match.rb +115 -0
  489. data/lib/cucumber/step_mother.rb +10 -0
  490. data/lib/cucumber/wire_support/configuration.rb +30 -0
  491. data/lib/cucumber/wire_support/connection.rb +55 -0
  492. data/lib/cucumber/wire_support/request_handler.rb +32 -0
  493. data/lib/cucumber/wire_support/wire_exception.rb +32 -0
  494. data/lib/cucumber/wire_support/wire_language.rb +54 -0
  495. data/lib/cucumber/wire_support/wire_packet.rb +32 -0
  496. data/lib/cucumber/wire_support/wire_protocol.rb +44 -0
  497. data/lib/cucumber/wire_support/wire_protocol/requests.rb +123 -0
  498. data/lib/cucumber/wire_support/wire_step_definition.rb +26 -0
  499. data/spec/cucumber/ast/background_spec.rb +110 -0
  500. data/spec/cucumber/ast/feature_factory.rb +60 -0
  501. data/spec/cucumber/ast/feature_spec.rb +63 -0
  502. data/spec/cucumber/ast/outline_table_spec.rb +21 -0
  503. data/spec/cucumber/ast/py_string_spec.rb +40 -0
  504. data/spec/cucumber/ast/scenario_outline_spec.rb +68 -0
  505. data/spec/cucumber/ast/scenario_spec.rb +43 -0
  506. data/spec/cucumber/ast/step_spec.rb +66 -0
  507. data/spec/cucumber/ast/table_spec.rb +474 -0
  508. data/spec/cucumber/ast/tree_walker_spec.rb +11 -0
  509. data/spec/cucumber/broadcaster_spec.rb +15 -0
  510. data/spec/cucumber/cli/configuration_spec.rb +431 -0
  511. data/spec/cucumber/cli/drb_client_spec.rb +77 -0
  512. data/spec/cucumber/cli/main_spec.rb +137 -0
  513. data/spec/cucumber/cli/options_spec.rb +351 -0
  514. data/spec/cucumber/cli/profile_loader_spec.rb +35 -0
  515. data/spec/cucumber/configuration_spec.rb +23 -0
  516. data/spec/cucumber/core_ext/proc_spec.rb +68 -0
  517. data/spec/cucumber/formatter/ansicolor_spec.rb +31 -0
  518. data/spec/cucumber/formatter/duration_spec.rb +22 -0
  519. data/spec/cucumber/formatter/html_spec.rb +258 -0
  520. data/spec/cucumber/formatter/junit_spec.rb +111 -0
  521. data/spec/cucumber/formatter/progress_spec.rb +38 -0
  522. data/spec/cucumber/formatter/spec_helper.rb +51 -0
  523. data/spec/cucumber/rb_support/rb_language_spec.rb +283 -0
  524. data/spec/cucumber/rb_support/rb_step_definition_spec.rb +99 -0
  525. data/spec/cucumber/rb_support/regexp_argument_matcher_spec.rb +18 -0
  526. data/spec/cucumber/runtime/support_code_spec.rb +112 -0
  527. data/spec/cucumber/runtime_spec.rb +41 -0
  528. data/spec/cucumber/sell_cucumbers.feature +19 -0
  529. data/spec/cucumber/step_match_spec.rb +69 -0
  530. data/spec/cucumber/wire_support/configuration_spec.rb +51 -0
  531. data/spec/cucumber/wire_support/connection_spec.rb +46 -0
  532. data/spec/cucumber/wire_support/wire_exception_spec.rb +44 -0
  533. data/spec/cucumber/wire_support/wire_language_spec.rb +47 -0
  534. data/spec/cucumber/wire_support/wire_packet_spec.rb +40 -0
  535. data/spec/cucumber/wire_support/wire_step_definition_spec.rb +20 -0
  536. data/spec/cucumber/world/pending_spec.rb +46 -0
  537. data/spec/spec_helper.rb +10 -0
  538. metadata +884 -0
@@ -0,0 +1,40 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
2
+ require 'cucumber/wire_support/wire_language'
3
+
4
+ module Cucumber
5
+ module WireSupport
6
+ describe WirePacket do
7
+
8
+ describe "#to_json" do
9
+ it "should convert params to a JSON hash" do
10
+ packet = WirePacket.new('test_message', :foo => :bar)
11
+ packet.to_json.should == "[\"test_message\",{\"foo\":\"bar\"}]"
12
+ end
13
+
14
+ it "should not pass blank params" do
15
+ packet = WirePacket.new('test_message')
16
+ packet.to_json.should == "[\"test_message\"]"
17
+ end
18
+ end
19
+
20
+ describe ".parse" do
21
+ it "should understand a raw packet containing null parameters" do
22
+ packet = WirePacket.parse("[\"test_message\",null]")
23
+ packet.message.should == 'test_message'
24
+ packet.params.should be_nil
25
+ end
26
+
27
+ it "should understand a raw packet containing no parameters" do
28
+ packet = WirePacket.parse("[\"test_message\"]")
29
+ packet.message.should == 'test_message'
30
+ packet.params.should be_nil
31
+ end
32
+
33
+ it "should understand a raw packet containging parameters data" do
34
+ packet = WirePacket.parse("[\"test_message\",{\"foo\":\"bar\"}]")
35
+ packet.params['foo'].should == 'bar'
36
+ end
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,20 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
2
+ require 'cucumber/wire_support/wire_language'
3
+
4
+ module Cucumber
5
+ module WireSupport
6
+ describe WireStepDefinition, "#invoke" do
7
+ describe "if one of the arguments is a table" do
8
+ it "should pass the raw table to the connection" do
9
+ connection = mock('connection')
10
+ step_definition = WireStepDefinition.new(connection, 'id' => 'the-id')
11
+ expected_args = ["a","b", [["1","2"],["3","4"]]]
12
+ connection.should_receive(:invoke).with('the-id', expected_args)
13
+ args = ["a","b"]
14
+ args << Cucumber::Ast::Table.new([["1","2"],["3","4"]])
15
+ step_definition.invoke(args)
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,46 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
2
+ require 'cucumber/rb_support/rb_language'
3
+
4
+ module Cucumber
5
+ describe 'Pending' do
6
+
7
+ before(:each) do
8
+ l = RbSupport::RbLanguage.new(Runtime.new)
9
+ l.begin_rb_scenario(mock('scenario').as_null_object)
10
+ @world = l.current_world
11
+ end
12
+
13
+ it 'should raise a Pending if no block is supplied' do
14
+ lambda {
15
+ @world.pending "TODO"
16
+ }.should raise_error(Cucumber::Pending, /TODO/)
17
+ end
18
+
19
+ it 'should raise a Pending if a supplied block fails as expected' do
20
+ lambda {
21
+ @world.pending "TODO" do
22
+ raise "oops"
23
+ end
24
+ }.should raise_error(Cucumber::Pending, /TODO/)
25
+ end
26
+
27
+ it 'should raise a Pending if a supplied block fails as expected with a mock' do
28
+ lambda {
29
+ @world.pending "TODO" do
30
+ m = mock('thing')
31
+ m.should_receive(:foo)
32
+ m.rspec_verify
33
+ end
34
+ }.should raise_error(Cucumber::Pending, /TODO/)
35
+ end
36
+
37
+ it 'should raise a Pending if a supplied block starts working' do
38
+ lambda {
39
+ @world.pending "TODO" do
40
+ # success!
41
+ end
42
+ }.should raise_error(Cucumber::Pending, /TODO/)
43
+ end
44
+
45
+ end
46
+ end
@@ -0,0 +1,10 @@
1
+ ENV['CUCUMBER_COLORS']=nil
2
+ $:.unshift(File.dirname(__FILE__) + '/../lib')
3
+ $:.unshift(File.dirname(__FILE__))
4
+
5
+ require 'rubygems'
6
+ require 'bundler'
7
+ Bundler.setup
8
+
9
+ require 'cucumber'
10
+ $KCODE='u' unless Cucumber::RUBY_1_9
metadata ADDED
@@ -0,0 +1,884 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: stefl-cucumber
3
+ version: !ruby/object:Gem::Version
4
+ hash: 53
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 10
9
+ - 1
10
+ version: 0.10.1
11
+ platform: ruby
12
+ authors:
13
+ - "Aslak Helles\xC3\xB8y"
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-02-17 00:00:00 +00:00
19
+ default_executable: cucumber
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: gherkin
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ hash: 5
30
+ segments:
31
+ - 2
32
+ - 3
33
+ - 3
34
+ version: 2.3.3
35
+ type: :runtime
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: term-ansicolor
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ hash: 29
46
+ segments:
47
+ - 1
48
+ - 0
49
+ - 5
50
+ version: 1.0.5
51
+ type: :runtime
52
+ version_requirements: *id002
53
+ - !ruby/object:Gem::Dependency
54
+ name: builder
55
+ prerelease: false
56
+ requirement: &id003 !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ hash: 15
62
+ segments:
63
+ - 2
64
+ - 1
65
+ - 2
66
+ version: 2.1.2
67
+ type: :runtime
68
+ version_requirements: *id003
69
+ - !ruby/object:Gem::Dependency
70
+ name: diff-lcs
71
+ prerelease: false
72
+ requirement: &id004 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ hash: 23
78
+ segments:
79
+ - 1
80
+ - 1
81
+ - 2
82
+ version: 1.1.2
83
+ type: :runtime
84
+ version_requirements: *id004
85
+ - !ruby/object:Gem::Dependency
86
+ name: json
87
+ prerelease: false
88
+ requirement: &id005 !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ hash: 7
94
+ segments:
95
+ - 1
96
+ - 4
97
+ version: "1.4"
98
+ type: :runtime
99
+ version_requirements: *id005
100
+ - !ruby/object:Gem::Dependency
101
+ name: rake
102
+ prerelease: false
103
+ requirement: &id006 !ruby/object:Gem::Requirement
104
+ none: false
105
+ requirements:
106
+ - - ~>
107
+ - !ruby/object:Gem::Version
108
+ hash: 49
109
+ segments:
110
+ - 0
111
+ - 8
112
+ - 7
113
+ version: 0.8.7
114
+ type: :development
115
+ version_requirements: *id006
116
+ - !ruby/object:Gem::Dependency
117
+ name: rspec
118
+ prerelease: false
119
+ requirement: &id007 !ruby/object:Gem::Requirement
120
+ none: false
121
+ requirements:
122
+ - - ~>
123
+ - !ruby/object:Gem::Version
124
+ hash: 3
125
+ segments:
126
+ - 2
127
+ - 3
128
+ - 0
129
+ version: 2.3.0
130
+ type: :development
131
+ version_requirements: *id007
132
+ - !ruby/object:Gem::Dependency
133
+ name: nokogiri
134
+ prerelease: false
135
+ requirement: &id008 !ruby/object:Gem::Requirement
136
+ none: false
137
+ requirements:
138
+ - - ~>
139
+ - !ruby/object:Gem::Version
140
+ hash: 15
141
+ segments:
142
+ - 1
143
+ - 4
144
+ - 4
145
+ version: 1.4.4
146
+ type: :development
147
+ version_requirements: *id008
148
+ - !ruby/object:Gem::Dependency
149
+ name: prawn
150
+ prerelease: false
151
+ requirement: &id009 !ruby/object:Gem::Requirement
152
+ none: false
153
+ requirements:
154
+ - - "="
155
+ - !ruby/object:Gem::Version
156
+ hash: 55
157
+ segments:
158
+ - 0
159
+ - 8
160
+ - 4
161
+ version: 0.8.4
162
+ type: :development
163
+ version_requirements: *id009
164
+ - !ruby/object:Gem::Dependency
165
+ name: prawn-layout
166
+ prerelease: false
167
+ requirement: &id010 !ruby/object:Gem::Requirement
168
+ none: false
169
+ requirements:
170
+ - - "="
171
+ - !ruby/object:Gem::Version
172
+ hash: 55
173
+ segments:
174
+ - 0
175
+ - 8
176
+ - 4
177
+ version: 0.8.4
178
+ type: :development
179
+ version_requirements: *id010
180
+ - !ruby/object:Gem::Dependency
181
+ name: syntax
182
+ prerelease: false
183
+ requirement: &id011 !ruby/object:Gem::Requirement
184
+ none: false
185
+ requirements:
186
+ - - ~>
187
+ - !ruby/object:Gem::Version
188
+ hash: 23
189
+ segments:
190
+ - 1
191
+ - 0
192
+ - 0
193
+ version: 1.0.0
194
+ type: :development
195
+ version_requirements: *id011
196
+ - !ruby/object:Gem::Dependency
197
+ name: spork
198
+ prerelease: false
199
+ requirement: &id012 !ruby/object:Gem::Requirement
200
+ none: false
201
+ requirements:
202
+ - - ~>
203
+ - !ruby/object:Gem::Version
204
+ hash: 55
205
+ segments:
206
+ - 0
207
+ - 8
208
+ - 4
209
+ version: 0.8.4
210
+ type: :development
211
+ version_requirements: *id012
212
+ - !ruby/object:Gem::Dependency
213
+ name: aruba
214
+ prerelease: false
215
+ requirement: &id013 !ruby/object:Gem::Requirement
216
+ none: false
217
+ requirements:
218
+ - - ~>
219
+ - !ruby/object:Gem::Version
220
+ hash: 7
221
+ segments:
222
+ - 0
223
+ - 2
224
+ - 8
225
+ version: 0.2.8
226
+ type: :development
227
+ version_requirements: *id013
228
+ - !ruby/object:Gem::Dependency
229
+ name: simplecov
230
+ prerelease: false
231
+ requirement: &id014 !ruby/object:Gem::Requirement
232
+ none: false
233
+ requirements:
234
+ - - ~>
235
+ - !ruby/object:Gem::Version
236
+ hash: 29
237
+ segments:
238
+ - 0
239
+ - 3
240
+ - 7
241
+ version: 0.3.7
242
+ type: :development
243
+ version_requirements: *id014
244
+ description: Behaviour Driven Development with elegance and joy
245
+ email: cukes@googlegroups.com
246
+ executables:
247
+ - cucumber
248
+ extensions: []
249
+
250
+ extra_rdoc_files:
251
+ - LICENSE
252
+ - README.rdoc
253
+ - History.txt
254
+ files:
255
+ - .gitattributes
256
+ - .gitignore
257
+ - .rspec
258
+ - .rvmrc
259
+ - Gemfile
260
+ - History.txt
261
+ - LICENSE
262
+ - README.rdoc
263
+ - Rakefile
264
+ - bin/cucumber
265
+ - cucumber.gemspec
266
+ - cucumber.yml
267
+ - examples/i18n/README.textile
268
+ - examples/i18n/Rakefile
269
+ - examples/i18n/ar/Rakefile
270
+ - examples/i18n/ar/features/addition.feature
271
+ - examples/i18n/ar/features/step_definitons/calculator_steps.rb
272
+ - examples/i18n/ar/lib/calculator.rb
273
+ - examples/i18n/bg/Rakefile
274
+ - examples/i18n/bg/features/addition.feature
275
+ - examples/i18n/bg/features/consecutive_calculations.feature
276
+ - examples/i18n/bg/features/division.feature
277
+ - examples/i18n/bg/features/step_definitons/calculator_steps.rb
278
+ - examples/i18n/bg/features/support/env.rb
279
+ - examples/i18n/bg/features/support/world.rb
280
+ - examples/i18n/bg/lib/calculator.rb
281
+ - examples/i18n/ca/Rakefile
282
+ - examples/i18n/ca/features/step_definitons/calculator_steps.rb
283
+ - examples/i18n/ca/features/suma.feature
284
+ - examples/i18n/ca/lib/calculadora.rb
285
+ - examples/i18n/da/Rakefile
286
+ - examples/i18n/da/features/sammenlaegning.feature
287
+ - examples/i18n/da/features/step_definitons/lommeregner_steps.rb
288
+ - examples/i18n/da/lib/lommeregner.rb
289
+ - examples/i18n/de/.gitignore
290
+ - examples/i18n/de/Rakefile
291
+ - examples/i18n/de/features/addition.feature
292
+ - examples/i18n/de/features/division.feature
293
+ - examples/i18n/de/features/step_definitons/calculator_steps.rb
294
+ - examples/i18n/de/lib/calculator.rb
295
+ - examples/i18n/en-lol/Rakefile
296
+ - examples/i18n/en-lol/features/step_definitions/cucumbrz_steps.rb
297
+ - examples/i18n/en-lol/features/stuffing.feature
298
+ - examples/i18n/en-lol/features/support/env.rb
299
+ - examples/i18n/en-lol/lib/basket.rb
300
+ - examples/i18n/en-lol/lib/belly.rb
301
+ - examples/i18n/en/.gitignore
302
+ - examples/i18n/en/Rakefile
303
+ - examples/i18n/en/features/addition.feature
304
+ - examples/i18n/en/features/division.feature
305
+ - examples/i18n/en/features/step_definitons/calculator_steps.rb
306
+ - examples/i18n/en/lib/calculator.rb
307
+ - examples/i18n/eo/.gitignore
308
+ - examples/i18n/eo/Rakefile
309
+ - examples/i18n/eo/features/adicio.feature
310
+ - examples/i18n/eo/features/divido.feature
311
+ - examples/i18n/eo/features/step_definitons/calculator_steps.rb
312
+ - examples/i18n/eo/lib/calculator.rb
313
+ - examples/i18n/es/Rakefile
314
+ - examples/i18n/es/features/adicion.feature
315
+ - examples/i18n/es/features/step_definitons/calculador_steps.rb
316
+ - examples/i18n/es/lib/calculador.rb
317
+ - examples/i18n/et/Rakefile
318
+ - examples/i18n/et/features/jagamine.feature
319
+ - examples/i18n/et/features/liitmine.feature
320
+ - examples/i18n/et/features/step_definitions/kalkulaator_steps.rb
321
+ - examples/i18n/et/lib/kalkulaator.rb
322
+ - examples/i18n/fi/.gitignore
323
+ - examples/i18n/fi/Rakefile
324
+ - examples/i18n/fi/features/jakolasku.feature
325
+ - examples/i18n/fi/features/step_definitons/laskin_steps.rb
326
+ - examples/i18n/fi/features/yhteenlasku.feature
327
+ - examples/i18n/fi/lib/laskin.rb
328
+ - examples/i18n/fr/Rakefile
329
+ - examples/i18n/fr/features/addition.feature
330
+ - examples/i18n/fr/features/addition2.feature
331
+ - examples/i18n/fr/features/step_definitions/calculatrice_steps.rb
332
+ - examples/i18n/fr/features/support/env.rb
333
+ - examples/i18n/fr/lib/calculatrice.rb
334
+ - examples/i18n/he/Rakefile
335
+ - examples/i18n/he/features/addition.feature
336
+ - examples/i18n/he/features/division.feature
337
+ - examples/i18n/he/features/step_definitons/calculator_steps.rb
338
+ - examples/i18n/he/lib/calculator.rb
339
+ - examples/i18n/hu/.gitignore
340
+ - examples/i18n/hu/Rakefile
341
+ - examples/i18n/hu/features/osszeadas.feature
342
+ - examples/i18n/hu/features/osztas.feature
343
+ - examples/i18n/hu/features/step_definitons/calculator_steps.rb
344
+ - examples/i18n/hu/lib/calculator.rb
345
+ - examples/i18n/id/.gitignore
346
+ - examples/i18n/id/Rakefile
347
+ - examples/i18n/id/features/addition.feature
348
+ - examples/i18n/id/features/division.feature
349
+ - examples/i18n/id/features/step_definitons/calculator_steps.rb
350
+ - examples/i18n/id/lib/calculator.rb
351
+ - examples/i18n/it/Rakefile
352
+ - examples/i18n/it/features/somma.feature
353
+ - examples/i18n/it/features/step_definitons/calcolatrice_steps.rb
354
+ - examples/i18n/it/lib/calcolatrice.rb
355
+ - examples/i18n/ja/.gitignore
356
+ - examples/i18n/ja/Rakefile
357
+ - examples/i18n/ja/features/addition.feature
358
+ - examples/i18n/ja/features/division.feature
359
+ - examples/i18n/ja/features/step_definitons/calculator_steps.rb
360
+ - examples/i18n/ja/features/support/env.rb
361
+ - examples/i18n/ja/lib/calculator.rb
362
+ - examples/i18n/ko/.gitignore
363
+ - examples/i18n/ko/Rakefile
364
+ - examples/i18n/ko/features/addition.feature
365
+ - examples/i18n/ko/features/division.feature
366
+ - examples/i18n/ko/features/step_definitons/calculator_steps.rb
367
+ - examples/i18n/ko/lib/calculator.rb
368
+ - examples/i18n/lt/.gitignore
369
+ - examples/i18n/lt/Rakefile
370
+ - examples/i18n/lt/features/addition.feature
371
+ - examples/i18n/lt/features/division.feature
372
+ - examples/i18n/lt/features/step_definitons/calculator_steps.rb
373
+ - examples/i18n/lt/lib/calculator.rb
374
+ - examples/i18n/lv/Rakefile
375
+ - examples/i18n/lv/features/addition.feature
376
+ - examples/i18n/lv/features/division.feature
377
+ - examples/i18n/lv/features/step_definitons/calculator_steps.rb
378
+ - examples/i18n/lv/lib/calculator.rb
379
+ - examples/i18n/no/Rakefile
380
+ - examples/i18n/no/features/step_definitons/kalkulator_steps.rb
381
+ - examples/i18n/no/features/summering.feature
382
+ - examples/i18n/no/features/support/env.rb
383
+ - examples/i18n/no/lib/kalkulator.rb
384
+ - examples/i18n/pl/.gitignore
385
+ - examples/i18n/pl/Rakefile
386
+ - examples/i18n/pl/features/addition.feature
387
+ - examples/i18n/pl/features/division.feature
388
+ - examples/i18n/pl/features/step_definitons/calculator_steps.rb
389
+ - examples/i18n/pl/features/support/env.rb
390
+ - examples/i18n/pl/lib/calculator.rb
391
+ - examples/i18n/pt/Rakefile
392
+ - examples/i18n/pt/features/adicao.feature
393
+ - examples/i18n/pt/features/step_definitions/calculadora_steps.rb
394
+ - examples/i18n/pt/features/support/env.rb
395
+ - examples/i18n/pt/lib/calculadora.rb
396
+ - examples/i18n/ro/Rakefile
397
+ - examples/i18n/ro/features/step_definitons/calculator_steps.rb
398
+ - examples/i18n/ro/features/suma.feature
399
+ - examples/i18n/ro/lib/calculator.rb
400
+ - examples/i18n/ru/Rakefile
401
+ - examples/i18n/ru/features/addition.feature
402
+ - examples/i18n/ru/features/consecutive_calculations.feature
403
+ - examples/i18n/ru/features/division.feature
404
+ - examples/i18n/ru/features/step_definitons/calculator_steps.rb
405
+ - examples/i18n/ru/features/support/env.rb
406
+ - examples/i18n/ru/features/support/world.rb
407
+ - examples/i18n/ru/lib/calculator.rb
408
+ - examples/i18n/sk/.gitignore
409
+ - examples/i18n/sk/Rakefile
410
+ - examples/i18n/sk/features/addition.feature
411
+ - examples/i18n/sk/features/division.feature
412
+ - examples/i18n/sk/features/step_definitons/calculator_steps.rb
413
+ - examples/i18n/sk/lib/calculator.rb
414
+ - examples/i18n/sr-Cyrl/Rakefile
415
+ - examples/i18n/sr-Cyrl/features/sabiranje.feature
416
+ - examples/i18n/sr-Cyrl/features/step_definitons/calculator_steps.rb
417
+ - examples/i18n/sr-Cyrl/features/support/env.rb
418
+ - examples/i18n/sr-Cyrl/lib/calculator.rb
419
+ - examples/i18n/sr-Latn/Rakefile
420
+ - examples/i18n/sr-Latn/features/sabiranje.feature
421
+ - examples/i18n/sr-Latn/features/step_definitons/calculator_steps.rb
422
+ - examples/i18n/sr-Latn/lib/calculator.rb
423
+ - examples/i18n/sv/Rakefile
424
+ - examples/i18n/sv/features/step_definitons/kalkulator_steps.rb
425
+ - examples/i18n/sv/features/summering.feature
426
+ - examples/i18n/sv/lib/kalkulator.rb
427
+ - examples/i18n/tr/.gitignore
428
+ - examples/i18n/tr/Rakefile
429
+ - examples/i18n/tr/features/bolme.feature
430
+ - examples/i18n/tr/features/step_definitons/hesap_makinesi_adimlari.rb
431
+ - examples/i18n/tr/features/toplama.feature
432
+ - examples/i18n/tr/lib/hesap_makinesi.rb
433
+ - examples/i18n/uk/Rakefile
434
+ - examples/i18n/uk/features/addition.feature
435
+ - examples/i18n/uk/features/consecutive_calculations.feature
436
+ - examples/i18n/uk/features/division.feature
437
+ - examples/i18n/uk/features/step_definitons/calculator_steps.rb
438
+ - examples/i18n/uk/features/support/env.rb
439
+ - examples/i18n/uk/features/support/world.rb
440
+ - examples/i18n/uk/lib/calculator.rb
441
+ - examples/i18n/uz/Rakefile
442
+ - examples/i18n/uz/features/addition.feature
443
+ - examples/i18n/uz/features/consecutive_calculations.feature
444
+ - examples/i18n/uz/features/division.feature
445
+ - examples/i18n/uz/features/step_definitons/calculator_steps.rb
446
+ - examples/i18n/uz/features/support/env.rb
447
+ - examples/i18n/uz/features/support/world.rb
448
+ - examples/i18n/uz/lib/calculator.rb
449
+ - examples/i18n/zh-CN/Rakefile
450
+ - examples/i18n/zh-CN/features/addition.feature
451
+ - examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb
452
+ - examples/i18n/zh-CN/lib/calculator.rb
453
+ - examples/i18n/zh-TW/.gitignore
454
+ - examples/i18n/zh-TW/Rakefile
455
+ - examples/i18n/zh-TW/features/addition.feature
456
+ - examples/i18n/zh-TW/features/division.feature
457
+ - examples/i18n/zh-TW/features/step_definitons/calculator_steps.rb
458
+ - examples/i18n/zh-TW/lib/calculator.rb
459
+ - examples/python/README.textile
460
+ - examples/python/Rakefile
461
+ - examples/python/features/fibonacci.feature
462
+ - examples/python/features/step_definitions/fib_steps.py
463
+ - examples/python/lib/.gitignore
464
+ - examples/python/lib/fib.py
465
+ - examples/ramaze/README.textile
466
+ - examples/ramaze/Rakefile
467
+ - examples/ramaze/app.rb
468
+ - examples/ramaze/features/add.feature
469
+ - examples/ramaze/features/step_definitions/add_steps.rb
470
+ - examples/ramaze/features/support/env.rb
471
+ - examples/ramaze/layout/default.html.erb
472
+ - examples/ramaze/view/index.html.erb
473
+ - examples/rspec_doubles/Rakefile
474
+ - examples/rspec_doubles/features/mocking.feature
475
+ - examples/rspec_doubles/features/step_definitions/calvin_steps.rb
476
+ - examples/rspec_doubles/features/support/env.rb
477
+ - examples/ruby2python/README.textile
478
+ - examples/ruby2python/Rakefile
479
+ - examples/ruby2python/features/fibonacci.feature
480
+ - examples/ruby2python/features/step_definitions/fib_steps.rb
481
+ - examples/ruby2python/features/support/env.rb
482
+ - examples/ruby2python/lib/.gitignore
483
+ - examples/ruby2python/lib/fib.py
484
+ - examples/sinatra/README.textile
485
+ - examples/sinatra/Rakefile
486
+ - examples/sinatra/app.rb
487
+ - examples/sinatra/features/add.feature
488
+ - examples/sinatra/features/step_definitions/add_steps.rb
489
+ - examples/sinatra/features/support/env.rb
490
+ - examples/sinatra/views/add.erb
491
+ - examples/sinatra/views/layout.erb
492
+ - examples/tcl/README.textile
493
+ - examples/tcl/Rakefile
494
+ - examples/tcl/features/fibonnacci.feature
495
+ - examples/tcl/features/step_definitions/fib_steps.rb
496
+ - examples/tcl/features/support/env.rb
497
+ - examples/tcl/src/fib.tcl
498
+ - examples/test_unit/Rakefile
499
+ - examples/test_unit/features/step_definitions/test_unit_steps.rb
500
+ - examples/test_unit/features/test_unit.feature
501
+ - examples/v8/Rakefile
502
+ - examples/v8/features/fibonacci.feature
503
+ - examples/v8/features/step_definitions/fib_steps.js
504
+ - examples/v8/features/support/env.js
505
+ - examples/v8/lib/fibonacci.js
506
+ - examples/watir/.gitignore
507
+ - examples/watir/README.textile
508
+ - examples/watir/Rakefile
509
+ - examples/watir/cucumber.yml
510
+ - examples/watir/features/search.feature
511
+ - examples/watir/features/step_definitions/search_steps.rb
512
+ - examples/watir/features/support/env.rb
513
+ - examples/watir/features/support/screenshots.rb
514
+ - features/background.feature
515
+ - features/custom_formatter.feature
516
+ - features/execute_with_tag_filter.feature
517
+ - features/hooks.feature
518
+ - features/json_formatter.feature
519
+ - features/stats_formatters.feature
520
+ - features/step_definitions/cucumber_steps.rb
521
+ - features/support/env.rb
522
+ - features/tagged_hooks.feature
523
+ - fixtures/json/features/background.feature
524
+ - fixtures/json/features/embed.feature
525
+ - fixtures/json/features/one_passing_one_failing.feature
526
+ - fixtures/json/features/step_definitions/steps.rb
527
+ - fixtures/json/features/tables.feature
528
+ - fixtures/junit/features/one_passing_one_failing.feature
529
+ - fixtures/junit/features/pending.feature
530
+ - fixtures/junit/features/step_definitions/steps.rb
531
+ - fixtures/self_test/.gitignore
532
+ - fixtures/self_test/README.textile
533
+ - fixtures/self_test/Rakefile
534
+ - fixtures/self_test/features/call_undefined_step_from_step_def.feature
535
+ - fixtures/self_test/features/failing_expectation.feature
536
+ - fixtures/self_test/features/lots_of_undefined.feature
537
+ - fixtures/self_test/features/multiline_name.feature
538
+ - fixtures/self_test/features/outline_sample.feature
539
+ - fixtures/self_test/features/sample.feature
540
+ - fixtures/self_test/features/search_sample.feature
541
+ - fixtures/self_test/features/step_definitions/sample_steps.rb
542
+ - fixtures/self_test/features/support/env.rb
543
+ - fixtures/self_test/features/tags_sample.feature
544
+ - fixtures/self_test/features/tons_of_cukes.feature
545
+ - fixtures/self_test/features/undefined_multiline_args.feature
546
+ - fixtures/self_test/list-of-features.txt
547
+ - fixtures/steps_library/features/step_definitions/steps_lib1.rb
548
+ - fixtures/steps_library/features/step_definitions/steps_lib2.rb
549
+ - fixtures/tickets/Rakefile
550
+ - fixtures/tickets/features.html
551
+ - fixtures/tickets/features/172.feature
552
+ - fixtures/tickets/features/177/1.feature
553
+ - fixtures/tickets/features/177/2.feature
554
+ - fixtures/tickets/features/177/3.feature
555
+ - fixtures/tickets/features/180.feature
556
+ - fixtures/tickets/features/229/tagged_hooks.feature
557
+ - fixtures/tickets/features/229/tagged_hooks.rb
558
+ - fixtures/tickets/features/236.feature
559
+ - fixtures/tickets/features/241.feature
560
+ - fixtures/tickets/features/246.feature
561
+ - fixtures/tickets/features/248.feature
562
+ - fixtures/tickets/features/270/back.feature
563
+ - fixtures/tickets/features/270/back.steps.rb
564
+ - fixtures/tickets/features/272/hooks.feature
565
+ - fixtures/tickets/features/272/hooks_steps.rb
566
+ - fixtures/tickets/features/279/py_string_indent.feature
567
+ - fixtures/tickets/features/279/py_string_indent.steps.rb
568
+ - fixtures/tickets/features/279/wrong.feature_
569
+ - fixtures/tickets/features/301/filter_background_tagged_hooks.feature
570
+ - fixtures/tickets/features/301/filter_background_tagged_hooks_steps.rb
571
+ - fixtures/tickets/features/306/only_background.feature
572
+ - fixtures/tickets/features/around_timeout.feature
573
+ - fixtures/tickets/features/gherkin_67.feature
574
+ - fixtures/tickets/features/gherkin_68.feature
575
+ - fixtures/tickets/features/half_manual.feature
576
+ - fixtures/tickets/features/lib/eatting_machine.rb
577
+ - fixtures/tickets/features/lib/pantry.rb
578
+ - fixtures/tickets/features/scenario_outline.feature
579
+ - fixtures/tickets/features/step_definitons/246_steps.rb
580
+ - fixtures/tickets/features/step_definitons/248_steps.rb
581
+ - fixtures/tickets/features/step_definitons/around_timeout_steps.rb
582
+ - fixtures/tickets/features/step_definitons/half_manual_steps.rb
583
+ - fixtures/tickets/features/step_definitons/scenario_outline_steps.rb
584
+ - fixtures/tickets/features/step_definitons/tickets_steps.rb
585
+ - fixtures/tickets/features/table_diffing.feature
586
+ - fixtures/tickets/features/tickets.feature
587
+ - gem_tasks/contributors.rake
588
+ - gem_tasks/cucumber.rake
589
+ - gem_tasks/environment.rake
590
+ - gem_tasks/examples.rake
591
+ - gem_tasks/fix_cr_lf.rake
592
+ - gem_tasks/flog.rake
593
+ - gem_tasks/rspec.rake
594
+ - gem_tasks/sass.rake
595
+ - gem_tasks/sdoc.rake
596
+ - legacy_features/announce.feature
597
+ - legacy_features/api/list_step_defs_as_json.feature
598
+ - legacy_features/api/run_cli_main_with_existing_runtime.feature
599
+ - legacy_features/around_hooks.feature
600
+ - legacy_features/bug_371.feature
601
+ - legacy_features/bug_464.feature
602
+ - legacy_features/bug_475.feature
603
+ - legacy_features/bug_585_tab_indentation.feature
604
+ - legacy_features/bug_600.feature
605
+ - legacy_features/call_steps_from_stepdefs.feature
606
+ - legacy_features/cucumber_cli.feature
607
+ - legacy_features/cucumber_cli_outlines.feature
608
+ - legacy_features/default_snippets.feature
609
+ - legacy_features/diffing.feature
610
+ - legacy_features/drb_server_integration.feature
611
+ - legacy_features/exception_in_after_block.feature
612
+ - legacy_features/exception_in_after_step_block.feature
613
+ - legacy_features/exception_in_before_block.feature
614
+ - legacy_features/exclude_files.feature
615
+ - legacy_features/expand.feature
616
+ - legacy_features/html_formatter.feature
617
+ - legacy_features/html_formatter/a.html
618
+ - legacy_features/junit_formatter.feature
619
+ - legacy_features/language_from_header.feature
620
+ - legacy_features/language_help.feature
621
+ - legacy_features/listener_debugger_formatter.feature
622
+ - legacy_features/multiline_names.feature
623
+ - legacy_features/post_configuration_hook.feature
624
+ - legacy_features/profiles.feature
625
+ - legacy_features/rake_task.feature
626
+ - legacy_features/report_called_undefined_steps.feature
627
+ - legacy_features/rerun_formatter.feature
628
+ - legacy_features/simplest.feature
629
+ - legacy_features/snippet.feature
630
+ - legacy_features/snippets_when_using_star_keyword.feature
631
+ - legacy_features/step_definitions/cucumber_steps.rb
632
+ - legacy_features/step_definitions/extra_steps.rb
633
+ - legacy_features/step_definitions/simplest_steps.rb
634
+ - legacy_features/step_definitions/wire_steps.rb
635
+ - legacy_features/support/env.rb
636
+ - legacy_features/support/env.rb.simplest
637
+ - legacy_features/support/fake_wire_server.rb
638
+ - legacy_features/table_diffing.feature
639
+ - legacy_features/table_mapping.feature
640
+ - legacy_features/transform.feature
641
+ - legacy_features/unicode_table.feature
642
+ - legacy_features/wire_protocol.feature
643
+ - legacy_features/wire_protocol_table_diffing.feature
644
+ - legacy_features/wire_protocol_tags.feature
645
+ - legacy_features/wire_protocol_timeouts.feature
646
+ - legacy_features/work_in_progress.feature
647
+ - lib/README.rdoc
648
+ - lib/autotest/cucumber.rb
649
+ - lib/autotest/cucumber_mixin.rb
650
+ - lib/autotest/cucumber_rails.rb
651
+ - lib/autotest/cucumber_rails_rspec.rb
652
+ - lib/autotest/cucumber_rails_rspec2.rb
653
+ - lib/autotest/cucumber_rspec.rb
654
+ - lib/autotest/cucumber_rspec2.rb
655
+ - lib/autotest/discover.rb
656
+ - lib/cucumber.rb
657
+ - lib/cucumber/ast.rb
658
+ - lib/cucumber/ast/background.rb
659
+ - lib/cucumber/ast/comment.rb
660
+ - lib/cucumber/ast/examples.rb
661
+ - lib/cucumber/ast/feature.rb
662
+ - lib/cucumber/ast/feature_element.rb
663
+ - lib/cucumber/ast/features.rb
664
+ - lib/cucumber/ast/outline_table.rb
665
+ - lib/cucumber/ast/py_string.rb
666
+ - lib/cucumber/ast/scenario.rb
667
+ - lib/cucumber/ast/scenario_outline.rb
668
+ - lib/cucumber/ast/step.rb
669
+ - lib/cucumber/ast/step_collection.rb
670
+ - lib/cucumber/ast/step_invocation.rb
671
+ - lib/cucumber/ast/table.rb
672
+ - lib/cucumber/ast/tags.rb
673
+ - lib/cucumber/ast/tree_walker.rb
674
+ - lib/cucumber/ast/visitor.rb
675
+ - lib/cucumber/broadcaster.rb
676
+ - lib/cucumber/cli/configuration.rb
677
+ - lib/cucumber/cli/drb_client.rb
678
+ - lib/cucumber/cli/main.rb
679
+ - lib/cucumber/cli/options.rb
680
+ - lib/cucumber/cli/profile_loader.rb
681
+ - lib/cucumber/configuration.rb
682
+ - lib/cucumber/constantize.rb
683
+ - lib/cucumber/core_ext/disable_mini_unit_autorun.rb
684
+ - lib/cucumber/core_ext/instance_exec.rb
685
+ - lib/cucumber/core_ext/proc.rb
686
+ - lib/cucumber/core_ext/string.rb
687
+ - lib/cucumber/errors.rb
688
+ - lib/cucumber/feature_file.rb
689
+ - lib/cucumber/formatter/ansicolor.rb
690
+ - lib/cucumber/formatter/console.rb
691
+ - lib/cucumber/formatter/cucumber.css
692
+ - lib/cucumber/formatter/cucumber.sass
693
+ - lib/cucumber/formatter/debug.rb
694
+ - lib/cucumber/formatter/duration.rb
695
+ - lib/cucumber/formatter/gherkin_formatter_adapter.rb
696
+ - lib/cucumber/formatter/gpretty.rb
697
+ - lib/cucumber/formatter/html.rb
698
+ - lib/cucumber/formatter/io.rb
699
+ - lib/cucumber/formatter/jquery-min.js
700
+ - lib/cucumber/formatter/json.rb
701
+ - lib/cucumber/formatter/json_pretty.rb
702
+ - lib/cucumber/formatter/junit.rb
703
+ - lib/cucumber/formatter/ordered_xml_markup.rb
704
+ - lib/cucumber/formatter/pdf.rb
705
+ - lib/cucumber/formatter/pretty.rb
706
+ - lib/cucumber/formatter/progress.rb
707
+ - lib/cucumber/formatter/rerun.rb
708
+ - lib/cucumber/formatter/stepdefs.rb
709
+ - lib/cucumber/formatter/steps.rb
710
+ - lib/cucumber/formatter/summary.rb
711
+ - lib/cucumber/formatter/unicode.rb
712
+ - lib/cucumber/formatter/usage.rb
713
+ - lib/cucumber/js_support/js_dsl.js
714
+ - lib/cucumber/js_support/js_language.rb
715
+ - lib/cucumber/js_support/js_snippets.rb
716
+ - lib/cucumber/language_support.rb
717
+ - lib/cucumber/language_support/language_methods.rb
718
+ - lib/cucumber/parser.rb
719
+ - lib/cucumber/parser/gherkin_builder.rb
720
+ - lib/cucumber/platform.rb
721
+ - lib/cucumber/py_support/py_dsl.py
722
+ - lib/cucumber/py_support/py_language.py
723
+ - lib/cucumber/py_support/py_language.rb
724
+ - lib/cucumber/rake/task.rb
725
+ - lib/cucumber/rb_support/rb_dsl.rb
726
+ - lib/cucumber/rb_support/rb_hook.rb
727
+ - lib/cucumber/rb_support/rb_language.rb
728
+ - lib/cucumber/rb_support/rb_step_definition.rb
729
+ - lib/cucumber/rb_support/rb_transform.rb
730
+ - lib/cucumber/rb_support/rb_world.rb
731
+ - lib/cucumber/rb_support/regexp_argument_matcher.rb
732
+ - lib/cucumber/rspec/disable_option_parser.rb
733
+ - lib/cucumber/rspec/doubles.rb
734
+ - lib/cucumber/runtime.rb
735
+ - lib/cucumber/runtime/features_loader.rb
736
+ - lib/cucumber/runtime/for_programming_languages.rb
737
+ - lib/cucumber/runtime/results.rb
738
+ - lib/cucumber/runtime/support_code.rb
739
+ - lib/cucumber/runtime/user_interface.rb
740
+ - lib/cucumber/step_argument.rb
741
+ - lib/cucumber/step_definition_light.rb
742
+ - lib/cucumber/step_definitions.rb
743
+ - lib/cucumber/step_match.rb
744
+ - lib/cucumber/step_mother.rb
745
+ - lib/cucumber/wire_support/configuration.rb
746
+ - lib/cucumber/wire_support/connection.rb
747
+ - lib/cucumber/wire_support/request_handler.rb
748
+ - lib/cucumber/wire_support/wire_exception.rb
749
+ - lib/cucumber/wire_support/wire_language.rb
750
+ - lib/cucumber/wire_support/wire_packet.rb
751
+ - lib/cucumber/wire_support/wire_protocol.rb
752
+ - lib/cucumber/wire_support/wire_protocol/requests.rb
753
+ - lib/cucumber/wire_support/wire_step_definition.rb
754
+ - spec/cucumber/ast/background_spec.rb
755
+ - spec/cucumber/ast/feature_factory.rb
756
+ - spec/cucumber/ast/feature_spec.rb
757
+ - spec/cucumber/ast/outline_table_spec.rb
758
+ - spec/cucumber/ast/py_string_spec.rb
759
+ - spec/cucumber/ast/scenario_outline_spec.rb
760
+ - spec/cucumber/ast/scenario_spec.rb
761
+ - spec/cucumber/ast/step_spec.rb
762
+ - spec/cucumber/ast/table_spec.rb
763
+ - spec/cucumber/ast/tree_walker_spec.rb
764
+ - spec/cucumber/broadcaster_spec.rb
765
+ - spec/cucumber/cli/configuration_spec.rb
766
+ - spec/cucumber/cli/drb_client_spec.rb
767
+ - spec/cucumber/cli/main_spec.rb
768
+ - spec/cucumber/cli/options_spec.rb
769
+ - spec/cucumber/cli/profile_loader_spec.rb
770
+ - spec/cucumber/configuration_spec.rb
771
+ - spec/cucumber/core_ext/proc_spec.rb
772
+ - spec/cucumber/formatter/ansicolor_spec.rb
773
+ - spec/cucumber/formatter/duration_spec.rb
774
+ - spec/cucumber/formatter/html_spec.rb
775
+ - spec/cucumber/formatter/junit_spec.rb
776
+ - spec/cucumber/formatter/progress_spec.rb
777
+ - spec/cucumber/formatter/spec_helper.rb
778
+ - spec/cucumber/rb_support/rb_language_spec.rb
779
+ - spec/cucumber/rb_support/rb_step_definition_spec.rb
780
+ - spec/cucumber/rb_support/regexp_argument_matcher_spec.rb
781
+ - spec/cucumber/runtime/support_code_spec.rb
782
+ - spec/cucumber/runtime_spec.rb
783
+ - spec/cucumber/sell_cucumbers.feature
784
+ - spec/cucumber/step_match_spec.rb
785
+ - spec/cucumber/wire_support/configuration_spec.rb
786
+ - spec/cucumber/wire_support/connection_spec.rb
787
+ - spec/cucumber/wire_support/wire_exception_spec.rb
788
+ - spec/cucumber/wire_support/wire_language_spec.rb
789
+ - spec/cucumber/wire_support/wire_packet_spec.rb
790
+ - spec/cucumber/wire_support/wire_step_definition_spec.rb
791
+ - spec/cucumber/world/pending_spec.rb
792
+ - spec/spec_helper.rb
793
+ has_rdoc: true
794
+ homepage: http://cukes.info
795
+ licenses: []
796
+
797
+ post_install_message: |+
798
+
799
+ (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
800
+
801
+ Thank you for installing cucumber-0.10.0.
802
+ Please be sure to read http://wiki.github.com/aslakhellesoy/cucumber/upgrading
803
+ for important information about this release. Happy cuking!
804
+
805
+ (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::) (::)
806
+
807
+ rdoc_options:
808
+ - --charset=UTF-8
809
+ require_paths:
810
+ - lib
811
+ required_ruby_version: !ruby/object:Gem::Requirement
812
+ none: false
813
+ requirements:
814
+ - - ">="
815
+ - !ruby/object:Gem::Version
816
+ hash: 3
817
+ segments:
818
+ - 0
819
+ version: "0"
820
+ required_rubygems_version: !ruby/object:Gem::Requirement
821
+ none: false
822
+ requirements:
823
+ - - ">="
824
+ - !ruby/object:Gem::Version
825
+ hash: 3
826
+ segments:
827
+ - 0
828
+ version: "0"
829
+ requirements: []
830
+
831
+ rubyforge_project:
832
+ rubygems_version: 1.3.7
833
+ signing_key:
834
+ specification_version: 3
835
+ summary: cucumber-0.10.1
836
+ test_files:
837
+ - features/background.feature
838
+ - features/custom_formatter.feature
839
+ - features/execute_with_tag_filter.feature
840
+ - features/hooks.feature
841
+ - features/json_formatter.feature
842
+ - features/stats_formatters.feature
843
+ - features/step_definitions/cucumber_steps.rb
844
+ - features/support/env.rb
845
+ - features/tagged_hooks.feature
846
+ - spec/cucumber/ast/background_spec.rb
847
+ - spec/cucumber/ast/feature_factory.rb
848
+ - spec/cucumber/ast/feature_spec.rb
849
+ - spec/cucumber/ast/outline_table_spec.rb
850
+ - spec/cucumber/ast/py_string_spec.rb
851
+ - spec/cucumber/ast/scenario_outline_spec.rb
852
+ - spec/cucumber/ast/scenario_spec.rb
853
+ - spec/cucumber/ast/step_spec.rb
854
+ - spec/cucumber/ast/table_spec.rb
855
+ - spec/cucumber/ast/tree_walker_spec.rb
856
+ - spec/cucumber/broadcaster_spec.rb
857
+ - spec/cucumber/cli/configuration_spec.rb
858
+ - spec/cucumber/cli/drb_client_spec.rb
859
+ - spec/cucumber/cli/main_spec.rb
860
+ - spec/cucumber/cli/options_spec.rb
861
+ - spec/cucumber/cli/profile_loader_spec.rb
862
+ - spec/cucumber/configuration_spec.rb
863
+ - spec/cucumber/core_ext/proc_spec.rb
864
+ - spec/cucumber/formatter/ansicolor_spec.rb
865
+ - spec/cucumber/formatter/duration_spec.rb
866
+ - spec/cucumber/formatter/html_spec.rb
867
+ - spec/cucumber/formatter/junit_spec.rb
868
+ - spec/cucumber/formatter/progress_spec.rb
869
+ - spec/cucumber/formatter/spec_helper.rb
870
+ - spec/cucumber/rb_support/rb_language_spec.rb
871
+ - spec/cucumber/rb_support/rb_step_definition_spec.rb
872
+ - spec/cucumber/rb_support/regexp_argument_matcher_spec.rb
873
+ - spec/cucumber/runtime/support_code_spec.rb
874
+ - spec/cucumber/runtime_spec.rb
875
+ - spec/cucumber/sell_cucumbers.feature
876
+ - spec/cucumber/step_match_spec.rb
877
+ - spec/cucumber/wire_support/configuration_spec.rb
878
+ - spec/cucumber/wire_support/connection_spec.rb
879
+ - spec/cucumber/wire_support/wire_exception_spec.rb
880
+ - spec/cucumber/wire_support/wire_language_spec.rb
881
+ - spec/cucumber/wire_support/wire_packet_spec.rb
882
+ - spec/cucumber/wire_support/wire_step_definition_spec.rb
883
+ - spec/cucumber/world/pending_spec.rb
884
+ - spec/spec_helper.rb