kosmas58-cucumber 0.1.16.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (271) hide show
  1. data/History.txt +389 -0
  2. data/License.txt +20 -0
  3. data/Manifest.txt +270 -0
  4. data/README.txt +4 -0
  5. data/Rakefile +9 -0
  6. data/bin/cucumber +6 -0
  7. data/config/hoe.rb +70 -0
  8. data/config/requirements.rb +15 -0
  9. data/cucumber.yml +3 -0
  10. data/examples/calculator_ruby_features/Rakefile +6 -0
  11. data/examples/calculator_ruby_features/features/addition.rb +39 -0
  12. data/examples/calculator_ruby_features/features/step_definitons/calculator_steps.rb +43 -0
  13. data/examples/cs/README.textile +1 -0
  14. data/examples/cs/Rakefile +12 -0
  15. data/examples/cs/compile.bat +1 -0
  16. data/examples/cs/features/addition.feature +16 -0
  17. data/examples/cs/features/step_definitons/calculator_steps.rb +19 -0
  18. data/examples/cs/src/demo/Calculator.cs +20 -0
  19. data/examples/dos_line_endings/Rakefile +6 -0
  20. data/examples/dos_line_endings/features/dos_line_endings.feature +9 -0
  21. data/examples/i18n/README.textile +18 -0
  22. data/examples/i18n/Rakefile +32 -0
  23. data/examples/i18n/ar/Rakefile +6 -0
  24. data/examples/i18n/ar/features/addition.feature +17 -0
  25. data/examples/i18n/ar/features/step_definitons/calculator_steps.rb +33 -0
  26. data/examples/i18n/ar/lib/calculator.rb +10 -0
  27. data/examples/i18n/da/Rakefile +6 -0
  28. data/examples/i18n/da/features/step_definitons/kalkulator_steps.rb +24 -0
  29. data/examples/i18n/da/features/summering.feature +17 -0
  30. data/examples/i18n/da/lib/kalkulator.rb +11 -0
  31. data/examples/i18n/de/Rakefile +6 -0
  32. data/examples/i18n/de/features/addition.feature +16 -0
  33. data/examples/i18n/de/features/division.feature +9 -0
  34. data/examples/i18n/de/features/step_definitons/calculator_steps.rb +24 -0
  35. data/examples/i18n/de/lib/calculator.rb +14 -0
  36. data/examples/i18n/en/Rakefile +6 -0
  37. data/examples/i18n/en/features/addition.feature +16 -0
  38. data/examples/i18n/en/features/division.feature +9 -0
  39. data/examples/i18n/en/features/step_definitons/calculator_steps.rb +24 -0
  40. data/examples/i18n/en/lib/calculator.rb +14 -0
  41. data/examples/i18n/es/Rakefile +6 -0
  42. data/examples/i18n/es/features/adicion.feature +17 -0
  43. data/examples/i18n/es/features/step_definitons/calculador_steps.rb +24 -0
  44. data/examples/i18n/es/lib/calculador.rb +11 -0
  45. data/examples/i18n/et/Rakefile +6 -0
  46. data/examples/i18n/et/features/liitmine.feature +16 -0
  47. data/examples/i18n/et/features/step_definitions/kalkulaator_steps.rb +24 -0
  48. data/examples/i18n/et/lib/kalkulaator.rb +10 -0
  49. data/examples/i18n/fi/Rakefile +6 -0
  50. data/examples/i18n/fi/features/jakolasku.feature +9 -0
  51. data/examples/i18n/fi/features/step_definitons/laskin_steps.rb +24 -0
  52. data/examples/i18n/fi/features/yhteenlasku.feature +16 -0
  53. data/examples/i18n/fi/lib/laskin.rb +14 -0
  54. data/examples/i18n/fr/Rakefile +6 -0
  55. data/examples/i18n/fr/features/addition.feature +15 -0
  56. data/examples/i18n/fr/features/step_definitions/calculatrice_steps.rb +27 -0
  57. data/examples/i18n/fr/lib/calculatrice.rb +10 -0
  58. data/examples/i18n/id/Rakefile +6 -0
  59. data/examples/i18n/id/features/addition.feature +16 -0
  60. data/examples/i18n/id/features/division.feature +9 -0
  61. data/examples/i18n/id/features/step_definitons/calculator_steps.rb +24 -0
  62. data/examples/i18n/id/lib/calculator.rb +14 -0
  63. data/examples/i18n/it/Rakefile +6 -0
  64. data/examples/i18n/it/features/somma.feature +10 -0
  65. data/examples/i18n/it/features/step_definitons/calcolatrice_steps.rb +24 -0
  66. data/examples/i18n/it/lib/calcolatrice.rb +11 -0
  67. data/examples/i18n/ja/README.txt +5 -0
  68. data/examples/i18n/ja/Rakefile +6 -0
  69. data/examples/i18n/ja/features/addition.feature +16 -0
  70. data/examples/i18n/ja/features/division.feature +9 -0
  71. data/examples/i18n/ja/features/step_definitons/calculator_steps.rb +25 -0
  72. data/examples/i18n/ja/lib/calculator.rb +14 -0
  73. data/examples/i18n/ko/Rakefile +6 -0
  74. data/examples/i18n/ko/features/addition.feature +16 -0
  75. data/examples/i18n/ko/features/division.feature +10 -0
  76. data/examples/i18n/ko/features/step_definitons/calculator_steps.rb +24 -0
  77. data/examples/i18n/ko/lib/calculator.rb +14 -0
  78. data/examples/i18n/lt/Rakefile +6 -0
  79. data/examples/i18n/lt/features/addition.feature +16 -0
  80. data/examples/i18n/lt/features/division.feature +9 -0
  81. data/examples/i18n/lt/features/step_definitons/calculator_steps.rb +24 -0
  82. data/examples/i18n/lt/lib/calculator.rb +14 -0
  83. data/examples/i18n/no/Rakefile +6 -0
  84. data/examples/i18n/no/features/step_definitons/kalkulator_steps.rb +24 -0
  85. data/examples/i18n/no/features/summering.feature +17 -0
  86. data/examples/i18n/no/lib/kalkulator.rb +11 -0
  87. data/examples/i18n/pt/Rakefile +6 -0
  88. data/examples/i18n/pt/features/adicao.feature +10 -0
  89. data/examples/i18n/pt/features/step_definitions/calculadora_steps.rb +24 -0
  90. data/examples/i18n/pt/lib/calculadora.rb +10 -0
  91. data/examples/i18n/ro/Rakefile +6 -0
  92. data/examples/i18n/ro/features/step_definitons/calculator_steps.rb +24 -0
  93. data/examples/i18n/ro/features/suma.feature +10 -0
  94. data/examples/i18n/ro/lib/calculator.rb +11 -0
  95. data/examples/i18n/se/Rakefile +6 -0
  96. data/examples/i18n/se/features/step_definitons/kalkulator_steps.rb +24 -0
  97. data/examples/i18n/se/features/summering.feature +17 -0
  98. data/examples/i18n/se/lib/kalkulator.rb +11 -0
  99. data/examples/i18n/zh-CN/Rakefile +6 -0
  100. data/examples/i18n/zh-CN/features/addition.feature +17 -0
  101. data/examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb +26 -0
  102. data/examples/i18n/zh-CN/lib/calculator.rb +10 -0
  103. data/examples/java/README.textile +22 -0
  104. data/examples/java/Rakefile +12 -0
  105. data/examples/java/features/hello.feature +11 -0
  106. data/examples/java/features/step_definitons/hello_steps.rb +25 -0
  107. data/examples/java/features/step_definitons/tree_steps.rb +14 -0
  108. data/examples/java/features/tree.feature +9 -0
  109. data/examples/selenium/Rakefile +6 -0
  110. data/examples/selenium/features/search.feature +9 -0
  111. data/examples/selenium/features/step_definitons/stories_steps.rb +40 -0
  112. data/examples/self_test/README.textile +3 -0
  113. data/examples/self_test/features/outline_sample.feature +9 -0
  114. data/examples/self_test/features/sample.feature +14 -0
  115. data/examples/self_test/features/step_definitions/sample_steps.rb +13 -0
  116. data/examples/test_unit/Rakefile +6 -0
  117. data/examples/test_unit/features/step_definitions/test_unit_steps.rb +26 -0
  118. data/examples/test_unit/features/test_unit.feature +9 -0
  119. data/examples/tickets/Rakefile +11 -0
  120. data/examples/tickets/cucumber.yml +2 -0
  121. data/examples/tickets/features/lib/eatting_machine.rb +18 -0
  122. data/examples/tickets/features/lib/pantry.rb +20 -0
  123. data/examples/tickets/features/scenario_outline.feature +90 -0
  124. data/examples/tickets/features/step_definitons/scenario_outline_steps.rb +42 -0
  125. data/examples/tickets/features/step_definitons/tickets_steps.rb +36 -0
  126. data/examples/tickets/features/tickets.feature +24 -0
  127. data/examples/watir/README.textile +16 -0
  128. data/examples/watir/Rakefile +6 -0
  129. data/examples/watir/features/search.feature +9 -0
  130. data/examples/watir/features/step_definitons/search_steps.rb +24 -0
  131. data/examples/watir/features/support/env.rb +32 -0
  132. data/features/cucumber_cli.feature +223 -0
  133. data/features/cucumber_cli_outlines.feature +73 -0
  134. data/features/step_definitions/cucumber_steps.rb +27 -0
  135. data/features/step_definitions/extra_steps.rb +2 -0
  136. data/features/support/env.rb +7 -0
  137. data/gem_tasks/deployment.rake +11 -0
  138. data/gem_tasks/environment.rake +7 -0
  139. data/gem_tasks/features.rake +9 -0
  140. data/gem_tasks/fix_cr_lf.rake +10 -0
  141. data/gem_tasks/flog.rake +4 -0
  142. data/gem_tasks/gemspec.rake +10 -0
  143. data/gem_tasks/rspec.rake +38 -0
  144. data/gem_tasks/treetop.rake +41 -0
  145. data/gem_tasks/yard.rake +8 -0
  146. data/lib/autotest/cucumber.rb +6 -0
  147. data/lib/autotest/cucumber_mixin.rb +130 -0
  148. data/lib/autotest/cucumber_rails.rb +6 -0
  149. data/lib/autotest/cucumber_rails_rspec.rb +6 -0
  150. data/lib/autotest/cucumber_rspec.rb +6 -0
  151. data/lib/autotest/discover.rb +9 -0
  152. data/lib/cucumber/broadcaster.rb +20 -0
  153. data/lib/cucumber/cli.rb +355 -0
  154. data/lib/cucumber/core_ext/exception.rb +20 -0
  155. data/lib/cucumber/core_ext/proc.rb +69 -0
  156. data/lib/cucumber/core_ext/string.rb +29 -0
  157. data/lib/cucumber/executor.rb +205 -0
  158. data/lib/cucumber/formatters/ansicolor.rb +105 -0
  159. data/lib/cucumber/formatters/autotest_formatter.rb +23 -0
  160. data/lib/cucumber/formatters/cucumber.css +132 -0
  161. data/lib/cucumber/formatters/cucumber.js +11 -0
  162. data/lib/cucumber/formatters/html_formatter.rb +152 -0
  163. data/lib/cucumber/formatters/jquery.js +32 -0
  164. data/lib/cucumber/formatters/pretty_formatter.rb +285 -0
  165. data/lib/cucumber/formatters/profile_formatter.rb +92 -0
  166. data/lib/cucumber/formatters/progress_formatter.rb +61 -0
  167. data/lib/cucumber/formatters/unicode.rb +35 -0
  168. data/lib/cucumber/formatters.rb +1 -0
  169. data/lib/cucumber/languages.yml +286 -0
  170. data/lib/cucumber/model/table.rb +32 -0
  171. data/lib/cucumber/model.rb +1 -0
  172. data/lib/cucumber/platform.rb +32 -0
  173. data/lib/cucumber/rails/rspec.rb +5 -0
  174. data/lib/cucumber/rails/world.rb +73 -0
  175. data/lib/cucumber/rake/task.rb +112 -0
  176. data/lib/cucumber/step_methods.rb +49 -0
  177. data/lib/cucumber/step_mother.rb +98 -0
  178. data/lib/cucumber/tree/feature.rb +105 -0
  179. data/lib/cucumber/tree/features.rb +21 -0
  180. data/lib/cucumber/tree/given_scenario.rb +13 -0
  181. data/lib/cucumber/tree/scenario.rb +240 -0
  182. data/lib/cucumber/tree/step.rb +173 -0
  183. data/lib/cucumber/tree/table.rb +26 -0
  184. data/lib/cucumber/tree/top_down_visitor.rb +23 -0
  185. data/lib/cucumber/tree.rb +16 -0
  186. data/lib/cucumber/treetop_parser/feature.treetop.erb +254 -0
  187. data/lib/cucumber/treetop_parser/feature_ar.rb +1951 -0
  188. data/lib/cucumber/treetop_parser/feature_cy.rb +1951 -0
  189. data/lib/cucumber/treetop_parser/feature_da.rb +1951 -0
  190. data/lib/cucumber/treetop_parser/feature_de.rb +1951 -0
  191. data/lib/cucumber/treetop_parser/feature_en-lol.rb +1951 -0
  192. data/lib/cucumber/treetop_parser/feature_en-tx.rb +1951 -0
  193. data/lib/cucumber/treetop_parser/feature_en.rb +1951 -0
  194. data/lib/cucumber/treetop_parser/feature_es.rb +1951 -0
  195. data/lib/cucumber/treetop_parser/feature_et.rb +1951 -0
  196. data/lib/cucumber/treetop_parser/feature_fi.rb +1951 -0
  197. data/lib/cucumber/treetop_parser/feature_fr.rb +1951 -0
  198. data/lib/cucumber/treetop_parser/feature_id.rb +1951 -0
  199. data/lib/cucumber/treetop_parser/feature_it.rb +1951 -0
  200. data/lib/cucumber/treetop_parser/feature_ja.rb +1951 -0
  201. data/lib/cucumber/treetop_parser/feature_ko.rb +1951 -0
  202. data/lib/cucumber/treetop_parser/feature_lt.rb +1951 -0
  203. data/lib/cucumber/treetop_parser/feature_nl.rb +1951 -0
  204. data/lib/cucumber/treetop_parser/feature_no.rb +1951 -0
  205. data/lib/cucumber/treetop_parser/feature_parser.rb +36 -0
  206. data/lib/cucumber/treetop_parser/feature_pl.rb +1951 -0
  207. data/lib/cucumber/treetop_parser/feature_pt.rb +1951 -0
  208. data/lib/cucumber/treetop_parser/feature_ro.rb +1951 -0
  209. data/lib/cucumber/treetop_parser/feature_ro2.rb +1951 -0
  210. data/lib/cucumber/treetop_parser/feature_ru.rb +1951 -0
  211. data/lib/cucumber/treetop_parser/feature_se.rb +1951 -0
  212. data/lib/cucumber/treetop_parser/feature_zh-CN.rb +1951 -0
  213. data/lib/cucumber/version.rb +10 -0
  214. data/lib/cucumber/world/pending.rb +22 -0
  215. data/lib/cucumber/world.rb +1 -0
  216. data/lib/cucumber.rb +19 -0
  217. data/rails_generators/cucumber/USAGE +11 -0
  218. data/rails_generators/cucumber/cucumber_generator.rb +31 -0
  219. data/rails_generators/cucumber/templates/cucumber +7 -0
  220. data/rails_generators/cucumber/templates/cucumber.rake +7 -0
  221. data/rails_generators/cucumber/templates/env.rb +16 -0
  222. data/rails_generators/cucumber/templates/paths.rb +12 -0
  223. data/rails_generators/cucumber/templates/webrat_steps.rb +99 -0
  224. data/rails_generators/feature/USAGE +12 -0
  225. data/rails_generators/feature/feature_generator.rb +36 -0
  226. data/rails_generators/feature/templates/feature.erb +31 -0
  227. data/rails_generators/feature/templates/steps.erb +24 -0
  228. data/setup.rb +1585 -0
  229. data/spec/cucumber/broadcaster_spec.rb +27 -0
  230. data/spec/cucumber/cli_spec.rb +521 -0
  231. data/spec/cucumber/core_ext/proc_spec.rb +45 -0
  232. data/spec/cucumber/core_ext/string_spec.rb +34 -0
  233. data/spec/cucumber/executor_spec.rb +382 -0
  234. data/spec/cucumber/formatters/ansicolor_spec.rb +35 -0
  235. data/spec/cucumber/formatters/autotest_formatter_spec.rb +26 -0
  236. data/spec/cucumber/formatters/features.html +269 -0
  237. data/spec/cucumber/formatters/html_formatter_spec.rb +110 -0
  238. data/spec/cucumber/formatters/pretty_formatter_spec.rb +410 -0
  239. data/spec/cucumber/formatters/profile_formatter_spec.rb +197 -0
  240. data/spec/cucumber/formatters/progress_formatter_spec.rb +81 -0
  241. data/spec/cucumber/model/table_spec.rb +32 -0
  242. data/spec/cucumber/rails/stubs/mini_rails.rb +18 -0
  243. data/spec/cucumber/rails/stubs/test_help.rb +1 -0
  244. data/spec/cucumber/rails/world_spec.rb +11 -0
  245. data/spec/cucumber/sell_cucumbers.feature +19 -0
  246. data/spec/cucumber/step_mother_spec.rb +74 -0
  247. data/spec/cucumber/tree/feature_spec.rb +122 -0
  248. data/spec/cucumber/tree/row_scenario_outline_spec.rb +73 -0
  249. data/spec/cucumber/tree/row_scenario_spec.rb +55 -0
  250. data/spec/cucumber/tree/row_step_outline_spec.rb +38 -0
  251. data/spec/cucumber/tree/scenario_outline_spec.rb +50 -0
  252. data/spec/cucumber/tree/scenario_spec.rb +134 -0
  253. data/spec/cucumber/tree/step_outline_spec.rb +17 -0
  254. data/spec/cucumber/tree/step_spec.rb +59 -0
  255. data/spec/cucumber/treetop_parser/empty_feature.feature +4 -0
  256. data/spec/cucumber/treetop_parser/empty_scenario.feature +9 -0
  257. data/spec/cucumber/treetop_parser/empty_scenario_outline.feature +3 -0
  258. data/spec/cucumber/treetop_parser/feature_parser_spec.rb +120 -0
  259. data/spec/cucumber/treetop_parser/fit_scenario.feature +8 -0
  260. data/spec/cucumber/treetop_parser/given_scenario.feature +9 -0
  261. data/spec/cucumber/treetop_parser/invalid_scenario_outlines.feature +7 -0
  262. data/spec/cucumber/treetop_parser/multiline_steps.feature +17 -0
  263. data/spec/cucumber/treetop_parser/multiple_tables.feature +27 -0
  264. data/spec/cucumber/treetop_parser/scenario_outline.feature +16 -0
  265. data/spec/cucumber/treetop_parser/spaces.feature +10 -0
  266. data/spec/cucumber/treetop_parser/test_dos.feature +25 -0
  267. data/spec/cucumber/treetop_parser/with_comments.feature +10 -0
  268. data/spec/cucumber/world/pending_spec.rb +46 -0
  269. data/spec/spec.opts +3 -0
  270. data/spec/spec_helper.rb +21 -0
  271. metadata +363 -0
