cucumber 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. data/.rvmrc +1 -0
  2. data/.travis.yml +12 -2
  3. data/History.md +14 -0
  4. data/cucumber.gemspec +2 -2
  5. data/cucumber.yml +1 -1
  6. data/features/.cucumber/stepdefs.json +1159 -0
  7. data/features/issue_57.feature +35 -0
  8. data/legacy_features/wire_protocol.feature +1 -1
  9. data/lib/cucumber/ast/feature.rb +1 -1
  10. data/lib/cucumber/ast/table.rb +52 -31
  11. data/lib/cucumber/cli/configuration.rb +4 -0
  12. data/lib/cucumber/cli/main.rb +1 -0
  13. data/lib/cucumber/cli/options.rb +3 -0
  14. data/lib/cucumber/constantize.rb +1 -1
  15. data/lib/cucumber/formatter/gherkin_formatter_adapter.rb +1 -1
  16. data/lib/cucumber/formatter/html.rb +6 -1
  17. data/lib/cucumber/formatter/rerun.rb +30 -7
  18. data/lib/cucumber/js_support/js_language.rb +1 -1
  19. data/lib/cucumber/language_support/language_methods.rb +0 -4
  20. data/lib/cucumber/platform.rb +1 -1
  21. data/lib/cucumber/py_support/py_language.rb +0 -4
  22. data/lib/cucumber/rb_support/rb_language.rb +0 -14
  23. data/lib/cucumber/rb_support/regexp_argument_matcher.rb +3 -3
  24. data/lib/cucumber/runtime.rb +39 -2
  25. data/lib/cucumber/step_match.rb +3 -3
  26. data/lib/cucumber/wire_support/wire_protocol.rb +0 -1
  27. data/lib/cucumber/wire_support/wire_protocol/requests.rb +3 -1
  28. data/spec/cucumber/ast/table_spec.rb +13 -0
  29. data/spec/cucumber/cli/main_spec.rb +1 -1
  30. data/spec/cucumber/constantize_spec.rb +12 -0
  31. data/spec/cucumber/rb_support/regexp_argument_matcher_spec.rb +2 -2
  32. metadata +54 -68
  33. data/.gitignore +0 -27
  34. data/examples/i18n/de/.gitignore +0 -1
  35. data/examples/i18n/en/.gitignore +0 -1
  36. data/examples/i18n/eo/.gitignore +0 -1
  37. data/examples/i18n/fi/.gitignore +0 -1
  38. data/examples/i18n/hu/.gitignore +0 -1
  39. data/examples/i18n/id/.gitignore +0 -1
  40. data/examples/i18n/ja/.gitignore +0 -1
  41. data/examples/i18n/ko/.gitignore +0 -1
  42. data/examples/i18n/lt/.gitignore +0 -1
  43. data/examples/i18n/pl/.gitignore +0 -1
  44. data/examples/i18n/sk/.gitignore +0 -1
  45. data/examples/i18n/tr/.gitignore +0 -1
  46. data/examples/i18n/zh-TW/.gitignore +0 -1
  47. data/examples/python/lib/.gitignore +0 -1
  48. data/examples/ruby2python/lib/.gitignore +0 -1
  49. data/examples/watir/.gitignore +0 -2
  50. data/fixtures/self_test/.gitignore +0 -1
  51. data/lib/cucumber/step_argument.rb +0 -9
data/.gitignore DELETED
@@ -1,27 +0,0 @@
1
- .bundle
2
- nbproject
3
- coverage
4
- pkg
5
- doc
6
- tmp
7
- .yardoc
8
- *.log
9
- *.pid
10
- .eprj
11
- .tmtags
12
- *~
13
- .DS_Store
14
- *.swp
15
- target
16
- *.tmproj
17
- .#*
18
- .idea
19
- *.pyc
20
- *.rbc
21
- rerun.txt
22
- ._*
23
- .rvmrc
24
- .sass-cache
25
- doc/
26
- *.tgz
27
- Gemfile.lock
@@ -1 +0,0 @@
1
- features.html
@@ -1 +0,0 @@
1
- features.html
@@ -1 +0,0 @@
1
- features.html
@@ -1 +0,0 @@
1
- features.html
@@ -1 +0,0 @@
1
- features.html
@@ -1 +0,0 @@
1
- features.html
@@ -1 +0,0 @@
1
- features.html
@@ -1 +0,0 @@
1
- features.html
@@ -1 +0,0 @@
1
- features.html
@@ -1 +0,0 @@
1
- features.html
@@ -1 +0,0 @@
1
- features.html
@@ -1 +0,0 @@
1
- features.html
@@ -1 +0,0 @@
1
- features.html
@@ -1 +0,0 @@
1
- *.pyc
@@ -1 +0,0 @@
1
- *.pyc
@@ -1,2 +0,0 @@
1
- *.html
2
- *.png
@@ -1 +0,0 @@
1
- tmp
@@ -1,9 +0,0 @@
1
- module Cucumber
2
- class StepArgument
3
- attr_reader :val, :byte_offset
4
-
5
- def initialize(val, byte_offset)
6
- @val, @byte_offset = val, byte_offset
7
- end
8
- end
9
- end