cucumber 1.1.2 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.rvmrc +1 -0
- data/.travis.yml +12 -2
- data/History.md +14 -0
- data/cucumber.gemspec +2 -2
- data/cucumber.yml +1 -1
- data/features/.cucumber/stepdefs.json +1159 -0
- data/features/issue_57.feature +35 -0
- data/legacy_features/wire_protocol.feature +1 -1
- data/lib/cucumber/ast/feature.rb +1 -1
- data/lib/cucumber/ast/table.rb +52 -31
- data/lib/cucumber/cli/configuration.rb +4 -0
- data/lib/cucumber/cli/main.rb +1 -0
- data/lib/cucumber/cli/options.rb +3 -0
- data/lib/cucumber/constantize.rb +1 -1
- data/lib/cucumber/formatter/gherkin_formatter_adapter.rb +1 -1
- data/lib/cucumber/formatter/html.rb +6 -1
- data/lib/cucumber/formatter/rerun.rb +30 -7
- data/lib/cucumber/js_support/js_language.rb +1 -1
- data/lib/cucumber/language_support/language_methods.rb +0 -4
- data/lib/cucumber/platform.rb +1 -1
- data/lib/cucumber/py_support/py_language.rb +0 -4
- data/lib/cucumber/rb_support/rb_language.rb +0 -14
- data/lib/cucumber/rb_support/regexp_argument_matcher.rb +3 -3
- data/lib/cucumber/runtime.rb +39 -2
- data/lib/cucumber/step_match.rb +3 -3
- data/lib/cucumber/wire_support/wire_protocol.rb +0 -1
- data/lib/cucumber/wire_support/wire_protocol/requests.rb +3 -1
- data/spec/cucumber/ast/table_spec.rb +13 -0
- data/spec/cucumber/cli/main_spec.rb +1 -1
- data/spec/cucumber/constantize_spec.rb +12 -0
- data/spec/cucumber/rb_support/regexp_argument_matcher_spec.rb +2 -2
- metadata +54 -68
- data/.gitignore +0 -27
- data/examples/i18n/de/.gitignore +0 -1
- data/examples/i18n/en/.gitignore +0 -1
- data/examples/i18n/eo/.gitignore +0 -1
- data/examples/i18n/fi/.gitignore +0 -1
- data/examples/i18n/hu/.gitignore +0 -1
- data/examples/i18n/id/.gitignore +0 -1
- data/examples/i18n/ja/.gitignore +0 -1
- data/examples/i18n/ko/.gitignore +0 -1
- data/examples/i18n/lt/.gitignore +0 -1
- data/examples/i18n/pl/.gitignore +0 -1
- data/examples/i18n/sk/.gitignore +0 -1
- data/examples/i18n/tr/.gitignore +0 -1
- data/examples/i18n/zh-TW/.gitignore +0 -1
- data/examples/python/lib/.gitignore +0 -1
- data/examples/ruby2python/lib/.gitignore +0 -1
- data/examples/watir/.gitignore +0 -2
- data/fixtures/self_test/.gitignore +0 -1
- 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
|
data/examples/i18n/de/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
features.html
|
data/examples/i18n/en/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
features.html
|
data/examples/i18n/eo/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
features.html
|
data/examples/i18n/fi/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
features.html
|
data/examples/i18n/hu/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
features.html
|
data/examples/i18n/id/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
features.html
|
data/examples/i18n/ja/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
features.html
|
data/examples/i18n/ko/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
features.html
|
data/examples/i18n/lt/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
features.html
|
data/examples/i18n/pl/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
features.html
|
data/examples/i18n/sk/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
features.html
|
data/examples/i18n/tr/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
features.html
|
@@ -1 +0,0 @@
|
|
1
|
-
features.html
|
@@ -1 +0,0 @@
|
|
1
|
-
*.pyc
|
@@ -1 +0,0 @@
|
|
1
|
-
*.pyc
|
data/examples/watir/.gitignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
tmp
|