data/History.txt ADDED
@@ -0,0 +1,389 @@
1
+ === New features
2
+ * Added language as rake option
3
+ * Added GemInstaller config files
4
+ * Added CruiseControl.rb files
5
+
6
+ == 0.1.16.x (Git)
7
+
8
+ Bugfix release.
9
+
10
+ IMPORTANT NOTE FOR RAILS USERS.
11
+ The template used to generate your features/support/env.rb has changed. You have to apply a minor change
12
+ manually for existing Rails projects when you upgrade to this version. Change this:
13
+
14
+ require 'webrat/rspec-rails'
15
+
16
+ to this:
17
+
18
+ require 'webrat/core/matchers'
19
+
20
+ === New features
21
+ * Finnish translation (Tero Tilus)
22
+ * Use Webrat's #contain matcher in generated "I should (not) see" step definitions (Bryan Helmkamp)
23
+
24
+ == Bugfixes
25
+ * Flush output in HTML formatter since JRuby doesnt do it automatically (Diego Carrion)
26
+ * Better handling of ARGV (#169 David Chelimsky, Ben Mabey)
27
+ * Compatibility with ruby-debug (do ARGV.dup in bin/cucumber so it can restart ruby with same args) (Aslak Hellesøy)
28
+
29
+ == 0.1.16 2009-01-19
30
+
31
+ This is a small bugfix release. The most notable improvement is compatibility with Webrat 0.4. Rails/Webrat users should
32
+ upgrade both Cucumber and Webrat gems.
33
+
34
+ === New features
35
+ * Add the #binary= method back to the Rake task. It is needed by merb_cucumber for running the features of a merb app with it's bundled gems. (Thomas Marek)
36
+ * Added a /^When I go to (.+)$/ step definition to webrat_steps.rb and a simple page name to path mapping method (Bryan Helmkamp)
37
+
38
+ === Bugfixes
39
+ * Fix to run single scenarios when the line number specified doesn't correspond to a step (i.e. blank lines or rows) (#160 Luismi Cavallé)
40
+
41
+ === Removed features
42
+
43
+ == 0.1.15 2009-01-08
44
+
45
+ Bugfix release
46
+
47
+ === New features
48
+ * 한국어! (Korean!) (John Hwang)
49
+
50
+ === Bugfixes
51
+ * --dry-run skips running before/after/steps (#147 Ian Dees)
52
+ * Fix a minor bug in the console formatter's summary (David Chelimsky)
53
+ * Better quoting of Scenario names in Autotest (Peter Jaros)
54
+ * Added some small workarounds for unicode handling on Windows (Aslak Hellesøy)
55
+
56
+ == 0.1.14 2009-01-04
57
+
58
+ This is the first release of Cucumber that runs on Ruby 1.9. There are still some encoding-related issues
59
+ with Arabic (ar), Japanese (ja) and Simplified Chinese (zh-CN). Patches are welcome. Other than that -
60
+ a couple of minor bug fixes and polishing.
61
+
62
+ === New features
63
+ * Pretty formatter shows number of scenarios (#139 Joseph Wilk)
64
+ * Rudimentary support for Ruby 1.9. Now it's ok to file Ruby 1.9-related bugs.
65
+
66
+ === Bugfixes
67
+ * Fixed "No such file or directory -- cucumber (LoadError)" bug with AutoTest (Aslak Hellesøy)
68
+ * Fixed `load_missing_constant': uninitialized constant Dispatcher error with Rails (Aslak Hellesøy)
69
+
70
+ === Removed features
71
+ * The #binary= method is gone from the Rake task. It will always point to the binary in the current gem. (Aslak Hellesøy)
72
+
73
+ == 0.1.13 2008-12-20
74
+
75
+ It's time for some new features again. Output is now much better since you can use diffing, tweak
76
+ the output colours and get the full --backtrace if you want. Managing your support/* files became
77
+ a little easier since they are now always loaded before the step definitions. Life became easier
78
+ for Windows users in Norway (and other countries using unicode in the features). Plus several other
79
+ bug fixes.
80
+
81
+ Enjoy!
82
+
83
+ === New features
84
+ * Console output is no longer bold, but regular. Step arguments are bold instead of blold+underlined. (Aslak Hellesøy)
85
+ * Console output can be configured with CUCUMBER_COLORS in your shell. (Aslak Hellesøy)
86
+ * Added new --backtrace option to show full backtrace (Aslak Hellesøy)
87
+ * Enable RSpec's diffing automatically if RSpec is loaded (Aslak Hellesøy)
88
+ * Files in support directories are loaded before any other file (i.e. step definitions.) (#120, Ben Mabey)
89
+ * The Rails features generator got some love and is now tested: http://github.com/aslakhellesoy/cucumber_rails (Aslak Hellesøy)
90
+ * --language is aliased to -l instead of -a (-l became available when --line was refactored) (Aslak Hellesøy)
91
+ * Scenario Outlines which through placeholders in the steps allow control of how scenario table values are used. (#57 Joseph Wilk)
92
+ * Scenario Outlines are now usable in pure ruby (Joseph Wilk)
93
+ * Add support for calling 'pending' from step definitions. (#112 Joseph Wilk)
94
+
95
+ === Bugfixes
96
+ * Make rails before filters work correctly (#122, #129 Guillermo Álvarez Fernández)
97
+ * Proper Unicode support for Windows command shells: Just require cucumber/formatter/unicode in env.rb (Aslak Hellesøy)
98
+ * Fixed disappearing "a" on Windows (#81 Aslak Hellesøy)
99
+ * Fixed a bug where row step outlines were loosing step tables. (#121 Joseph Wilk, Ben Mabey)
100
+ * The Cucumber Autotest plugin now launches JRuby if autotest is run with JRuby (Aslak Hellesøy)
101
+ * Provide helpful and non-confusing error message when specified profile is blank. (#118, Ben Mabey)
102
+ * Improve handling and error messages for malformed cucumber.yml files. (#117, Ben Mabey)
103
+ * document :x run option in command line help (#114, Aslak Hellesøy)
104
+ * Change 'visits' to 'visit' in features generator to comply with new Webrat API (Darius Roberts)
105
+
106
+ === Removed features
107
+
108
+ == 0.1.12 2008-12-04
109
+
110
+ This is the "getting serious with IronRuby release" - largely based on
111
+ "Patrick Gannon":http://www.patrickgannon.net/archive/2008/10/23/bdd-style-feature-tests-using-ironruby-and-rspeccucumber.aspx's
112
+ blog entry.
113
+
114
+ == New features
115
+ * Cucumber works with IronRuby/.NET - http://github.com/aslakhellesoy/cucumber/wikis/ironruby-and-net (Aslak Hellesøy)
116
+
117
+ == Bugfixes
118
+ * Fixed bug which was preventing coloring under Autotest (#111, Alan Larkin)
119
+
120
+ == Removed features
121
+ None
122
+
123
+ == 0.1.11 2008-12-02
124
+
125
+ Bugfix release with a couple of minor additional features to the command line options.
126
+
127
+ === New features
128
+ * Capture output from cucumber in Autotest (Alan Larkin)
129
+ * Update cucumber generator to work with latest Webrat (Bryan Helkamp)
130
+ * CUCUMBR LIKEZ 2 SPEEK WIF KATS. KTHXBAI (Aimee Daniells)
131
+ * Support for dynamically pluggable formatters (#99 Joseph Wilk)
132
+ * --verbose mode to see ruby files and feature files loaded by Cucumber (#106 Joseph Wilk)
133
+
134
+ === Bugfixes
135
+ * The jcode library is not loaded on JRuby/Rails. Workaround for http://tinyurl.com/55uu3u. (Aslak Hellesøy)
136
+ * Support including modules for class passed to --format (#109 Joseph Wilk)
137
+
138
+ === Removed features
139
+ * The cucumber gem no longer depends on the rspec gem. It must be downloaded manually if RSpec is used. (Jeff Rafter)
140
+
141
+ == 0.1.10 2008-11-25
142
+
143
+ This release mostly has smaller bugfixes. The most significant new feature is how
144
+ line numbers are specified. You can now run multiple features at specific lines numbers like this:
145
+
146
+ cucumber foo.feature:15 bar.feature:6:45:111
147
+
148
+ This will run foo.feature at line 15 and bar.feature at line 6, 45 and 111.
149
+
150
+ === New features
151
+ * Added example showing how to use Cucumber with Test::Unit + Matchy instead of RSpec (Aslak Hellesøy)
152
+ * Yield existing world object to World block (#87 Aslak Hellesøy)
153
+ * AUTOFEATURE=tRue works (case insensitive) (Aslak Hellesøy)
154
+ * Initial support for .NET via IronRuby. (Aslak Hellesøy)
155
+ * Lithuanian translation (sauliusgrigaitis)
156
+ * New webrat step defintions to wrap the new selects_time, selects_date, and selects_datetime methods. (Ben Mabey)
157
+ * Try to load webrat gem if it's not installed as a plugin (Aslak Hellesøy)
158
+ * Support example.feature:20 or example.feature:10:20:30 syntax for running features at specific line number(s). (#88 Joseph Wilk)
159
+
160
+ === Bugfixes
161
+ * Windows - all the 'a' characters in the output have gone on strike (#81 Luis Lavena, Joseph Wilk, Aslak Hellesøy)
162
+ * Raise a nice error when encountering step definition without block (#95 Aslak Hellesøy)
163
+ * Features written using Ruby where breaking due to missing a line number (#91 Joseph Wilk)
164
+ * Directly creating a Table meant the scenario table header was never set which was causing a formatter error (#91 Joseph Wilk)
165
+
166
+ === Removed features
167
+ * $KCODE='u' is no longer done automatically. Developers should do that explicitly when needed in step definitions or env.rb.
168
+ * Step definition without a block being treated as pending (#64 Joseph Wilk)
169
+ * The --line option has been removed. Use the new file.feature:line format instead.
170
+
171
+ == 0.1.9 2008-11-12
172
+
173
+ With this release Cucumber supports 19 (!) natural languages:
174
+
175
+ * Arabic
176
+ * Chinese Simplified
177
+ * Danish
178
+ * Dutch
179
+ * Estonian
180
+ * French
181
+ * German
182
+ * Italian
183
+ * Japanese
184
+ * Malay
185
+ * Norwegian
186
+ * Polish
187
+ * Portuguese
188
+ * Romanian
189
+ * Russian
190
+ * Spanish
191
+ * Swedish
192
+ * Texan
193
+ * Welsh
194
+
195
+ Thanks a lot to everyone who has contributed translations. If you don't see your language here, please
196
+ add it: http://github.com/aslakhellesoy/cucumber/wikis/spoken-languages
197
+
198
+ Main functional changes in this release is "Autotest":http://github.com/aslakhellesoy/cucumber/wikis/autotest-integration
199
+ support and how multiline strings work in feature files:
200
+
201
+ # In your .feature file
202
+ Then I should see
203
+ """
204
+ A string
205
+ that "indents"
206
+ and spans
207
+ several lines
208
+
209
+ """
210
+
211
+ # In your steps.rb file
212
+ Then 'I should see' do |text|
213
+ text.should == "A string\n that \"indents\"\nand spans\nseveral lines\n"
214
+ end
215
+
216
+ The triple quotes are used to define the start and end of a string, and it also defines what gets stripped away
217
+ in the inside string. If the triple quotes are indented 4 spaces, then the text within will have the 4 first
218
+ spaces removed too.
219
+
220
+ === New features
221
+ * Added --[no-]color option to force color on or off (Peter Jaros)
222
+ * Step definition without a block will be treated as pending (#64 Joseph Wilk)
223
+ * Added support for Welsh (improvements welcome) (Joseph Wilk)
224
+ * Added --quiet option to hide all development aid output when using Pretty formatter (#69 Joseph Wilk)
225
+ * Added --no-snippets option to hide snippets for pending steps when using Pretty formatter (#69 Joseph Wilk)
226
+ * Added error messages concerning cucumber.yml. (#70 Ben Mabey)
227
+ * Added Autotest support - work in progress... (Peter Jaros)
228
+ * Added new --exclude option (Bryan Helkamp)
229
+ * Added new --scenario option (Peter Jaros)
230
+ * Renamed common_webrat.rb to webrat_steps.rb (Ben Mabey, Aslak Hellesøy)
231
+ * Added new feature[:feature_path] task (Roman Gonzalez)
232
+ * Added support for Polish (Joseph Wilk)
233
+ * Support specifying multiple formatters and multiple outputs (#47 Joseph Wilk)
234
+ * Added support for Japanese. (Kakutani Shintaro)
235
+ * Added support for Texan (improvements welcome). (Aslak Hellesøy)
236
+
237
+ === Bugfixes
238
+ * Pending step snippets should escape special Regexp characters (#82 Joseph Wilk)
239
+ * Scenario without a body shouldn't show up as complete (#63 Josh Knowles)
240
+ * Fixed bug where utf-8 strings where breaking comment alighments. (#79 Joseph Wilk)
241
+ * Fixed next_column_index not resetting after large tables (#60, Barry Mitchelson)
242
+ * The HTML formatter was rendering everything twice. Cannot invoke visit_feature on formatters in executor (#72 Joseph Wilk)
243
+ * Row Scenarios need to support pending? in order for the Profile formatter to work (Joseph Wilk)
244
+ * Snippets are not shown for steps which already have a step definition (#65 Joseph Wilk)
245
+ * Prevent feature/scenario/pending step comments from containing '//' when running features by specifying a directory with a trailing '/' (Joseph Wilk)
246
+ * Scenario tables need spacing after them (#59 Joseph Wilk)
247
+ * Support running scenario table rows when using --line argument (#55 Joseph Wilk)
248
+ * Don't load cucumber.yml unless it exists (Aslak Hellesøy)
249
+ * Fixing bug where specifying line number 1 in a feature which starts with a scenario with a scenario table was raising an error (#56 Joseph Wilk)
250
+
251
+ === Removed features
252
+
253
+
254
+ == 0.1.8 2008-10-18
255
+
256
+ This release extends the support for tables. PLEASE NOTE THAT TABLES ARE STILL EXPERIMENTAL.
257
+ In previous releases it has been possible to use tables to define "more examples" of a scenario i
258
+ n a FIT-style column fixture kind of way. Now you can also use tables as arguments to steps.
259
+
260
+ Tables used to define more examples after a scenario must now be prefixed. In English it looks like this:
261
+
262
+ Feature: Addition
263
+ In order to avoid silly mistakes
264
+ As a math idiot
265
+ I want to be told the sum of two numbers
266
+
267
+ Scenario: Add two numbers
268
+ Given I have entered 50 into the calculator
269
+ And I have entered 70 into the calculator
270
+ When I press add
271
+ Then the result should be 120 on the screen
272
+
273
+ More Examples:
274
+ | input_1 | input_2 | button | output |
275
+ | 20 | 30 | add | 50 |
276
+ | 2 | 5 | add | 7 |
277
+ | 0 | 40 | add | 40 |
278
+
279
+ Languages that are not updated yet will have to use "More Examples" until we get the translations.
280
+
281
+ Tables can also be used as arguments to individual steps. In fact, steps now support a single argument
282
+ that can span several lines. This can be a table or a string.
283
+
284
+ Example:
285
+
286
+ Given the following people exist:
287
+ | name | email | phone |
288
+ | Aslak | aslak@email.com | 123 |
289
+ | Joe | joe@email.com | 234 |
290
+ | Bryan | bryan@email.org | 456 |
291
+ When I search for email.com
292
+ Then I should see:
293
+ | name | email | phone |
294
+ | Aslak | aslak@email.com | 123 |
295
+ | Joe | joe@email.com | 234 |
296
+ And I should see:
297
+ "Some text
298
+ on several lines"
299
+
300
+ The step definitions for such multiline steps must define an extra block argument for the argument:
301
+
302
+ Given /the following people exist:/ do |people_table|
303
+ # people_table is of type Cucumber::Model::Table
304
+ # See RDoc for more info
305
+ end
306
+
307
+ Then /I should see:/ do |string|
308
+ # string is a plain old ruby String with leading spaces on each line removed
309
+ end
310
+
311
+ === New features
312
+ * Added profile formatter. (#35, Joseph Wilk)
313
+ * Added support for Chinese Simplified. (Liming Lian)
314
+ * Added support for Dutch. (Sjoerd Tieleman)
315
+ * Multiline steps are now supported. (#4, Aslak Hellesøy)
316
+ * Tables used to define more examples for a scenario must be prefixed "More Examples" (see languages.yml for other languages)
317
+ * Show the file and line number for scenarios as a comment when displaying with the pretty formatter. (#40, Joseph Wilk)
318
+ * Show the file for the feature as a comment when displaying with the pretty formatter. (#40, Joseph Wilk)
319
+ * Show the feature file and line for pending steps as a comment when displaying with the pretty formatter. (#40, Joseph Wilk)
320
+
321
+ === Bugfixes
322
+ * Fixed speling errors in Spanish (Daniel Cadenas)
323
+ * ActionMailer delivery_method should not be set to test (#41, Luke Melia)
324
+ * Reverse incorrectly ordered args in webrat select step (#43, David Chelimsky)
325
+ * Support comments above the first scenario (#31, Aslak Hellesøy)
326
+ * Fixed the HTML Formatter to use actual values for FIT table headers (#30, Joseph Wilk)
327
+
328
+ === Removed features
329
+ * Removed the /^I go to (.*)$/ step from common_webrat.rb - it's not language agnostic and provides little value.
330
+
331
+ === New features
332
+ * Added new --out option to make it easier to specify output from Rake and cucumber.yml
333
+
334
+ == 0.1.7 2008-10-05
335
+
336
+ This release fixes a few bugs and adds some new features. The most notable features are:
337
+
338
+ === Calling steps from steps
339
+
340
+ Step definitions are a little bit closer to having regular method semantics.
341
+ You define them, but now you can also call them from other steps. Here is an
342
+ example:
343
+
344
+ Given /I am logged in as an (.*) named (.*)$/ do |role, name|
345
+ Given "I am registered as #{role}, #{name}, secret"
346
+ When "I log in with #{name}, secret"
347
+ end
348
+
349
+ Given /I am registered as (.*), (.*), (.*)/ do |role, name, password|
350
+ # (Code removed for brevity)
351
+ end
352
+
353
+ When /I log in with (.*), (.*)/ do |name, password|
354
+ # (Code removed for brevity)
355
+ end
356
+
357
+ This means that steps can be reused in other steps. The GivenScenario feature achieves a similar
358
+ effect (on the scenario level), but this feature is something we're not very happy with, mostly
359
+ because it's not parameterisable. Calling steps from steps is.
360
+
361
+ GivenScenario will still be working several releases, but the plan is to remove it completely in
362
+ the 0.3.0 release.
363
+
364
+ === Seeing where a step is defined
365
+
366
+ Prior to this release it could be hard to find out where the ruby step definition matching
367
+ a plain text step is defined. Not anymore! Cucumber will now output this:
368
+
369
+ Scenario: Regular numbers
370
+ Given I have entered 3 into the calculator # features/steps/calculator_steps.rb:12
371
+ And I have entered 2 into the calculator # features/steps/calculator_steps.rb:12
372
+ When I press divide # features/steps/calculator_steps.rb:16
373
+ Then the result should be 1.5 on the screen # features/steps/calculator_steps.rb:20
374
+ And the result class should be Float # features/steps/calculator_steps.rb:24
375
+
376
+ === Bugfixes
377
+ * Fixed a bug in the command line args being lost when using --profile (#27, Joseph Wilk)
378
+ * Fixed a bug in Webrat selects (Tim Glen)
379
+ * Fixed parsing of DOS line endings (#2, #28, Aslak Hellesøy)
380
+
381
+ === New features
382
+ * Steps can be called from other steps (#3, Bryan Helmkamp, Aslak Hellesøy)
383
+ * Added But keyword to all languages (#21, Aslak Hellesøy)
384
+ * Added --no-source option to display step definition location next to step text (#26, Joseph Wilk, Aslak Hellesøy)
385
+ * Added more Webrat steps (#25, Tim Glen)
386
+
387
+ == 0.1.6 2008-10-01
388
+
389
+ First gem release!
data/License.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2008 Aslak Hellesøy
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Manifest.txt ADDED
@@ -0,0 +1,270 @@
1
+ History.txt
2
+ License.txt
3
+ Manifest.txt
4
+ README.txt
5
+ Rakefile
6
+ bin/cucumber
7
+ config/hoe.rb
8
+ config/requirements.rb
9
+ cucumber.yml
10
+ examples/calculator_ruby_features/Rakefile
11
+ examples/calculator_ruby_features/features/addition.rb
12
+ examples/calculator_ruby_features/features/step_definitons/calculator_steps.rb
13
+ examples/cs/README.textile
14
+ examples/cs/Rakefile
15
+ examples/cs/compile.bat
16
+ examples/cs/features/addition.feature
17
+ examples/cs/features/step_definitons/calculator_steps.rb
18
+ examples/cs/src/demo/Calculator.cs
19
+ examples/dos_line_endings/Rakefile
20
+ examples/dos_line_endings/features/dos_line_endings.feature
21
+ examples/i18n/README.textile
22
+ examples/i18n/Rakefile
23
+ examples/i18n/ar/Rakefile
24
+ examples/i18n/ar/features/addition.feature
25
+ examples/i18n/ar/features/step_definitons/calculator_steps.rb
26
+ examples/i18n/ar/lib/calculator.rb
27
+ examples/i18n/da/Rakefile
28
+ examples/i18n/da/features/step_definitons/kalkulator_steps.rb
29
+ examples/i18n/da/features/summering.feature
30
+ examples/i18n/da/lib/kalkulator.rb
31
+ examples/i18n/de/Rakefile
32
+ examples/i18n/de/features/addition.feature
33
+ examples/i18n/de/features/division.feature
34
+ examples/i18n/de/features/step_definitons/calculator_steps.rb
35
+ examples/i18n/de/lib/calculator.rb
36
+ examples/i18n/en/Rakefile
37
+ examples/i18n/en/features/addition.feature
38
+ examples/i18n/en/features/division.feature
39
+ examples/i18n/en/features/step_definitons/calculator_steps.rb
40
+ examples/i18n/en/lib/calculator.rb
41
+ examples/i18n/es/Rakefile
42
+ examples/i18n/es/features/adicion.feature
43
+ examples/i18n/es/features/step_definitons/calculador_steps.rb
44
+ examples/i18n/es/lib/calculador.rb
45
+ examples/i18n/et/Rakefile
46
+ examples/i18n/et/features/liitmine.feature
47
+ examples/i18n/et/features/step_definitions/kalkulaator_steps.rb
48
+ examples/i18n/et/lib/kalkulaator.rb
49
+ examples/i18n/fi/Rakefile
50
+ examples/i18n/fi/features/jakolasku.feature
51
+ examples/i18n/fi/features/step_definitons/laskin_steps.rb
52
+ examples/i18n/fi/features/yhteenlasku.feature
53
+ examples/i18n/fi/lib/laskin.rb
54
+ examples/i18n/fr/Rakefile
55
+ examples/i18n/fr/features/addition.feature
56
+ examples/i18n/fr/features/step_definitions/calculatrice_steps.rb
57
+ examples/i18n/fr/lib/calculatrice.rb
58
+ examples/i18n/id/Rakefile
59
+ examples/i18n/id/features/addition.feature
60
+ examples/i18n/id/features/division.feature
61
+ examples/i18n/id/features/step_definitons/calculator_steps.rb
62
+ examples/i18n/id/lib/calculator.rb
63
+ examples/i18n/it/Rakefile
64
+ examples/i18n/it/features/somma.feature
65
+ examples/i18n/it/features/step_definitons/calcolatrice_steps.rb
66
+ examples/i18n/it/lib/calcolatrice.rb
67
+ examples/i18n/ja/README.txt
68
+ examples/i18n/ja/Rakefile
69
+ examples/i18n/ja/features/addition.feature
70
+ examples/i18n/ja/features/division.feature
71
+ examples/i18n/ja/features/step_definitons/calculator_steps.rb
72
+ examples/i18n/ja/lib/calculator.rb
73
+ examples/i18n/ko/Rakefile
74
+ examples/i18n/ko/features/addition.feature
75
+ examples/i18n/ko/features/division.feature
76
+ examples/i18n/ko/features/step_definitons/calculator_steps.rb
77
+ examples/i18n/ko/lib/calculator.rb
78
+ examples/i18n/lt/Rakefile
79
+ examples/i18n/lt/features/addition.feature
80
+ examples/i18n/lt/features/division.feature
81
+ examples/i18n/lt/features/step_definitons/calculator_steps.rb
82
+ examples/i18n/lt/lib/calculator.rb
83
+ examples/i18n/no/Rakefile
84
+ examples/i18n/no/features/step_definitons/kalkulator_steps.rb
85
+ examples/i18n/no/features/summering.feature
86
+ examples/i18n/no/lib/kalkulator.rb
87
+ examples/i18n/pt/Rakefile
88
+ examples/i18n/pt/features/adicao.feature
89
+ examples/i18n/pt/features/step_definitions/calculadora_steps.rb
90
+ examples/i18n/pt/lib/calculadora.rb
91
+ examples/i18n/ro/Rakefile
92
+ examples/i18n/ro/features/step_definitons/calculator_steps.rb
93
+ examples/i18n/ro/features/suma.feature
94
+ examples/i18n/ro/lib/calculator.rb
95
+ examples/i18n/se/Rakefile
96
+ examples/i18n/se/features/step_definitons/kalkulator_steps.rb
97
+ examples/i18n/se/features/summering.feature
98
+ examples/i18n/se/lib/kalkulator.rb
99
+ examples/i18n/zh-CN/Rakefile
100
+ examples/i18n/zh-CN/features/addition.feature
101
+ examples/i18n/zh-CN/features/step_definitons/calculator_steps.rb
102
+ examples/i18n/zh-CN/lib/calculator.rb
103
+ examples/java/README.textile
104
+ examples/java/Rakefile
105
+ examples/java/features/hello.feature
106
+ examples/java/features/step_definitons/hello_steps.rb
107
+ examples/java/features/step_definitons/tree_steps.rb
108
+ examples/java/features/tree.feature
109
+ examples/selenium/Rakefile
110
+ examples/selenium/features/search.feature
111
+ examples/selenium/features/step_definitons/stories_steps.rb
112
+ examples/self_test/README.textile
113
+ examples/self_test/features/outline_sample.feature
114
+ examples/self_test/features/sample.feature
115
+ examples/self_test/features/step_definitions/sample_steps.rb
116
+ examples/test_unit/Rakefile
117
+ examples/test_unit/features/step_definitions/test_unit_steps.rb
118
+ examples/test_unit/features/test_unit.feature
119
+ examples/tickets/Rakefile
120
+ examples/tickets/cucumber.yml
121
+ examples/tickets/features/lib/eatting_machine.rb
122
+ examples/tickets/features/lib/pantry.rb
123
+ examples/tickets/features/scenario_outline.feature
124
+ examples/tickets/features/step_definitons/scenario_outline_steps.rb
125
+ examples/tickets/features/step_definitons/tickets_steps.rb
126
+ examples/tickets/features/tickets.feature
127
+ examples/watir/README.textile
128
+ examples/watir/Rakefile
129
+ examples/watir/features/search.feature
130
+ examples/watir/features/step_definitons/search_steps.rb
131
+ examples/watir/features/support/env.rb
132
+ features/cucumber_cli.feature
133
+ features/cucumber_cli_outlines.feature
134
+ features/step_definitions/cucumber_steps.rb
135
+ features/step_definitions/extra_steps.rb
136
+ features/support/env.rb
137
+ gem_tasks/deployment.rake
138
+ gem_tasks/environment.rake
139
+ gem_tasks/features.rake
140
+ gem_tasks/fix_cr_lf.rake
141
+ gem_tasks/flog.rake
142
+ gem_tasks/gemspec.rake
143
+ gem_tasks/rspec.rake
144
+ gem_tasks/treetop.rake
145
+ gem_tasks/yard.rake
146
+ lib/autotest/cucumber.rb
147
+ lib/autotest/cucumber_mixin.rb
148
+ lib/autotest/cucumber_rails.rb
149
+ lib/autotest/cucumber_rails_rspec.rb
150
+ lib/autotest/cucumber_rspec.rb
151
+ lib/autotest/discover.rb
152
+ lib/cucumber.rb
153
+ lib/cucumber/broadcaster.rb
154
+ lib/cucumber/cli.rb
155
+ lib/cucumber/core_ext/exception.rb
156
+ lib/cucumber/core_ext/proc.rb
157
+ lib/cucumber/core_ext/string.rb
158
+ lib/cucumber/executor.rb
159
+ lib/cucumber/formatters.rb
160
+ lib/cucumber/formatters/ansicolor.rb
161
+ lib/cucumber/formatters/autotest_formatter.rb
162
+ lib/cucumber/formatters/cucumber.css
163
+ lib/cucumber/formatters/cucumber.js
164
+ lib/cucumber/formatters/html_formatter.rb
165
+ lib/cucumber/formatters/jquery.js
166
+ lib/cucumber/formatters/pretty_formatter.rb
167
+ lib/cucumber/formatters/profile_formatter.rb
168
+ lib/cucumber/formatters/progress_formatter.rb
169
+ lib/cucumber/formatters/unicode.rb
170
+ lib/cucumber/languages.yml
171
+ lib/cucumber/model.rb
172
+ lib/cucumber/model/table.rb
173
+ lib/cucumber/platform.rb
174
+ lib/cucumber/rails/rspec.rb
175
+ lib/cucumber/rails/world.rb
176
+ lib/cucumber/rake/task.rb
177
+ lib/cucumber/step_methods.rb
178
+ lib/cucumber/step_mother.rb
179
+ lib/cucumber/tree.rb
180
+ lib/cucumber/tree/feature.rb
181
+ lib/cucumber/tree/features.rb
182
+ lib/cucumber/tree/given_scenario.rb
183
+ lib/cucumber/tree/scenario.rb
184
+ lib/cucumber/tree/step.rb
185
+ lib/cucumber/tree/table.rb
186
+ lib/cucumber/tree/top_down_visitor.rb
187
+ lib/cucumber/treetop_parser/feature.treetop.erb
188
+ lib/cucumber/treetop_parser/feature_ar.rb
189
+ lib/cucumber/treetop_parser/feature_cy.rb
190
+ lib/cucumber/treetop_parser/feature_da.rb
191
+ lib/cucumber/treetop_parser/feature_de.rb
192
+ lib/cucumber/treetop_parser/feature_en-lol.rb
193
+ lib/cucumber/treetop_parser/feature_en-tx.rb
194
+ lib/cucumber/treetop_parser/feature_en.rb
195
+ lib/cucumber/treetop_parser/feature_es.rb
196
+ lib/cucumber/treetop_parser/feature_et.rb
197
+ lib/cucumber/treetop_parser/feature_fi.rb
198
+ lib/cucumber/treetop_parser/feature_fr.rb
199
+ lib/cucumber/treetop_parser/feature_id.rb
200
+ lib/cucumber/treetop_parser/feature_it.rb
201
+ lib/cucumber/treetop_parser/feature_ja.rb
202
+ lib/cucumber/treetop_parser/feature_ko.rb
203
+ lib/cucumber/treetop_parser/feature_lt.rb
204
+ lib/cucumber/treetop_parser/feature_nl.rb
205
+ lib/cucumber/treetop_parser/feature_no.rb
206
+ lib/cucumber/treetop_parser/feature_parser.rb
207
+ lib/cucumber/treetop_parser/feature_pl.rb
208
+ lib/cucumber/treetop_parser/feature_pt.rb
209
+ lib/cucumber/treetop_parser/feature_ro.rb
210
+ lib/cucumber/treetop_parser/feature_ro2.rb
211
+ lib/cucumber/treetop_parser/feature_ru.rb
212
+ lib/cucumber/treetop_parser/feature_se.rb
213
+ lib/cucumber/treetop_parser/feature_zh-CN.rb
214
+ lib/cucumber/version.rb
215
+ lib/cucumber/world.rb
216
+ lib/cucumber/world/pending.rb
217
+ rails_generators/cucumber/USAGE
218
+ rails_generators/cucumber/cucumber_generator.rb
219
+ rails_generators/cucumber/templates/cucumber
220
+ rails_generators/cucumber/templates/cucumber.rake
221
+ rails_generators/cucumber/templates/env.rb
222
+ rails_generators/cucumber/templates/paths.rb
223
+ rails_generators/cucumber/templates/webrat_steps.rb
224
+ rails_generators/feature/USAGE
225
+ rails_generators/feature/feature_generator.rb
226
+ rails_generators/feature/templates/feature.erb
227
+ rails_generators/feature/templates/steps.erb
228
+ setup.rb
229
+ spec/cucumber/broadcaster_spec.rb
230
+ spec/cucumber/cli_spec.rb
231
+ spec/cucumber/core_ext/proc_spec.rb
232
+ spec/cucumber/core_ext/string_spec.rb
233
+ spec/cucumber/executor_spec.rb
234
+ spec/cucumber/formatters/ansicolor_spec.rb
235
+ spec/cucumber/formatters/autotest_formatter_spec.rb
236
+ spec/cucumber/formatters/features.html
237
+ spec/cucumber/formatters/html_formatter_spec.rb
238
+ spec/cucumber/formatters/pretty_formatter_spec.rb
239
+ spec/cucumber/formatters/profile_formatter_spec.rb
240
+ spec/cucumber/formatters/progress_formatter_spec.rb
241
+ spec/cucumber/model/table_spec.rb
242
+ spec/cucumber/rails/stubs/mini_rails.rb
243
+ spec/cucumber/rails/stubs/test_help.rb
244
+ spec/cucumber/rails/world_spec.rb
245
+ spec/cucumber/sell_cucumbers.feature
246
+ spec/cucumber/step_mother_spec.rb
247
+ spec/cucumber/tree/feature_spec.rb
248
+ spec/cucumber/tree/row_scenario_outline_spec.rb
249
+ spec/cucumber/tree/row_scenario_spec.rb
250
+ spec/cucumber/tree/row_step_outline_spec.rb
251
+ spec/cucumber/tree/scenario_outline_spec.rb
252
+ spec/cucumber/tree/scenario_spec.rb
253
+ spec/cucumber/tree/step_outline_spec.rb
254
+ spec/cucumber/tree/step_spec.rb
255
+ spec/cucumber/treetop_parser/empty_feature.feature
256
+ spec/cucumber/treetop_parser/empty_scenario.feature
257
+ spec/cucumber/treetop_parser/empty_scenario_outline.feature
258
+ spec/cucumber/treetop_parser/feature_parser_spec.rb
259
+ spec/cucumber/treetop_parser/fit_scenario.feature
260
+ spec/cucumber/treetop_parser/given_scenario.feature
261
+ spec/cucumber/treetop_parser/invalid_scenario_outlines.feature
262
+ spec/cucumber/treetop_parser/multiline_steps.feature
263
+ spec/cucumber/treetop_parser/multiple_tables.feature
264
+ spec/cucumber/treetop_parser/scenario_outline.feature
265
+ spec/cucumber/treetop_parser/spaces.feature
266
+ spec/cucumber/treetop_parser/test_dos.feature
267
+ spec/cucumber/treetop_parser/with_comments.feature
268
+ spec/cucumber/world/pending_spec.rb
269
+ spec/spec.opts
270
+ spec/spec_helper.rb
data/README.txt ADDED
@@ -0,0 +1,4 @@
1
+ = Cucumber
2
+
3
+ The main website is at http://cukes.info/
4
+ The documentation is at http://github.com/aslakhellesoy/cucumber/wikis/home/