cucumber 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CONTRIBUTING.md +7 -9
- data/History.md +295 -265
- data/README.md +9 -7
- data/cucumber.gemspec +2 -2
- data/features/docs/cli/dry_run.feature +0 -3
- data/features/docs/cli/finding_steps.feature +28 -0
- data/features/docs/cli/run_specific_scenarios.feature +3 -1
- data/features/docs/cli/specifying_multiple_formatters.feature +22 -1
- data/features/docs/defining_steps/nested_steps.feature +0 -1
- data/features/docs/defining_steps/printing_messages.feature +4 -4
- data/features/docs/defining_steps/skip_scenario.feature +0 -2
- data/features/docs/exception_in_around_hook.feature +1 -3
- data/features/docs/formatters/html_formatter.feature +1 -0
- data/features/docs/formatters/json_formatter.feature +73 -62
- data/features/docs/formatters/junit_formatter.feature +130 -38
- data/features/docs/formatters/rerun_formatter.feature +60 -8
- data/features/docs/formatters/usage_formatter.feature +3 -7
- data/features/docs/getting_started.feature +1 -1
- data/features/docs/gherkin/background.feature +0 -11
- data/features/docs/gherkin/language_help.feature +5 -0
- data/features/docs/gherkin/outlines.feature +1 -3
- data/features/docs/gherkin/using_descriptions.feature +0 -1
- data/features/docs/raketask.feature +1 -1
- data/features/docs/writing_support_code/after_hooks.feature +22 -0
- data/features/lib/step_definitions/aruba_steps.rb +4 -0
- data/features/lib/step_definitions/junit_steps.rb +1 -1
- data/features/lib/support/normalise_output.rb +21 -4
- data/lib/cucumber/cli/configuration.rb +16 -13
- data/lib/cucumber/cli/main.rb +35 -10
- data/lib/cucumber/cli/options.rb +33 -9
- data/lib/cucumber/cli/rerun_file.rb +29 -0
- data/lib/cucumber/filters/prepare_world.rb +2 -3
- data/lib/cucumber/formatter/backtrace_filter.rb +40 -0
- data/lib/cucumber/formatter/console.rb +2 -3
- data/lib/cucumber/formatter/cucumber.css +1 -0
- data/lib/cucumber/formatter/duration_extractor.rb +28 -0
- data/lib/cucumber/formatter/hook_query_visitor.rb +40 -0
- data/lib/cucumber/formatter/html.rb +16 -1
- data/lib/cucumber/formatter/json.rb +287 -8
- data/lib/cucumber/formatter/junit.rb +92 -143
- data/lib/cucumber/formatter/legacy_api/adapter.rb +18 -54
- data/lib/cucumber/formatter/legacy_api/ast.rb +13 -0
- data/lib/cucumber/formatter/legacy_api/runtime_facade.rb +4 -0
- data/lib/cucumber/formatter/pretty.rb +2 -1
- data/lib/cucumber/formatter/progress.rb +20 -53
- data/lib/cucumber/formatter/rerun.rb +2 -1
- data/lib/cucumber/formatter/usage.rb +16 -22
- data/lib/cucumber/hooks.rb +18 -9
- data/lib/cucumber/multiline_argument/data_table.rb +40 -28
- data/lib/cucumber/platform.rb +1 -1
- data/lib/cucumber/rb_support/rb_hook.rb +4 -0
- data/lib/cucumber/running_test_case.rb +13 -4
- data/lib/cucumber/runtime/after_hooks.rb +7 -6
- data/lib/cucumber/runtime/before_hooks.rb +8 -4
- data/lib/cucumber/runtime/step_hooks.rb +5 -4
- data/lib/cucumber/runtime/support_code.rb +6 -15
- data/lib/cucumber/step_match.rb +1 -1
- data/spec/cucumber/cli/configuration_spec.rb +32 -5
- data/spec/cucumber/cli/main_spec.rb +3 -3
- data/spec/cucumber/cli/options_spec.rb +60 -1
- data/spec/cucumber/cli/rerun_spec.rb +89 -0
- data/spec/cucumber/formatter/html_spec.rb +84 -5
- data/spec/cucumber/formatter/json_spec.rb +757 -0
- data/spec/cucumber/formatter/junit_spec.rb +5 -5
- data/spec/cucumber/formatter/legacy_api/adapter_spec.rb +69 -8
- data/spec/cucumber/formatter/pretty_spec.rb +96 -0
- data/spec/cucumber/formatter/progress_spec.rb +85 -1
- data/spec/cucumber/formatter/rerun_spec.rb +3 -3
- data/spec/cucumber/multiline_argument/data_table_spec.rb +89 -0
- data/spec/cucumber/running_test_case_spec.rb +57 -1
- metadata +70 -60
- data/lib/cucumber/formatter/gherkin_formatter_adapter.rb +0 -204
- data/lib/cucumber/formatter/gpretty.rb +0 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a8c84c24005a3a9e0b4f434206b98e3c1d2125b
|
4
|
+
data.tar.gz: 8b96677e8af4daa48cc8d2df36e371a93f4831e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a1786e8f0a9773428a3cc9abbb7c7c5a1d8b8a6251976d80ad741ac822615c023fe565ad65c363ab00833993c9dc63c91977dbfdf1f1324a3777e48086285fc
|
7
|
+
data.tar.gz: 19108ede29917929398c580c3a83d88471654baae66a26de7cdc58aec09aed1fa00df33214bbe77579ec2fc41bd408e21c36c06d1b310d58a1924efb6edc0313
|
data/CONTRIBUTING.md
CHANGED
@@ -13,13 +13,11 @@ We appreciate that. But before you do, please learn our basic rules:
|
|
13
13
|
|
14
14
|
# Contributing to Cucumber
|
15
15
|
|
16
|
-
|
16
|
+
The rest of this document is a guide for those maintaining Cucumber, and others who would like to submit patches.
|
17
17
|
|
18
|
-
##
|
18
|
+
## Talking with other devs
|
19
19
|
|
20
|
-
|
21
|
-
release. If you have a minor change that you'd like released soon, we suggest submitting a pull request against the
|
22
|
-
`1.3.x-bugfix` branch.
|
20
|
+
You can chat with the core team on https://gitter.im/cucumber/cucumber. We try to have office hours on Fridays.
|
23
21
|
|
24
22
|
## Note on Patches/Pull Requests
|
25
23
|
|
@@ -58,10 +56,10 @@ Now release it
|
|
58
56
|
To become a release manager, create a pull request adding your name to the list below, and include your Rubygems email address in the ticket. One of the existing Release managers will then add you.
|
59
57
|
|
60
58
|
Current release managers:
|
61
|
-
* Matt Wynne
|
62
|
-
* Aslak Hellesøy
|
63
|
-
* Oleg Sukhodolsky
|
64
|
-
* Steve Tooke
|
59
|
+
* [Matt Wynne](https://rubygems.org/profiles/mattwynne)
|
60
|
+
* [Aslak Hellesøy](https://rubygems.org/profiles/aslakhellesoy)
|
61
|
+
* [Oleg Sukhodolsky](https://rubygems.org/profiles/os97673)
|
62
|
+
* [Steve Tooke](https://rubygems.org/profiles/tooky)
|
65
63
|
|
66
64
|
To grant release karma, issue the following command:
|
67
65
|
|
data/History.md
CHANGED
@@ -1,60 +1,90 @@
|
|
1
|
-
## [In Git](https://github.com/cucumber/cucumber/compare/v2.0.
|
1
|
+
## [In Git](https://github.com/cucumber/cucumber-ruby/compare/v2.0.1...master)
|
2
2
|
|
3
|
-
|
3
|
+
...
|
4
|
+
|
5
|
+
## [In Git](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0...v2.0.1)
|
6
|
+
|
7
|
+
### New Features
|
8
|
+
|
9
|
+
* Properly support symbol keys in table hashes ([840](https://github.com/cucumber/cucumber-ruby/issues/840) @dmorgan3405)
|
10
|
+
* Default require path to features unless specified explicitly. ([842](https://github.com/cucumber/cucumber-ruby/issues/842) @pdswan)
|
11
|
+
* Exit with different status codes when scenarios failed (1) vs when failed to run scenarios (2) ([#845](https://github.com/cucumber/cucumber-ruby/pull/845) @ciembor)
|
12
|
+
* Expose #status on Cucumber::RunningTestCase ([#836](https://github.com/cucumber/cucumber-ruby/pull/846) [#836](https://github.com/cucumber/cucumber-ruby/issues/836) @pdswan)
|
13
|
+
* New `--no-duration` flag on command-line ([#822](https://github.com/cucumber/cucumber-ruby/pull/822) @richarda)
|
14
|
+
* Make the Rerun Formatter consistent with the exit code ([860](https://github.com/cucumber/cucumber-ruby/pull/860) @brasmusson)
|
15
|
+
* Let the Json Formatter include results from all executed steps and hooks (and from Scenario Outlines also without the --expand option) ([851](https://github.com/cucumber/cucumber-ruby/pull/851) @brasmusson)
|
16
|
+
|
17
|
+
### Bugfixes
|
18
|
+
|
19
|
+
* Pass tags and comments to the legacy api formatters correctly, fixes [864](https://github.com/cucumber/cucumber-ruby/pull/864) (@brasmusson).
|
20
|
+
* Properly close HTML formatter pre tag for leading comment ([828](https://github.com/cucumber/cucumber-ruby/issues/828), [854](https://github.com/cucumber/cucumber-ruby/pull/854) @pdswan)
|
21
|
+
* Make the HTML formatter handle failures in hooks ([835](https://github.com/cucumber/cucumber-ruby/issues/835) @brasmusson)
|
22
|
+
* Fix the check for multiple formatters using stdout ([826](https://github.com/cucumber/cucumber-ruby/pull/826) @brasmusson)
|
23
|
+
* Make background.feature available to formatters (backward compatibility with v1.3.x) (@brasmusson)
|
24
|
+
* Cucumber::Ast::Table.diff! is broken when using no headers ([832](https://github.com/cucumber/cucumber-ruby/pull/832) @roschaefer)
|
25
|
+
* `cucumber --i18n <invalid_language>` breaks ([#869](https://github.com/cucumber/cucumber-ruby/issues/869) (@danascheider)
|
26
|
+
|
27
|
+
### Refactoring
|
28
|
+
|
29
|
+
* Rewrite the JUnit Formatter to the new formatter API ([855](https://github.com/cucumber/cucumber-ruby/pull/855) @brasmusson)
|
30
|
+
* Rewrite the Progress, Usage, Stepdefs formatters to the new formatter API ([859](https://github.com/cucumber/cucumber-ruby/pull/859) @brasmusson)
|
31
|
+
|
32
|
+
## [v2.0.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.5...v2.0.0)
|
4
33
|
|
5
34
|
### New Features
|
6
35
|
|
7
36
|
* Support ruby 2.2 in master (@mattwynne, @tooky)
|
8
|
-
* Tell users to use the `--init` command ([818](https://github.com/cucumber/cucumber/pull/818) @olleolleolle)
|
37
|
+
* Tell users to use the `--init` command ([818](https://github.com/cucumber/cucumber-ruby/pull/818) @olleolleolle)
|
9
38
|
|
10
39
|
### Bugfixes
|
11
40
|
|
12
41
|
* Ensure After Hooks execute in reverse order (@tooky)
|
42
|
+
* Make console output with embedded cr/lf look correct. ([820](https://github.com/cucumber/cucumber-ruby/pull/820) @SteveDonie)
|
13
43
|
|
14
|
-
## [v2.0.0.rc5](https://github.com/cucumber/cucumber/compare/v2.0.0.rc.4...v2.0.0.rc.5)
|
44
|
+
## [v2.0.0.rc5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.4...v2.0.0.rc.5)
|
15
45
|
|
16
46
|
### New Features
|
17
47
|
|
18
|
-
* Add `--init` command ([699](https://github.com/cucumber/cucumber/pull/699) @LGordon2)
|
48
|
+
* Add `--init` command ([699](https://github.com/cucumber/cucumber-ruby/pull/699) @LGordon2)
|
19
49
|
|
20
50
|
## Bugfixes
|
21
51
|
|
22
|
-
* Let the JUnitFormatter handle Scenario Outlines with the --expand option ([124](https://github.com/cucumber/cucumber/issues/124), [808](https://github.com/cucumber/cucumber/pull/808) @brasmusson, @richarda)
|
23
|
-
* Suggested regexes result in ambigous matches ([663](https://github.com/cucumber/cucumber/pull/663) @rwz)
|
24
|
-
* Pass when using both the --dry-run and the --strict options, unless there are undefined steps ([810](https://github.com/cucumber/cucumber/issues/810) @brasmusson)
|
25
|
-
* Handle step output correctly for Scenario Outlines with the --expand option ([806](https://github.com/cucumber/cucumber/issues/806) @brasmusson)
|
26
|
-
* Fix GBK and UTF-8 (Encoding::CompatibilityError) ([693](https://github.com/cucumber/cucumber/issues/693) @mattwynne)
|
27
|
-
* Make the scenario object available in hooks compatible with v1.3.x ([814](https://github.com/cucumber/cucumber/pull/814) @brasmusson)
|
28
|
-
* JUnit expand option ([808](https://github.com/cucumber/cucumber/pull/808) @richarda @brasmusson)
|
29
|
-
* Around hooks not executing in correct world context ([807](https://github.com/cucumber/cucumber/pull/807) @tooky)
|
52
|
+
* Let the JUnitFormatter handle Scenario Outlines with the --expand option ([124](https://github.com/cucumber/cucumber-ruby/issues/124), [808](https://github.com/cucumber/cucumber-ruby/pull/808) @brasmusson, @richarda)
|
53
|
+
* Suggested regexes result in ambigous matches ([663](https://github.com/cucumber/cucumber-ruby/pull/663) @rwz)
|
54
|
+
* Pass when using both the --dry-run and the --strict options, unless there are undefined steps ([810](https://github.com/cucumber/cucumber-ruby/issues/810) @brasmusson)
|
55
|
+
* Handle step output correctly for Scenario Outlines with the --expand option ([806](https://github.com/cucumber/cucumber-ruby/issues/806) @brasmusson)
|
56
|
+
* Fix GBK and UTF-8 (Encoding::CompatibilityError) ([693](https://github.com/cucumber/cucumber-ruby/issues/693) @mattwynne)
|
57
|
+
* Make the scenario object available in hooks compatible with v1.3.x ([814](https://github.com/cucumber/cucumber-ruby/pull/814) @brasmusson)
|
58
|
+
* JUnit expand option ([808](https://github.com/cucumber/cucumber-ruby/pull/808) @richarda @brasmusson)
|
59
|
+
* Around hooks not executing in correct world context ([807](https://github.com/cucumber/cucumber-ruby/pull/807) @tooky)
|
30
60
|
|
31
|
-
## [v2.0.0.rc.4](https://github.com/cucumber/cucumber/compare/v2.0.0.rc.3...2.0.0.rc.4)
|
61
|
+
## [v2.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.3...2.0.0.rc.4)
|
32
62
|
|
33
63
|
### Features
|
34
64
|
|
35
|
-
* [Add custom filters from Ruby configuration code](https://github.com/cucumber/cucumber/blob/master/features/docs/extending_cucumber/custom_filter.feature) (@mattwynne)
|
65
|
+
* [Add custom filters from Ruby configuration code](https://github.com/cucumber/cucumber-ruby/blob/master/features/docs/extending_cucumber/custom_filter.feature) (@mattwynne)
|
36
66
|
|
37
67
|
### Bugfixes
|
38
68
|
|
39
69
|
* Fix missing `require Forwardable` (@tooky)
|
40
|
-
* Fix snippet suggestions ([765](https://github.com/cucumber/cucumber/pull/765) @richarda), also with i18n languages (@brasmusson)
|
41
|
-
* Fix transformation of regex with lookahead/lookbehind ([796](https://github.com/cucumber/cucumber/pull/796) @bolshakov)
|
42
|
-
* Sort scenarios by location ([789](https://github.com/cucumber/cucumber/issues/789) @mattwynne)
|
43
|
-
* Remove keyword from name property of test case object yielded to hooks ([768](https://github.com/cucumber/cucumber/issues/768) @richarda, @akostadinov)
|
70
|
+
* Fix snippet suggestions ([765](https://github.com/cucumber/cucumber-ruby/pull/765) @richarda), also with i18n languages (@brasmusson)
|
71
|
+
* Fix transformation of regex with lookahead/lookbehind ([796](https://github.com/cucumber/cucumber-ruby/pull/796) @bolshakov)
|
72
|
+
* Sort scenarios by location ([789](https://github.com/cucumber/cucumber-ruby/issues/789) @mattwynne)
|
73
|
+
* Remove keyword from name property of test case object yielded to hooks ([768](https://github.com/cucumber/cucumber-ruby/issues/768) @richarda, @akostadinov)
|
44
74
|
|
45
|
-
## [v2.0.0.rc.3](https://github.com/cucumber/cucumber/compare/v2.0.0.rc.2...v2.0.0.rc.3)
|
75
|
+
## [v2.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.2...v2.0.0.rc.3)
|
46
76
|
|
47
77
|
### Bugfixes
|
48
78
|
|
49
79
|
* MultilineArgument::DataTable#diff will correctly compare to an Array (@tooky)
|
50
80
|
|
51
|
-
## [v2.0.0.rc.2](https://github.com/cucumber/cucumber/compare/v2.0.0.rc.1...v2.0.0.rc.2)
|
81
|
+
## [v2.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.1...v2.0.0.rc.2)
|
52
82
|
|
53
83
|
### Bugfixes
|
54
84
|
|
55
85
|
* World#table no longer creates invalid table objects when using an Array (@tooky, @mattwynne)
|
56
86
|
|
57
|
-
## [v2.0.0.rc.1](https://github.com/cucumber/cucumber/compare/v2.0.0.beta.5...v2.0.0.rc.1)
|
87
|
+
## [v2.0.0.rc.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.5...v2.0.0.rc.1)
|
58
88
|
|
59
89
|
### Removed Features
|
60
90
|
|
@@ -62,37 +92,37 @@
|
|
62
92
|
|
63
93
|
### New Features
|
64
94
|
|
65
|
-
* Let the HTML formatter store the relative path to files in the report ([697](https://github.com/cucumber/cucumber/pull/697) @idstein, @brasmusson)
|
66
|
-
* Allow cucumber.yml to parse % erb code lines ([755](https://github.com/cucumber/cucumber/pull/755) @snowe2010)
|
67
|
-
* Give each step definition a unique copy of argument objects ([760](https://github.com/cucumber/cucumber/pull/760) @tooky)
|
95
|
+
* Let the HTML formatter store the relative path to files in the report ([697](https://github.com/cucumber/cucumber-ruby/pull/697) @idstein, @brasmusson)
|
96
|
+
* Allow cucumber.yml to parse % erb code lines ([755](https://github.com/cucumber/cucumber-ruby/pull/755) @snowe2010)
|
97
|
+
* Give each step definition a unique copy of argument objects ([760](https://github.com/cucumber/cucumber-ruby/pull/760) @tooky)
|
68
98
|
|
69
99
|
### Bugfixes
|
70
100
|
|
71
101
|
* Add old Scenario#skip_invoke! method back (@mattwynne)
|
72
|
-
* No links to lines in backtrace under TextMate ([548](https://github.com/cucumber/cucumber/pull/548) @bilus)
|
73
|
-
* Using file:line CLI to select scenarios was running same scenario multiple times ([786](https://github.com/cucumber/cucumber/pull/786) @jdks)
|
74
|
-
* Allow spaces in filenames for rerun formatter ([793](https://github.com/cucumber/cucumber/pull/793) @callahat)
|
102
|
+
* No links to lines in backtrace under TextMate ([548](https://github.com/cucumber/cucumber-ruby/pull/548) @bilus)
|
103
|
+
* Using file:line CLI to select scenarios was running same scenario multiple times ([786](https://github.com/cucumber/cucumber-ruby/pull/786) @jdks)
|
104
|
+
* Allow spaces in filenames for rerun formatter ([793](https://github.com/cucumber/cucumber-ruby/pull/793) @callahat)
|
75
105
|
|
76
|
-
## [v2.0.0.beta.5](https://github.com/cucumber/cucumber/compare/v2.0.0.beta.4...v2.0.0.beta.5)
|
106
|
+
## [v2.0.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.4...v2.0.0.beta.5)
|
77
107
|
|
78
108
|
* Depend on the correct version of core (@tooky)
|
79
109
|
|
80
|
-
## [v2.0.0.beta.4](https://github.com/cucumber/cucumber/compare/v2.0.0.beta.3...v2.0.0.beta.4)
|
110
|
+
## [v2.0.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.3...v2.0.0.beta.4)
|
81
111
|
### New Features
|
82
112
|
|
83
113
|
* Support both new and legacy formatter APIs simultaneously (@mattwynne and @tooky)
|
84
114
|
|
85
115
|
### Bugfixes
|
86
116
|
|
87
|
-
* Localize the Scenario keyword with the --expand option ([766](https://github.com/cucumber/cucumber/pull/766) @brasmusson)
|
88
|
-
* Handle hook output appropriately in the HTML formatter ([746](https://github.com/cucumber/cucumber/pull/746), [731](https://github.com/cucumber/cucumber/issues/731), [298](https://github.com/cucumber/cucumber/pull/298) @brasmusson)
|
89
|
-
* Handle hook output appropriately in the Pretty formatter ([738](https://github.com/cucumber/cucumber/pull/738) @brasmusson)
|
117
|
+
* Localize the Scenario keyword with the --expand option ([766](https://github.com/cucumber/cucumber-ruby/pull/766) @brasmusson)
|
118
|
+
* Handle hook output appropriately in the HTML formatter ([746](https://github.com/cucumber/cucumber-ruby/pull/746), [731](https://github.com/cucumber/cucumber-ruby/issues/731), [298](https://github.com/cucumber/cucumber-ruby/pull/298) @brasmusson)
|
119
|
+
* Handle hook output appropriately in the Pretty formatter ([738](https://github.com/cucumber/cucumber-ruby/pull/738) @brasmusson)
|
90
120
|
|
91
121
|
### Internal changes
|
92
122
|
|
93
123
|
* Re-write rerun formatter against new formatter API
|
94
124
|
|
95
|
-
## [v2.0.0.beta.3](https://github.com/cucumber/cucumber/compare/v2.0.0.beta.2...v2.0.0.beta.3)
|
125
|
+
## [v2.0.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.2...v2.0.0.beta.3)
|
96
126
|
|
97
127
|
### Removed Features
|
98
128
|
|
@@ -100,29 +130,29 @@
|
|
100
130
|
|
101
131
|
### New Features
|
102
132
|
|
103
|
-
* Include both outline step and expanded step in error backtrace ([730](https://github.com/cucumber/cucumber/pull/730) @brasmusson)
|
104
|
-
* Add TestCase#outline? for conditionals in Before / After hooks ([728](https://github.com/cucumber/cucumber/pull/728) [Erran Carey](https://github.com/erran))
|
105
|
-
* Support embedding images directly in HTML and JSON reports ([696](https://github.com/cucumber/cucumber/pull/696),[695](https://github.com/cucumber/cucumber/pull/695/files) @brasmusson)
|
133
|
+
* Include both outline step and expanded step in error backtrace ([730](https://github.com/cucumber/cucumber-ruby/pull/730) @brasmusson)
|
134
|
+
* Add TestCase#outline? for conditionals in Before / After hooks ([728](https://github.com/cucumber/cucumber-ruby/pull/728) [Erran Carey](https://github.com/erran))
|
135
|
+
* Support embedding images directly in HTML and JSON reports ([696](https://github.com/cucumber/cucumber-ruby/pull/696),[695](https://github.com/cucumber/cucumber-ruby/pull/695/files) @brasmusson)
|
106
136
|
|
107
137
|
### Bugfixes
|
108
138
|
|
109
|
-
* Pass hook output to the formatters appropriately ([732](https://github.com/cucumber/cucumber/pull/732) @brasmusson)
|
139
|
+
* Pass hook output to the formatters appropriately ([732](https://github.com/cucumber/cucumber-ruby/pull/732) @brasmusson)
|
110
140
|
* Added tests for, and re-added behaviour to support Scenario#failed? in hooks (Matt Wynne)
|
111
|
-
* Rescuing ArgumentError in HTML formatter so Cucumber won't stop tests due bad encoding ([690](https://github.com/cucumber/cucumber/pull/690) @awls99)
|
112
|
-
* Add back support for the DataTable API ([729](https://github.com/cucumber/cucumber/pull/729) @mattwynne and @tooky)
|
113
|
-
* Fix Windows support loading files properly ([739](https://github.com/cucumber/cucumber/issues/739) @os97673)
|
141
|
+
* Rescuing ArgumentError in HTML formatter so Cucumber won't stop tests due bad encoding ([690](https://github.com/cucumber/cucumber-ruby/pull/690) @awls99)
|
142
|
+
* Add back support for the DataTable API ([729](https://github.com/cucumber/cucumber-ruby/pull/729) @mattwynne and @tooky)
|
143
|
+
* Fix Windows support loading files properly ([739](https://github.com/cucumber/cucumber-ruby/issues/739) @os97673)
|
114
144
|
|
115
|
-
## [v2.0.0.beta.2](https://github.com/cucumber/cucumber/compare/v2.0.0.beta.1...v2.0.0.beta.2)
|
145
|
+
## [v2.0.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.1...v2.0.0.beta.2)
|
116
146
|
|
117
147
|
### Bugfixes
|
118
148
|
|
119
|
-
* Better reporting of exceptions in Before / After hooks ([723](https://github.com/cucumber/cucumber/pull/723) @mattwynne)
|
149
|
+
* Better reporting of exceptions in Before / After hooks ([723](https://github.com/cucumber/cucumber-ruby/pull/723) @mattwynne)
|
120
150
|
* Add `#source_tag_names` method to `TestCase` object passed to hooks (@mattwynne)
|
121
151
|
|
122
|
-
## [v2.0.0.beta.1 ](https://github.com/cucumber/cucumber/compare/v1.3.8...v2.0.0.beta.1)
|
152
|
+
## [v2.0.0.beta.1 ](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v2.0.0.beta.1)
|
123
153
|
|
124
154
|
Version 2.0 contains a major internal redesign, extracting the core logic of
|
125
|
-
parsing and executing tests into a [separate gem](https://github.com/cucumber/cucumber-ruby-core).
|
155
|
+
parsing and executing tests into a [separate gem](https://github.com/cucumber/cucumber-ruby-ruby-core).
|
126
156
|
|
127
157
|
Although we've tried to keep the API and behaviour consistent through this change,
|
128
158
|
there are bound to be differences our tests haven't picked up. We're still working through
|
@@ -131,10 +161,10 @@ all.
|
|
131
161
|
|
132
162
|
### New features
|
133
163
|
|
134
|
-
* Better snippet comment ([579](https://github.com/cucumber/cucumber/pull/579) Jeff Nyman)
|
164
|
+
* Better snippet comment ([579](https://github.com/cucumber/cucumber-ruby/pull/579) Jeff Nyman)
|
135
165
|
* Random scenario ordering with `--order random`
|
136
|
-
* Embed plain text ([712](https://github.com/cucumber/cucumber/pull/712) @bingwei)
|
137
|
-
* Support the cucumber-reporting tools also when using Scenario Outlines ([700](https://github.com/cucumber/cucumber/pull/700) @brasmusson)
|
166
|
+
* Embed plain text ([712](https://github.com/cucumber/cucumber-ruby/pull/712) @bingwei)
|
167
|
+
* Support the cucumber-reporting tools also when using Scenario Outlines ([700](https://github.com/cucumber/cucumber-ruby/pull/700) @brasmusson)
|
138
168
|
|
139
169
|
### Features removed
|
140
170
|
|
@@ -152,229 +182,229 @@ all.
|
|
152
182
|
|
153
183
|
### Minor changes
|
154
184
|
|
155
|
-
* Greek examples added ([497](https://github.com/cucumber/cucumber/issues/497) @rousisk)
|
185
|
+
* Greek examples added ([497](https://github.com/cucumber/cucumber-ruby/issues/497) @rousisk)
|
156
186
|
|
157
|
-
## [v1.3.16](https://github.com/cucumber/cucumber/compare/v1.3.15...v1.3.16)
|
187
|
+
## [v1.3.16](https://github.com/cucumber/cucumber-ruby/compare/v1.3.15...v1.3.16)
|
158
188
|
|
159
|
-
* Pass output from the step definition on to the JSON formatter ([701](https://github.com/cucumber/cucumber/pull/701) @brasmusson)
|
160
|
-
* Add RSpec 3 test double support ([689](https://github.com/cucumber/cucumber/pull/689) @cyphactor)
|
161
|
-
* Fix bug with rerun formatter and `--expand` option ([710](https://github.com/cucumber/cucumber/pull/710) @brasmusson)
|
189
|
+
* Pass output from the step definition on to the JSON formatter ([701](https://github.com/cucumber/cucumber-ruby/pull/701) @brasmusson)
|
190
|
+
* Add RSpec 3 test double support ([689](https://github.com/cucumber/cucumber-ruby/pull/689) @cyphactor)
|
191
|
+
* Fix bug with rerun formatter and `--expand` option ([710](https://github.com/cucumber/cucumber-ruby/pull/710) @brasmusson)
|
162
192
|
|
163
|
-
## [v1.3.15](https://github.com/cucumber/cucumber/compare/v1.3.14...v1.3.15)
|
193
|
+
## [v1.3.15](https://github.com/cucumber/cucumber-ruby/compare/v1.3.14...v1.3.15)
|
164
194
|
|
165
195
|
* Fixed intermittent ConcurrencyError seen in JRuby
|
166
|
-
([671](https://github.com/cucumber/cucumber/issues/670) @cbusbey)
|
196
|
+
([671](https://github.com/cucumber/cucumber-ruby/issues/670) @cbusbey)
|
167
197
|
|
168
|
-
## [v1.3.14](https://github.com/cucumber/cucumber/compare/v1.3.13...v1.3.14)
|
198
|
+
## [v1.3.14](https://github.com/cucumber/cucumber-ruby/compare/v1.3.13...v1.3.14)
|
169
199
|
|
170
200
|
* Rerun formatter includes all scenarios when the background fails
|
171
|
-
([660](https://github.com/cucumber/cucumber/issues/660),
|
172
|
-
[661](https://github.com/cucumber/cucumber/pull/661) @brasmusson)
|
201
|
+
([660](https://github.com/cucumber/cucumber-ruby/issues/660),
|
202
|
+
[661](https://github.com/cucumber/cucumber-ruby/pull/661) @brasmusson)
|
173
203
|
|
174
|
-
## [v1.3.13](https://github.com/cucumber/cucumber/compare/v1.3.12...v1.3.13)
|
204
|
+
## [v1.3.13](https://github.com/cucumber/cucumber-ruby/compare/v1.3.12...v1.3.13)
|
175
205
|
|
176
206
|
* Rerun formatter includes all scenarios when the background fails
|
177
|
-
([654](https://github.com/cucumber/cucumber/pull/654) @brasmusson)
|
207
|
+
([654](https://github.com/cucumber/cucumber-ruby/pull/654) @brasmusson)
|
178
208
|
|
179
|
-
## [v1.3.12](https://github.com/cucumber/cucumber/compare/v1.3.11...v1.3.12)
|
209
|
+
## [v1.3.12](https://github.com/cucumber/cucumber-ruby/compare/v1.3.11...v1.3.12)
|
180
210
|
|
181
211
|
* Use MultiTest to handle assertions library selection (@tooky)
|
182
212
|
* Adds full support for rails 4.1 / Minitest
|
183
213
|
|
184
|
-
## [v1.3.11](https://github.com/cucumber/cucumber/compare/v1.3.10...v1.3.11)
|
214
|
+
## [v1.3.11](https://github.com/cucumber/cucumber-ruby/compare/v1.3.10...v1.3.11)
|
185
215
|
|
186
|
-
* Add Ruby 2.1 Support ([#644](https://github.com/cucumber/cucumber/pull/644) @tooky, @chrismdp)
|
216
|
+
* Add Ruby 2.1 Support ([#644](https://github.com/cucumber/cucumber-ruby/pull/644) @tooky, @chrismdp)
|
187
217
|
|
188
|
-
## [v1.3.10](https://github.com/cucumber/cucumber/compare/v1.3.9...v1.3.10)
|
218
|
+
## [v1.3.10](https://github.com/cucumber/cucumber-ruby/compare/v1.3.9...v1.3.10)
|
189
219
|
|
190
|
-
* Fixed "nil:NilClass (NoMethodError)" problem for auto-formatting ([599](https://github.com/cucumber/cucumber/pull/599) @jmcaffee)
|
220
|
+
* Fixed "nil:NilClass (NoMethodError)" problem for auto-formatting ([599](https://github.com/cucumber/cucumber-ruby/pull/599) @jmcaffee)
|
191
221
|
|
192
|
-
## [v1.3.9](https://github.com/cucumber/cucumber/compare/v1.3.8...v1.3.9)
|
222
|
+
## [v1.3.9](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v1.3.9)
|
193
223
|
|
194
224
|
* Disable minitest autorun after loading support files (@tooky)
|
195
225
|
* Add `Ast::Table#map_column` for non-mutating column mapping (@tooky)
|
196
226
|
* Remove deprecation warnings on `Ast::Table` (@tooky)
|
197
|
-
* Fixed ArgumentError for NoStepMatch#format_args ([587](https://github.com/cucumber/cucumber/pull/587) @jshraibman-mdsol)
|
227
|
+
* Fixed ArgumentError for NoStepMatch#format_args ([587](https://github.com/cucumber/cucumber-ruby/pull/587) @jshraibman-mdsol)
|
198
228
|
|
199
|
-
## [v1.3.8](https://github.com/cucumber/cucumber/compare/v1.3.7...v1.3.8)
|
229
|
+
## [v1.3.8](https://github.com/cucumber/cucumber-ruby/compare/v1.3.7...v1.3.8)
|
200
230
|
|
201
231
|
* Make the MultiJson dependency less restrictive (@tooky)
|
202
232
|
|
203
|
-
## [1.3.7](https://github.com/cucumber/cucumber/compare/v1.3.6...v1.3.7)
|
233
|
+
## [1.3.7](https://github.com/cucumber/cucumber-ruby/compare/v1.3.6...v1.3.7)
|
204
234
|
|
205
235
|
* Fixed incorrect html formatter behaviour when background step fails
|
206
|
-
([520](https://github.com/cucumber/cucumber/issues/520),
|
207
|
-
[521](https://github.com/cucumber/cucumber/issues/521) @mlex)
|
236
|
+
([520](https://github.com/cucumber/cucumber-ruby/issues/520),
|
237
|
+
[521](https://github.com/cucumber/cucumber-ruby/issues/521) @mlex)
|
208
238
|
|
209
239
|
* Fixed problem with printing badly formatted backtrace for failed background
|
210
|
-
([522](https://github.com/cucumber/cucumber/issues/522),
|
211
|
-
[523](https://github.com/cucumber/cucumber/issues/523) @mlex)
|
240
|
+
([522](https://github.com/cucumber/cucumber-ruby/issues/522),
|
241
|
+
[523](https://github.com/cucumber/cucumber-ruby/issues/523) @mlex)
|
212
242
|
|
213
243
|
* required Gherkin version bumped to 2.12.1
|
214
244
|
|
215
245
|
* All mutating methods of AST::Table deprecated
|
216
|
-
([505](https://github.com/cucumber/cucumber/issues/505),
|
217
|
-
[525](https://github.com/cucumber/cucumber/issues/525) @adbatista)
|
246
|
+
([505](https://github.com/cucumber/cucumber-ruby/issues/505),
|
247
|
+
[525](https://github.com/cucumber/cucumber-ruby/issues/525) @adbatista)
|
218
248
|
|
219
249
|
* AST::Table#map_headers doesn't use #map_headers! anymore
|
220
|
-
([505](https://github.com/cucumber/cucumber/issues/528) @adbatista)
|
250
|
+
([505](https://github.com/cucumber/cucumber-ruby/issues/528) @adbatista)
|
221
251
|
|
222
|
-
## [1.3.6](https://github.com/cucumber/cucumber/compare/v1.3.5...v1.3.6)
|
252
|
+
## [1.3.6](https://github.com/cucumber/cucumber-ruby/compare/v1.3.5...v1.3.6)
|
223
253
|
|
224
254
|
* Html formatter fixed to not mark passes scenarios with tables as pending
|
225
|
-
([493](https://github.com/cucumber/cucumber/issues/493) Oleg Sukhodolsky)
|
255
|
+
([493](https://github.com/cucumber/cucumber-ruby/issues/493) Oleg Sukhodolsky)
|
226
256
|
|
227
|
-
## [1.3.5](https://github.com/cucumber/cucumber/compare/v1.3.4...v1.3.5)
|
257
|
+
## [1.3.5](https://github.com/cucumber/cucumber-ruby/compare/v1.3.4...v1.3.5)
|
228
258
|
|
229
|
-
* Fix Rails 4 Minitest autorun problems. ([501](https://github.com/cucumber/cucumber/issues/501) @mattwynne)
|
259
|
+
* Fix Rails 4 Minitest autorun problems. ([501](https://github.com/cucumber/cucumber-ruby/issues/501) @mattwynne)
|
230
260
|
|
231
|
-
## [1.3.4](https://github.com/cucumber/cucumber/compare/v1.3.3...v1.3.4)
|
261
|
+
## [1.3.4](https://github.com/cucumber/cucumber-ruby/compare/v1.3.3...v1.3.4)
|
232
262
|
|
233
|
-
* JUnit formatter fixed to report skipped scenarios correctly ([496](https://github.com/cucumber/cucumber/issues/496) @ambirag)
|
263
|
+
* JUnit formatter fixed to report skipped scenarios correctly ([496](https://github.com/cucumber/cucumber-ruby/issues/496) @ambirag)
|
234
264
|
|
235
|
-
## [1.3.3](https://github.com/cucumber/cucumber/compare/v1.3.2...v1.3.3)
|
265
|
+
## [1.3.3](https://github.com/cucumber/cucumber-ruby/compare/v1.3.2...v1.3.3)
|
236
266
|
|
237
|
-
* Fix compatability with MiniTest 5.0 ([#456](https://github.com/cucumber/cucumber/issues/456) Matt Wynne)
|
267
|
+
* Fix compatability with MiniTest 5.0 ([#456](https://github.com/cucumber/cucumber-ruby/issues/456) Matt Wynne)
|
238
268
|
* Warn that Spork support is broken (Steve Tooke)
|
239
269
|
* Fix error with Ruby 2.0.0 and `Cucumber::RUBY_1_8_7`
|
240
|
-
([#492](https://github.com/cucumber/cucumber/issues/492) Matt Wynne)
|
241
|
-
* Use new Rubygems API to look for bundler ([#448](https://github.com/cucumber/cucumber/issues/448) Matt Wynne)
|
270
|
+
([#492](https://github.com/cucumber/cucumber-ruby/issues/492) Matt Wynne)
|
271
|
+
* Use new Rubygems API to look for bundler ([#448](https://github.com/cucumber/cucumber-ruby/issues/448) Matt Wynne)
|
242
272
|
|
243
|
-
## [1.3.2](https://github.com/cucumber/cucumber/compare/v1.3.1...v1.3.2)
|
273
|
+
## [1.3.2](https://github.com/cucumber/cucumber-ruby/compare/v1.3.1...v1.3.2)
|
244
274
|
|
245
275
|
### Bugfixes
|
246
276
|
* Fixed ugly NoMethodError when a Scenario Outline has no Examples
|
247
|
-
([#438](https://github.com/cucumber/cucumber/issues/438) Steve Tooke)
|
277
|
+
([#438](https://github.com/cucumber/cucumber-ruby/issues/438) Steve Tooke)
|
248
278
|
|
249
|
-
## [1.3.1](https://github.com/cucumber/cucumber/compare/v1.3.0...v1.3.1)
|
279
|
+
## [1.3.1](https://github.com/cucumber/cucumber-ruby/compare/v1.3.0...v1.3.1)
|
250
280
|
|
251
281
|
### Bugfixes
|
252
282
|
* Fixed typo which breaks unicode.rb on Windows (Oleg Sukhodolsky)
|
253
283
|
|
254
|
-
## [1.3.0](https://github.com/cucumber/cucumber/compare/v1.2.5...v1.3.0)
|
284
|
+
## [1.3.0](https://github.com/cucumber/cucumber-ruby/compare/v1.2.5...v1.3.0)
|
255
285
|
|
256
286
|
### New Features
|
257
287
|
* Faster features, thanks to in-process Aruba. (Aslak Hellesøy)
|
258
288
|
* Add lib to default load path
|
259
|
-
([#162](https://github.com/cucumber/cucumber/issues/162) Steve Tooke)
|
289
|
+
([#162](https://github.com/cucumber/cucumber-ruby/issues/162) Steve Tooke)
|
260
290
|
* Add snippet type to support different type of ruby snippets.
|
261
|
-
([#390](https://github.com/cucumber/cucumber/pull/390) Roel van Dijk)
|
262
|
-
* Call nested steps using any language keywords ([#433](https://github.com/cucumber/cucumber/pull/433) Tomohiko Himura)
|
291
|
+
([#390](https://github.com/cucumber/cucumber-ruby/pull/390) Roel van Dijk)
|
292
|
+
* Call nested steps using any language keywords ([#433](https://github.com/cucumber/cucumber-ruby/pull/433) Tomohiko Himura)
|
263
293
|
|
264
294
|
### Bugfixes
|
265
|
-
* Update watir example ([#427](https://github.com/cucumber/cucumber/issues/427)) Luiz Guilherme D'Abruzzo Pereira
|
266
|
-
* Ensure that cucumber.yml is only parsed once ([#416](https://github.com/cucumber/cucumber/issues/416)) Steve Tooke
|
267
|
-
* Improve rake task report on failure ([#400](https://github.com/cucumber/cucumber/issues/400) Andrey Vakarev
|
295
|
+
* Update watir example ([#427](https://github.com/cucumber/cucumber-ruby/issues/427)) Luiz Guilherme D'Abruzzo Pereira
|
296
|
+
* Ensure that cucumber.yml is only parsed once ([#416](https://github.com/cucumber/cucumber-ruby/issues/416)) Steve Tooke
|
297
|
+
* Improve rake task report on failure ([#400](https://github.com/cucumber/cucumber-ruby/issues/400) Andrey Vakarev
|
268
298
|
* Show details of nested steps in backtraces
|
269
|
-
([#69](https://github.com/cucumber/cucumber/issues/69)) Steve Tooke
|
299
|
+
([#69](https://github.com/cucumber/cucumber-ruby/issues/69)) Steve Tooke
|
270
300
|
* Filter out control characters from CDATA section of JUnit formatter output.
|
271
|
-
([#383](https://github.com/cucumber/cucumber/issues/383) @teacup-on-rockingchair)
|
301
|
+
([#383](https://github.com/cucumber/cucumber-ruby/issues/383) @teacup-on-rockingchair)
|
272
302
|
* Fix problem with non-ascii characters in file path
|
273
|
-
([#150](https://github.com/cucumber/cucumber/issues/150) Oleg Sukhodolsky)
|
303
|
+
([#150](https://github.com/cucumber/cucumber-ruby/issues/150) Oleg Sukhodolsky)
|
274
304
|
* Fix problem loading ruby files in project root directory
|
275
|
-
([#269](https://github.com/cucumber/cucumber/issues/269) Steve Tooke)
|
305
|
+
([#269](https://github.com/cucumber/cucumber-ruby/issues/269) Steve Tooke)
|
276
306
|
* Fix JsonPretty formatter problem
|
277
|
-
([#197](https://github.com/cucumber/cucumber/issues/197) Oleg Sukhodolsky)
|
307
|
+
([#197](https://github.com/cucumber/cucumber-ruby/issues/197) Oleg Sukhodolsky)
|
278
308
|
* Don't display multi-line strings when --no-multiline is passed
|
279
|
-
([#201](https://github.com/cucumber/cucumber/issues/201) David Kowis)
|
309
|
+
([#201](https://github.com/cucumber/cucumber-ruby/issues/201) David Kowis)
|
280
310
|
* Moved the profile information output to a callback of the formatter
|
281
|
-
([#175](https://github.com/cucumber/cucumber/issues/175) David Kowis)
|
311
|
+
([#175](https://github.com/cucumber/cucumber-ruby/issues/175) David Kowis)
|
282
312
|
* Fix html formatter to not mark skipped/unimplemented steps as failed
|
283
|
-
([#337](https://github.com/cucumber/cucumber/issues/337) Oleg Sukhodolsky)
|
313
|
+
([#337](https://github.com/cucumber/cucumber-ruby/issues/337) Oleg Sukhodolsky)
|
284
314
|
* Allow duplication for format+output pair in command line
|
285
|
-
([#434](https://github.com/cucumber/cucumber/issues/434) David Lantos)
|
315
|
+
([#434](https://github.com/cucumber/cucumber-ruby/issues/434) David Lantos)
|
286
316
|
* Better delegation to IO in Cucumber::Formatter::Interceptor::Pipe
|
287
|
-
([#312](https://github.com/cucumber/cucumber/issues/312) Oleg Sukhodolsky)
|
317
|
+
([#312](https://github.com/cucumber/cucumber-ruby/issues/312) Oleg Sukhodolsky)
|
288
318
|
|
289
|
-
## [1.2.5](https://github.com/cucumber/cucumber/compare/v1.2.3...v1.2.5)
|
319
|
+
## [1.2.5](https://github.com/cucumber/cucumber-ruby/compare/v1.2.3...v1.2.5)
|
290
320
|
|
291
|
-
* Upgrade Gherkin version to remove warnings when running on JRuby. ([#393](https://github.com/cucumber/cucumber/issues/393) Oleg Sukhodolsky)
|
292
|
-
* Do not use TagExpression.eval() which is deprecated in Gherkin 2.11.7 ([#420](https://github.com/cucumber/cucumber/issues/420) Oleg Sukhodolsky)
|
321
|
+
* Upgrade Gherkin version to remove warnings when running on JRuby. ([#393](https://github.com/cucumber/cucumber-ruby/issues/393) Oleg Sukhodolsky)
|
322
|
+
* Do not use TagExpression.eval() which is deprecated in Gherkin 2.11.7 ([#420](https://github.com/cucumber/cucumber-ruby/issues/420) Oleg Sukhodolsky)
|
293
323
|
|
294
324
|
## 1.2.4
|
295
325
|
|
296
|
-
Yanked. See ([#428](https://github.com/cucumber/cucumber/issues/428)).
|
326
|
+
Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
|
297
327
|
|
298
|
-
## [1.2.3](https://github.com/cucumber/cucumber/compare/v1.2.2...v1.2.3)
|
328
|
+
## [1.2.3](https://github.com/cucumber/cucumber-ruby/compare/v1.2.2...v1.2.3)
|
299
329
|
|
300
330
|
### Bugfixes
|
301
|
-
* Fix problem with rake task for jruby and ruby installed from packages on Ubuntu ([#386](https://github.com/cucumber/cucumber/issues/386), [#388](https://github.com/cucumber/cucumber/issues/388) @y-higuchi)
|
302
|
-
* Fix embedding images in json ([#315](https://github.com/cucumber/cucumber/issues/315) Oleg Sukhodolsky)
|
331
|
+
* Fix problem with rake task for jruby and ruby installed from packages on Ubuntu ([#386](https://github.com/cucumber/cucumber-ruby/issues/386), [#388](https://github.com/cucumber/cucumber-ruby/issues/388) @y-higuchi)
|
332
|
+
* Fix embedding images in json ([#315](https://github.com/cucumber/cucumber-ruby/issues/315) Oleg Sukhodolsky)
|
303
333
|
|
304
|
-
## [1.2.2](https://github.com/cucumber/cucumber/compare/v1.2.1...v1.2.2)
|
334
|
+
## [1.2.2](https://github.com/cucumber/cucumber-ruby/compare/v1.2.1...v1.2.2)
|
305
335
|
|
306
336
|
### New Features
|
307
|
-
* Ruby 2.0.0 support ([#377](https://github.com/cucumber/cucumber/issues/377) Matt Wynne & [#357](https://github.com/cucumber/cucumber/issues/357) @charliesome)
|
308
|
-
* Capture duration value for json formatter ([#329](https://github.com/cucumber/cucumber/issues/329) Rick Beyer)
|
337
|
+
* Ruby 2.0.0 support ([#377](https://github.com/cucumber/cucumber-ruby/issues/377) Matt Wynne & [#357](https://github.com/cucumber/cucumber-ruby/issues/357) @charliesome)
|
338
|
+
* Capture duration value for json formatter ([#329](https://github.com/cucumber/cucumber-ruby/issues/329) Rick Beyer)
|
309
339
|
* Added support for Hindi (hi), although some systems may need to install fonts which support the Devanagari script.
|
310
|
-
* Obey program suffix when invoking bundler ([#324](https://github.com/cucumber/cucumber/issues/324) Eric Hodel)
|
340
|
+
* Obey program suffix when invoking bundler ([#324](https://github.com/cucumber/cucumber-ruby/issues/324) Eric Hodel)
|
311
341
|
|
312
342
|
### Bugfixes
|
313
|
-
* Fix class loading problems --format option had ([#345](https://github.com/cucumber/cucumber/issues/345), [#346](https://github.com/cucumber/cucumber/issues/346) @ksylvest)
|
314
|
-
* Exit with failure status when interrupted ([#299](https://github.com/cucumber/cucumber/issues/299) @aaronjensen)
|
315
|
-
* Cannot map table headers after table hashes is referenced ([#275](https://github.com/cucumber/cucumber/issues/275) @chrisbloom7 / Matt Wynne)
|
316
|
-
* (before|after)_step aren't called when scenario outline's table is processed ([#284](https://github.com/cucumber/cucumber/issues/284) Oleg Sukhodolsky)
|
317
|
-
* Raise exception when remote socket end disconnects using wire protocol ([#348](https://github.com/cucumber/cucumber/issues/348) @rdammkoehler)
|
318
|
-
* Fix --dry-run option ignored when set via profile ([#248](https://github.com/cucumber/cucumber/issues/248) / [#255](https://github.com/cucumber/cucumber/issues/255) Igor Afonov)
|
319
|
-
* More clear suggested ruby code for undefined steps ([#328](https://github.com/cucumber/cucumber/issues/328) / [#331](https://github.com/cucumber/cucumber/issues/331) @martco)
|
320
|
-
* Fix exception in Html formatter with --expand mode and undefined steps ([#336](https://github.com/cucumber/cucumber/issues/336) Roberto Decurnex)
|
321
|
-
* Fix Table.diff! problem with :surplus_row => false and interleaved surplus rows ([#220](https://github.com/cucumber/cucumber/issues/220))
|
343
|
+
* Fix class loading problems --format option had ([#345](https://github.com/cucumber/cucumber-ruby/issues/345), [#346](https://github.com/cucumber/cucumber-ruby/issues/346) @ksylvest)
|
344
|
+
* Exit with failure status when interrupted ([#299](https://github.com/cucumber/cucumber-ruby/issues/299) @aaronjensen)
|
345
|
+
* Cannot map table headers after table hashes is referenced ([#275](https://github.com/cucumber/cucumber-ruby/issues/275) @chrisbloom7 / Matt Wynne)
|
346
|
+
* (before|after)_step aren't called when scenario outline's table is processed ([#284](https://github.com/cucumber/cucumber-ruby/issues/284) Oleg Sukhodolsky)
|
347
|
+
* Raise exception when remote socket end disconnects using wire protocol ([#348](https://github.com/cucumber/cucumber-ruby/issues/348) @rdammkoehler)
|
348
|
+
* Fix --dry-run option ignored when set via profile ([#248](https://github.com/cucumber/cucumber-ruby/issues/248) / [#255](https://github.com/cucumber/cucumber-ruby/issues/255) Igor Afonov)
|
349
|
+
* More clear suggested ruby code for undefined steps ([#328](https://github.com/cucumber/cucumber-ruby/issues/328) / [#331](https://github.com/cucumber/cucumber-ruby/issues/331) @martco)
|
350
|
+
* Fix exception in Html formatter with --expand mode and undefined steps ([#336](https://github.com/cucumber/cucumber-ruby/issues/336) Roberto Decurnex)
|
351
|
+
* Fix Table.diff! problem with :surplus_row => false and interleaved surplus rows ([#220](https://github.com/cucumber/cucumber-ruby/issues/220))
|
322
352
|
|
323
|
-
## [1.2.1](https://github.com/cucumber/cucumber/compare/v1.2.0...v1.2.1)
|
353
|
+
## [1.2.1](https://github.com/cucumber/cucumber-ruby/compare/v1.2.0...v1.2.1)
|
324
354
|
|
325
355
|
### New Features
|
326
356
|
* Updated to gherkin 2.11.0. (Aslak Hellesøy)
|
327
357
|
|
328
|
-
## [1.2.0](https://github.com/cucumber/cucumber/compare/v1.1.9...v1.2.0)
|
358
|
+
## [1.2.0](https://github.com/cucumber/cucumber-ruby/compare/v1.1.9...v1.2.0)
|
329
359
|
|
330
360
|
### Bugfixes
|
331
|
-
* Fix backtraces in JRuby ([#266](https://github.com/cucumber/cucumber/issues/266) Andrew Kiellor)
|
361
|
+
* Fix backtraces in JRuby ([#266](https://github.com/cucumber/cucumber-ruby/issues/266) Andrew Kiellor)
|
332
362
|
|
333
363
|
### New Features
|
334
|
-
* Extracted the PDF formatter into a separate gem. ([#241](https://github.com/cucumber/cucumber/issues/241) Matt Wynne)
|
335
|
-
* Remove dependency on term/ansicolor ([#43](https://github.com/cucumber/cucumber/issues/43) Joe Fiorini)
|
336
|
-
* Methods for Step Definitions ([#168](https://github.com/cucumber/cucumber/issues/168) Giles Alexander)
|
337
|
-
* Add file:line to step events in formatter API ([#181](https://github.com/cucumber/cucumber/issues/181) Roman Chernyatchik)
|
338
|
-
* Collapsible backgrounds in HTML formatter ([#182](https://github.com/cucumber/cucumber/issues/182) Niklas H)
|
339
|
-
* Slightly cleaner regexp suggestions ([#237](https://github.com/cucumber/cucumber/issues/237) meyering)
|
340
|
-
* Allow for --no-drb command-line option ([#252](https://github.com/cucumber/cucumber/issues/252) Chase Stubblefield)
|
341
|
-
* Add misplaced_col option when diffing tables ([#212](https://github.com/cucumber/cucumber/issues/212) Steve Richert)
|
342
|
-
* JUnit formatter, classname contains only the feature's name ([#193](https://github.com/cucumber/cucumber/issues/193) @litvinok)
|
343
|
-
* Include the output $stderr and $stdout in JUnit formatted XML ([#259](https://github.com/cucumber/cucumber/issues/259) R. Tyler Croy)
|
364
|
+
* Extracted the PDF formatter into a separate gem. ([#241](https://github.com/cucumber/cucumber-ruby/issues/241) Matt Wynne)
|
365
|
+
* Remove dependency on term/ansicolor ([#43](https://github.com/cucumber/cucumber-ruby/issues/43) Joe Fiorini)
|
366
|
+
* Methods for Step Definitions ([#168](https://github.com/cucumber/cucumber-ruby/issues/168) Giles Alexander)
|
367
|
+
* Add file:line to step events in formatter API ([#181](https://github.com/cucumber/cucumber-ruby/issues/181) Roman Chernyatchik)
|
368
|
+
* Collapsible backgrounds in HTML formatter ([#182](https://github.com/cucumber/cucumber-ruby/issues/182) Niklas H)
|
369
|
+
* Slightly cleaner regexp suggestions ([#237](https://github.com/cucumber/cucumber-ruby/issues/237) meyering)
|
370
|
+
* Allow for --no-drb command-line option ([#252](https://github.com/cucumber/cucumber-ruby/issues/252) Chase Stubblefield)
|
371
|
+
* Add misplaced_col option when diffing tables ([#212](https://github.com/cucumber/cucumber-ruby/issues/212) Steve Richert)
|
372
|
+
* JUnit formatter, classname contains only the feature's name ([#193](https://github.com/cucumber/cucumber-ruby/issues/193) @litvinok)
|
373
|
+
* Include the output $stderr and $stdout in JUnit formatted XML ([#259](https://github.com/cucumber/cucumber-ruby/issues/259) R. Tyler Croy)
|
344
374
|
|
345
|
-
## [1.1.9](https://github.com/cucumber/cucumber/compare/v1.1.8...v1.1.9)
|
375
|
+
## [1.1.9](https://github.com/cucumber/cucumber-ruby/compare/v1.1.8...v1.1.9)
|
346
376
|
|
347
377
|
### Bugfixes
|
348
378
|
* Removed deprecation warning for `source_tag_names`. It's not deprecated anymore. (Aslak Hellesøy)
|
349
379
|
|
350
|
-
## [1.1.8](https://github.com/cucumber/cucumber/compare/v1.1.7...v1.1.8)
|
380
|
+
## [1.1.8](https://github.com/cucumber/cucumber-ruby/compare/v1.1.7...v1.1.8)
|
351
381
|
|
352
382
|
### Bugfixes
|
353
|
-
* Column mapping dangerously applied twice to the same cell! ([#202](https://github.com/cucumber/cucumber/issues/202), [#208](https://github.com/cucumber/cucumber/pull/208) Brian Dunn)
|
383
|
+
* Column mapping dangerously applied twice to the same cell! ([#202](https://github.com/cucumber/cucumber-ruby/issues/202), [#208](https://github.com/cucumber/cucumber-ruby/pull/208) Brian Dunn)
|
354
384
|
|
355
385
|
### New Features
|
356
|
-
* Don't pollute RbWorld with the AnsiEscapes methods ([#219](https://github.com/cucumber/cucumber/issues/219), [#221](https://github.com/cucumber/cucumber/pull/221) Ben Woosley)
|
386
|
+
* Don't pollute RbWorld with the AnsiEscapes methods ([#219](https://github.com/cucumber/cucumber-ruby/issues/219), [#221](https://github.com/cucumber/cucumber-ruby/pull/221) Ben Woosley)
|
357
387
|
|
358
|
-
## [1.1.7](https://github.com/cucumber/cucumber/compare/v1.1.6...v1.1.7)
|
388
|
+
## [1.1.7](https://github.com/cucumber/cucumber-ruby/compare/v1.1.6...v1.1.7)
|
359
389
|
|
360
390
|
### Bugfixes
|
361
391
|
|
362
|
-
* Finish off backwards compatability fix for Capybara ([#229](https://github.com/cucumber/cucumber/pull/229) Cezary Baginski)
|
392
|
+
* Finish off backwards compatability fix for Capybara ([#229](https://github.com/cucumber/cucumber-ruby/pull/229) Cezary Baginski)
|
363
393
|
|
364
|
-
## [1.1.6](https://github.com/cucumber/cucumber/compare/v1.1.5...v1.1.6)
|
394
|
+
## [1.1.6](https://github.com/cucumber/cucumber-ruby/compare/v1.1.5...v1.1.6)
|
365
395
|
|
366
396
|
### New features
|
367
397
|
|
368
|
-
* Added `file_colon_line` to `stepdefs.json` (outputted by `--dotcucumber`). ([#214](https://github.com/cucumber/cucumber/pull/214) MOROHASHI Kyosuke)
|
398
|
+
* Added `file_colon_line` to `stepdefs.json` (outputted by `--dotcucumber`). ([#214](https://github.com/cucumber/cucumber-ruby/pull/214) MOROHASHI Kyosuke)
|
369
399
|
|
370
400
|
### Bugfixes
|
371
401
|
|
372
402
|
* Release 1.1.5 unintentionally broke backwards compatibility in some APIs we hadn't considered were used outside of cucumber.
|
373
403
|
Well, it was, in the popular Capybara browser automation tool, so we added back the API we removed. See the history for details. (Aslak Hellesøy)
|
374
404
|
* After some infantile bickering about a trivial bug that any hipster startup ruby programmer could have circumvented by using a fork with a fix,
|
375
|
-
I finally sucked up to a horde of people and made HTML reports work again (I'm gonna rename them TPS reports). ([#203](https://github.com/cucumber/cucumber/pull/203) Jon Merrifield)
|
405
|
+
I finally sucked up to a horde of people and made HTML reports work again (I'm gonna rename them TPS reports). ([#203](https://github.com/cucumber/cucumber-ruby/pull/203) Jon Merrifield)
|
376
406
|
|
377
|
-
## [1.1.5](https://github.com/cucumber/cucumber/compare/v1.1.4...v1.1.5)
|
407
|
+
## [1.1.5](https://github.com/cucumber/cucumber-ruby/compare/v1.1.4...v1.1.5)
|
378
408
|
|
379
409
|
### New Features
|
380
410
|
|
@@ -382,29 +412,29 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber/issues/428)).
|
|
382
412
|
|
383
413
|
### Bugfixes
|
384
414
|
|
385
|
-
* Background fails, but build succeeds ([#205](https://github.com/cucumber/cucumber/issues/205) tcwitte)
|
415
|
+
* Background fails, but build succeeds ([#205](https://github.com/cucumber/cucumber-ruby/issues/205) tcwitte)
|
386
416
|
|
387
|
-
## [1.1.4](https://github.com/cucumber/cucumber/compare/v1.1.3...v1.1.4)
|
417
|
+
## [1.1.4](https://github.com/cucumber/cucumber-ruby/compare/v1.1.3...v1.1.4)
|
388
418
|
|
389
419
|
### New Features
|
390
420
|
|
391
421
|
* Upgrade to Gherkin 2.7.1 (Aslak Hellesøy)
|
392
422
|
|
393
|
-
## [1.1.3](https://github.com/cucumber/cucumber/compare/v1.1.2...v1.1.3)
|
423
|
+
## [1.1.3](https://github.com/cucumber/cucumber-ruby/compare/v1.1.2...v1.1.3)
|
394
424
|
|
395
425
|
### New Features
|
396
426
|
|
397
427
|
* Generate stepdef metadata with --dotcucumber. Useful for Cukepatch. (Aslak Hellesøy)
|
398
|
-
* Show class name of exceptions in the HTML formatter ([#159](https://github.com/cucumber/cucumber/pull/159) Jari Bakken)
|
399
|
-
* Deferred table header and column mappings ([#163](https://github.com/cucumber/cucumber/pull/163) Richard Lawrence)
|
428
|
+
* Show class name of exceptions in the HTML formatter ([#159](https://github.com/cucumber/cucumber-ruby/pull/159) Jari Bakken)
|
429
|
+
* Deferred table header and column mappings ([#163](https://github.com/cucumber/cucumber-ruby/pull/163) Richard Lawrence)
|
400
430
|
|
401
431
|
### Bugfixes
|
402
432
|
|
403
|
-
* Escape exceptions in HTML formatter ([#178](https://github.com/cucumber/cucumber/pull/178) leachdaniel)
|
404
|
-
* Retry when feature_element returns failed ([#172](https://github.com/cucumber/cucumber/pull/172) Charles Finkel)
|
405
|
-
* Rerun formatter output does not include failing scenario outline examples ([#57](https://github.com/cucumber/cucumber/issues/57) Jan Brauer)
|
433
|
+
* Escape exceptions in HTML formatter ([#178](https://github.com/cucumber/cucumber-ruby/pull/178) leachdaniel)
|
434
|
+
* Retry when feature_element returns failed ([#172](https://github.com/cucumber/cucumber-ruby/pull/172) Charles Finkel)
|
435
|
+
* Rerun formatter output does not include failing scenario outline examples ([#57](https://github.com/cucumber/cucumber-ruby/issues/57) Jan Brauer)
|
406
436
|
|
407
|
-
## [1.1.2](https://github.com/cucumber/cucumber/compare/v1.1.1...v1.1.2)
|
437
|
+
## [1.1.2](https://github.com/cucumber/cucumber-ruby/compare/v1.1.1...v1.1.2)
|
408
438
|
|
409
439
|
### Changed features
|
410
440
|
|
@@ -412,7 +442,7 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber/issues/428)).
|
|
412
442
|
|
413
443
|
### Changed features
|
414
444
|
|
415
|
-
* Deprecated i18n methods in World, and added a new #step method to use instead. ([#68](https://github.com/cucumber/cucumber/issues/68) Matt Wynne)
|
445
|
+
* Deprecated i18n methods in World, and added a new #step method to use instead. ([#68](https://github.com/cucumber/cucumber-ruby/issues/68) Matt Wynne)
|
416
446
|
* The JSON formatter output has changed slightly. Old format:
|
417
447
|
|
418
448
|
{
|
@@ -425,44 +455,44 @@ New format:
|
|
425
455
|
|
426
456
|
Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master/History.md) for info about new `id` and `uri` elements in the JSON.
|
427
457
|
|
428
|
-
## [1.1.0](https://github.com/cucumber/cucumber/compare/v1.0.6...v1.1.0)
|
458
|
+
## [1.1.0](https://github.com/cucumber/cucumber-ruby/compare/v1.0.6...v1.1.0)
|
429
459
|
|
430
460
|
### Changed features
|
431
461
|
* The JSON formatter output has changed. See [Gherkin 2.5.0 History](https://github.com/cucumber/gherkin/blob/master/History.md) (Aslak Hellesøy)
|
432
462
|
|
433
|
-
## [1.0.6](https://github.com/cucumber/cucumber/compare/v1.0.5...v1.0.6)
|
463
|
+
## [1.0.6](https://github.com/cucumber/cucumber-ruby/compare/v1.0.5...v1.0.6)
|
434
464
|
|
435
465
|
### Bugfixes
|
436
|
-
* Work around rubygems/yaml utter retardedness ([#136](https://github.com/cucumber/cucumber/issues/136) Aslak Hellesøy)
|
466
|
+
* Work around rubygems/yaml utter retardedness ([#136](https://github.com/cucumber/cucumber-ruby/issues/136) Aslak Hellesøy)
|
437
467
|
|
438
|
-
## [1.0.5](https://github.com/cucumber/cucumber/compare/v1.0.4...v1.0.5)
|
468
|
+
## [1.0.5](https://github.com/cucumber/cucumber-ruby/compare/v1.0.4...v1.0.5)
|
439
469
|
|
440
470
|
### Bugfixes
|
441
471
|
|
442
|
-
* Gemspec corrupted in 1.0.4 (I had to upgrade my rubygems to 1.8.10 to fix it). ([#136](https://github.com/cucumber/cucumber/issues/136) Aslak Hellesøy)
|
472
|
+
* Gemspec corrupted in 1.0.4 (I had to upgrade my rubygems to 1.8.10 to fix it). ([#136](https://github.com/cucumber/cucumber-ruby/issues/136) Aslak Hellesøy)
|
443
473
|
|
444
|
-
## [1.0.4](https://github.com/cucumber/cucumber/compare/v1.0.3...v1.0.4)
|
474
|
+
## [1.0.4](https://github.com/cucumber/cucumber-ruby/compare/v1.0.3...v1.0.4)
|
445
475
|
|
446
476
|
### Bugfixes
|
447
477
|
|
448
|
-
* Guard against the require succeeding, but not properly loading a module. ([#93](https://github.com/cucumber/cucumber/pull/93) Christopher Meiklejohn)
|
449
|
-
* Cmdline arguments parsing error if --drb is enabled. ([#117](https://github.com/cucumber/cucumber/issues/117) Roman Chernyatchik)
|
450
|
-
* Replace capturing groups with non-capturing in RbTransform#to_s ([#106](https://github.com/cucumber/cucumber/pull/106) Thomas Walpole)
|
478
|
+
* Guard against the require succeeding, but not properly loading a module. ([#93](https://github.com/cucumber/cucumber-ruby/pull/93) Christopher Meiklejohn)
|
479
|
+
* Cmdline arguments parsing error if --drb is enabled. ([#117](https://github.com/cucumber/cucumber-ruby/issues/117) Roman Chernyatchik)
|
480
|
+
* Replace capturing groups with non-capturing in RbTransform#to_s ([#106](https://github.com/cucumber/cucumber-ruby/pull/106) Thomas Walpole)
|
451
481
|
* Patched unmatched message in HTML formatter. (Nikita)
|
452
482
|
* Overriding a method that causes a NoMethodError when a Before hook is called on a feature run that has no scenarios. (ccthiel)
|
453
483
|
|
454
|
-
## [1.0.3](https://github.com/cucumber/cucumber/compare/v1.0.2...v1.0.3)
|
484
|
+
## [1.0.3](https://github.com/cucumber/cucumber-ruby/compare/v1.0.2...v1.0.3)
|
455
485
|
|
456
486
|
### Bugfixes
|
457
|
-
* Do not escape the replaced entity ([#126](https://github.com/cucumber/cucumber/pull/126) Jonathan Tron)
|
487
|
+
* Do not escape the replaced entity ([#126](https://github.com/cucumber/cucumber-ruby/pull/126) Jonathan Tron)
|
458
488
|
|
459
489
|
### New Features
|
460
|
-
* DocStrings now have a content_type ([#132](https://github.com/cucumber/cucumber/issues/132) Matt Wynne)
|
490
|
+
* DocStrings now have a content_type ([#132](https://github.com/cucumber/cucumber-ruby/issues/132) Matt Wynne)
|
461
491
|
|
462
|
-
## [1.0.2](https://github.com/cucumber/cucumber/compare/v1.0.1...v1.0.2)
|
492
|
+
## [1.0.2](https://github.com/cucumber/cucumber-ruby/compare/v1.0.1...v1.0.2)
|
463
493
|
|
464
494
|
### Bugfixes
|
465
|
-
* Cucumber 1.0.1 breaks cuke4duke ([#104](https://github.com/cucumber/cucumber/issues/104) Aslak Hellesøy)
|
495
|
+
* Cucumber 1.0.1 breaks cuke4duke ([#104](https://github.com/cucumber/cucumber-ruby/issues/104) Aslak Hellesøy)
|
466
496
|
|
467
497
|
### New Features
|
468
498
|
* Better line truncation if $CUCUMBER_TRUNCATE_OUTPUT has a max line length value. (Aslak Hellesøy)
|
@@ -470,19 +500,19 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/gherkin/blob/master
|
|
470
500
|
### Changes Features
|
471
501
|
* --no-source also excludes location from the summary. (Aslak Hellesøy)
|
472
502
|
|
473
|
-
## [1.0.1](https://github.com/cucumber/cucumber/compare/v1.0.0...v1.0.1)
|
503
|
+
## [1.0.1](https://github.com/cucumber/cucumber-ruby/compare/v1.0.0...v1.0.1)
|
474
504
|
|
475
505
|
### Bugfixes
|
476
|
-
* Removed extra colons emitted by rerun formatter ([#99](https://github.com/cucumber/cucumber/pull/99) Juan Manuel Barreneche)
|
477
|
-
* cucumber 1.0.0 wrong number of arguments error when generating json format on jruby for windows ([#97](https://github.com/cucumber/cucumber/issues/97) (Aslak Hellesøy)
|
478
|
-
* Recent change to junit.rb breaks on Windows ([#81](https://github.com/cucumber/cucumber/issues/81), [#86](https://github.com/cucumber/cucumber/pull/86) Johnlon, Aslak Hellesøy)
|
479
|
-
* Cucumber fails on nil and does not print out failed tests ([#95](https://github.com/cucumber/cucumber/pull/95) Nikita)
|
480
|
-
* Javascript code is not being displayed in HTML output ([#58](https://github.com/cucumber/cucumber/issues/58) Aslak Hellesøy)
|
506
|
+
* Removed extra colons emitted by rerun formatter ([#99](https://github.com/cucumber/cucumber-ruby/pull/99) Juan Manuel Barreneche)
|
507
|
+
* cucumber 1.0.0 wrong number of arguments error when generating json format on jruby for windows ([#97](https://github.com/cucumber/cucumber-ruby/issues/97) (Aslak Hellesøy)
|
508
|
+
* Recent change to junit.rb breaks on Windows ([#81](https://github.com/cucumber/cucumber-ruby/issues/81), [#86](https://github.com/cucumber/cucumber-ruby/pull/86) Johnlon, Aslak Hellesøy)
|
509
|
+
* Cucumber fails on nil and does not print out failed tests ([#95](https://github.com/cucumber/cucumber-ruby/pull/95) Nikita)
|
510
|
+
* Javascript code is not being displayed in HTML output ([#58](https://github.com/cucumber/cucumber-ruby/issues/58) Aslak Hellesøy)
|
481
511
|
|
482
512
|
### New Features
|
483
513
|
* If the CUCUMBER_TRUNCATE_OUTPUT environment variable is set, lines will be truncated. Used by the Cucumber book. (Aslak Hellesøy)
|
484
514
|
|
485
|
-
## [1.0.0](https://github.com/cucumber/cucumber/compare/v0.10.6...v1.0.0)
|
515
|
+
## [1.0.0](https://github.com/cucumber/cucumber-ruby/compare/v0.10.6...v1.0.0)
|
486
516
|
|
487
517
|
Yipeeeeeeeee!
|
488
518
|
|
@@ -491,7 +521,7 @@ Yipeeeeeeeee!
|
|
491
521
|
* Rake task exits with an error if rcov is true and we're on Ruby 1.9.x (Aslak Hellesøy)
|
492
522
|
* Started implementation of cucumber-features (Mike Sassak, Julien Biezemans, Aslak Hellesøy)
|
493
523
|
|
494
|
-
## [0.10.6](https://github.com/cucumber/cucumber/compare/v0.10.5...v0.10.6)
|
524
|
+
## [0.10.6](https://github.com/cucumber/cucumber-ruby/compare/v0.10.5...v0.10.6)
|
495
525
|
|
496
526
|
### New Features
|
497
527
|
* API docs at http://cukes.info/cucumber/api/ruby/latest/
|
@@ -499,7 +529,7 @@ Yipeeeeeeeee!
|
|
499
529
|
### Bugfixes
|
500
530
|
* Fixed a regression in the HTML formatter's #embed implementation (#77 Aslak Hellesøy)
|
501
531
|
|
502
|
-
## [0.10.5](https://github.com/cucumber/cucumber/compare/v0.10.3...v0.10.5)
|
532
|
+
## [0.10.5](https://github.com/cucumber/cucumber-ruby/compare/v0.10.3...v0.10.5)
|
503
533
|
|
504
534
|
(0.10.4 was forgotten!)
|
505
535
|
|
@@ -514,7 +544,7 @@ Yipeeeeeeeee!
|
|
514
544
|
* Fix for Gem.available? deprecation warning (#75 Jake Benilov)
|
515
545
|
* Update URLs to reflect Cucumber's new location on Github (Jake Benilov)
|
516
546
|
|
517
|
-
## [0.10.3](https://github.com/cucumber/cucumber/compare/v0.10.2...v0.10.3)
|
547
|
+
## [0.10.3](https://github.com/cucumber/cucumber-ruby/compare/v0.10.2...v0.10.3)
|
518
548
|
|
519
549
|
### New Features
|
520
550
|
* Better JUnit formatter support for sub directories and scenario outlines (#59 Matt Simpson)
|
@@ -523,12 +553,12 @@ Yipeeeeeeeee!
|
|
523
553
|
* Fix Table#rows cell ordering in ruby 1.8. (#47_github Brian Dunn)
|
524
554
|
* JUnit Formatter: record skipped/pending/undefined scenario results (#655 meeee)
|
525
555
|
|
526
|
-
## [0.10.2](https://github.com/cucumber/cucumber/compare/v0.10.1...v0.10.2)
|
556
|
+
## [0.10.2](https://github.com/cucumber/cucumber-ruby/compare/v0.10.1...v0.10.2)
|
527
557
|
|
528
558
|
### Bugfixes
|
529
559
|
* Neuter both MiniTest::Unit and Test::Unit's overzealous test runners. (Aslak Hellesøy)
|
530
560
|
|
531
|
-
## [0.10.1](https://github.com/cucumber/cucumber/compare/v0.10.0...v0.10.1)
|
561
|
+
## [0.10.1](https://github.com/cucumber/cucumber-ruby/compare/v0.10.0...v0.10.1)
|
532
562
|
|
533
563
|
### New Features
|
534
564
|
* The #embed method can take a 3rd optional label argument. In the HTML report that's used for the link title. (Pat Leamon)
|
@@ -548,7 +578,7 @@ Yipeeeeeeeee!
|
|
548
578
|
* Features files are sorted before they are executed, giving consistent results across different OSes (Guewen Baconnier)
|
549
579
|
* Remove duplicate lines in backtraces in the HTML report (Jari Bakken)
|
550
580
|
|
551
|
-
## [0.10.0](https://github.com/cucumber/cucumber/compare/v0.9.4...v0.10.0)
|
581
|
+
## [0.10.0](https://github.com/cucumber/cucumber-ruby/compare/v0.9.4...v0.10.0)
|
552
582
|
|
553
583
|
We're bumping the minor number in this release because there are some incompatible changes in the JSON support.
|
554
584
|
This should not affect users. The major new feature in this release is ANSICON support for Windows users.
|
@@ -564,7 +594,7 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
564
594
|
### Changed Features
|
565
595
|
* JSON output now contains optional "match", "result" and "embeddings" elements underneath each step. (Aslak Hellesøy)
|
566
596
|
|
567
|
-
## [0.9.4](https://github.com/cucumber/cucumber/compare/v0.9.3...v0.9.4)
|
597
|
+
## [0.9.4](https://github.com/cucumber/cucumber-ruby/compare/v0.9.3...v0.9.4)
|
568
598
|
|
569
599
|
### Bugfixes
|
570
600
|
* Superfluous space after step_keyword value in snippet_text message (#679 Aslak Hellesøy)
|
@@ -573,7 +603,7 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
573
603
|
* Cucumber 0.9.3 prevents Test::Unit from running (#677 Aslak Hellesøy)
|
574
604
|
* Performance degradation when running feature files with over 1000 steps (#675 Dimitri Geshef)
|
575
605
|
|
576
|
-
## [0.9.3](https://github.com/cucumber/cucumber/compare/v0.9.2...v0.9.3)
|
606
|
+
## [0.9.3](https://github.com/cucumber/cucumber-ruby/compare/v0.9.2...v0.9.3)
|
577
607
|
|
578
608
|
### Bugfixes
|
579
609
|
* Better JSON representation of Regexps (Aslak Hellesøy)
|
@@ -581,17 +611,17 @@ This should not affect users. The major new feature in this release is ANSICON s
|
|
581
611
|
* Prevent MiniTest::Unit#autorun from running in at_exit hook. (Aslak Hellesøy)
|
582
612
|
* Fixed incorect --help for --strict. It fails on both pending and undefined. (Aslak Hellesøy)
|
583
613
|
|
584
|
-
## [0.9.2](https://github.com/cucumber/cucumber/compare/v0.9.1...v0.9.2)
|
614
|
+
## [0.9.2](https://github.com/cucumber/cucumber-ruby/compare/v0.9.1...v0.9.2)
|
585
615
|
|
586
616
|
### Bugfixes
|
587
617
|
* Too many open files - getcwd (#666 Aslak Hellesøy)
|
588
618
|
|
589
|
-
## [0.9.1](https://github.com/cucumber/cucumber/compare/v0.9.0...v0.9.1)
|
619
|
+
## [0.9.1](https://github.com/cucumber/cucumber-ruby/compare/v0.9.0...v0.9.1)
|
590
620
|
|
591
621
|
### Bugfixes
|
592
622
|
* Just a minor internal change to make Cuke4Duke happy. (Aslak Hellesøy)
|
593
623
|
|
594
|
-
## [0.9.0](https://github.com/cucumber/cucumber/compare/v0.8.5...v0.9.0)
|
624
|
+
## [0.9.0](https://github.com/cucumber/cucumber-ruby/compare/v0.8.5...v0.9.0)
|
595
625
|
|
596
626
|
Maintenance release for the new release of Gherkin 2.2.3.
|
597
627
|
|
@@ -609,13 +639,13 @@ Maintenance release for the new release of Gherkin 2.2.3.
|
|
609
639
|
### Internal changes
|
610
640
|
* Big refactoring of StepMother (Matt Wynne)
|
611
641
|
|
612
|
-
## [0.8.5](https://github.com/cucumber/cucumber/compare/v0.8.4...v0.8.5)
|
642
|
+
## [0.8.5](https://github.com/cucumber/cucumber-ruby/compare/v0.8.4...v0.8.5)
|
613
643
|
|
614
644
|
### Bugfixes
|
615
645
|
* Location of stepdefs outside the project (in gems) are reported incorrectly. (#583 Aslak Hellesøy)
|
616
646
|
* Cucumber::Rake::Task uses 'bundle exec' when using bundler (#626 John Firebaugh)
|
617
647
|
|
618
|
-
## [0.8.4](https://github.com/cucumber/cucumber/compare/v0.8.3...v0.8.4)
|
648
|
+
## [0.8.4](https://github.com/cucumber/cucumber-ruby/compare/v0.8.3...v0.8.4)
|
619
649
|
|
620
650
|
### Bugfixes
|
621
651
|
* Fix "Errno::EADDRNOTAVAIL" errors that may be received with spork on Snow Leopard. (Lucas Mundim)
|
@@ -624,14 +654,14 @@ Maintenance release for the new release of Gherkin 2.2.3.
|
|
624
654
|
* Detect limit for negative tags (#636 Aslak Hellesøy)
|
625
655
|
* Support for RSpec 2 doubles (mocks and stubs) (Aslak Hellesøy)
|
626
656
|
|
627
|
-
## [0.8.3](https://github.com/cucumber/cucumber/compare/v0.8.2...v0.8.3)
|
657
|
+
## [0.8.3](https://github.com/cucumber/cucumber-ruby/compare/v0.8.2...v0.8.3)
|
628
658
|
|
629
659
|
Just a quick bugfix release.
|
630
660
|
|
631
661
|
### Bugfixes
|
632
662
|
* Scenario outlines that fail with exception exit process (Aslak Hellesøy)
|
633
663
|
|
634
|
-
## [0.8.2](https://github.com/cucumber/cucumber/compare/v0.8.1...v0.8.2)
|
664
|
+
## [0.8.2](https://github.com/cucumber/cucumber-ruby/compare/v0.8.1...v0.8.2)
|
635
665
|
|
636
666
|
Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
637
667
|
|
@@ -644,7 +674,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
644
674
|
### New Features
|
645
675
|
* JavaScript to Hide/Expand Scenarios in HTML report (#621 stkenned)
|
646
676
|
|
647
|
-
## [0.8.1](https://github.com/cucumber/cucumber/compare/v0.8.0...v0.8.1)
|
677
|
+
## [0.8.1](https://github.com/cucumber/cucumber-ruby/compare/v0.8.0...v0.8.1)
|
648
678
|
|
649
679
|
### Bufixes
|
650
680
|
* generate test report fails: ast/outline_table.rb fails in status() (#615 Aslak Hellesøy)
|
@@ -652,7 +682,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
652
682
|
### New Features
|
653
683
|
* Undefined steps with integers (Given 3 cukes) will generate snippets like (Given /(\d+) cukes/). (Aslak Hellesøy)
|
654
684
|
|
655
|
-
## [0.8.0](https://github.com/cucumber/cucumber/compare/v0.7.3...v0.8.0)
|
685
|
+
## [0.8.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.3...v0.8.0)
|
656
686
|
|
657
687
|
### Bugfixes
|
658
688
|
* Require profile option causes a NoMethodError for Cucumber with JRuby (#601 John Firebaugh)
|
@@ -671,18 +701,18 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
671
701
|
* Ruby snippets will use "([^"]*)" instead of "([^\"]*)"$/ - wasn't properly fixed in 0.7.1. (Aslak Hellesøy)
|
672
702
|
* Preserve the order features files are passed and use this for execution order (#617 Joseph Wilk)
|
673
703
|
|
674
|
-
## [0.7.3](https://github.com/cucumber/cucumber/compare/v0.7.2...v0.7.3)
|
704
|
+
## [0.7.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.2...v0.7.3)
|
675
705
|
|
676
706
|
### New Features
|
677
707
|
* Table cells can now contain escaped bars - \| and escaped backslashes - \\. (Gregory Hnatiuk, Aslak Hellesøy)
|
678
708
|
* Added support for Around hooks. (#605 John Firebaugh)
|
679
709
|
|
680
|
-
## [0.7.2](https://github.com/cucumber/cucumber/compare/v0.7.1...v0.7.2)
|
710
|
+
## [0.7.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.1...v0.7.2)
|
681
711
|
|
682
712
|
### Bugfixes
|
683
713
|
* REALLY add backwards compatibility fix (with deprecation warning) for legacy 0.6.4 formatters. (Aslak Hellesøy)
|
684
714
|
|
685
|
-
## [0.7.1](https://github.com/cucumber/cucumber/compare/v0.7.0...v0.7.1)
|
715
|
+
## [0.7.1](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0...v0.7.1)
|
686
716
|
|
687
717
|
### Bugfixes
|
688
718
|
* Add backwards compatibility fix (with deprecation warning) for legacy 0.6.4 formatters. (Aslak Hellesøy)
|
@@ -690,29 +720,29 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
|
|
690
720
|
### Changed Features
|
691
721
|
* Ruby and Javascript snippets will use "([^"]*)" instead of "([^\"]*)"$/ (Aslak Hellesøy)
|
692
722
|
|
693
|
-
## [0.7.0](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.8...v0.7.0)
|
723
|
+
## [0.7.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.8...v0.7.0)
|
694
724
|
|
695
725
|
This release is an important milestone for Cucumber. A new parser (the gherkin gem) parses feature
|
696
726
|
files 50-100 times faster than with 0.6.x and previous releases. Make sure you read the upgrade
|
697
727
|
instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
698
728
|
|
699
|
-
## [0.7.0.beta.8](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.7...v0.7.0.beta.8)
|
729
|
+
## [0.7.0.beta.8](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.7...v0.7.0.beta.8)
|
700
730
|
|
701
731
|
### Bugfixes
|
702
732
|
* Inconsistent order of execution Background and Before in 0.7.0.beta.2 (#600 Mike Sassak)
|
703
733
|
* Make sure both lexing and parsing errors are captured and reported with line number (Gregory Hnatiuk)
|
704
734
|
|
705
|
-
## [0.7.0.beta.7](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.6...v0.7.0.beta.7)
|
735
|
+
## [0.7.0.beta.7](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.6...v0.7.0.beta.7)
|
706
736
|
|
707
737
|
### Bugfixes
|
708
738
|
* Depend on gherkin-1.0.22, which should now make things work on Windows and Ruby 1.8.x-1.9.x. (Aslak Hellesøy)
|
709
739
|
|
710
|
-
## [0.7.0.beta.6](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.5...v0.7.0.beta.6)
|
740
|
+
## [0.7.0.beta.6](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.5...v0.7.0.beta.6)
|
711
741
|
|
712
742
|
### Bugfixes
|
713
743
|
* Fixed a small regression with pystrings and calling steps from stepdefs, introduced in a previous beta. (Aslak Hellesøy)
|
714
744
|
|
715
|
-
## [0.7.0.beta.5](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.4...v0.7.0.beta.5)
|
745
|
+
## [0.7.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.4...v0.7.0.beta.5)
|
716
746
|
|
717
747
|
### New Features
|
718
748
|
* Support RSpec 2. (RSpec >= 1.2.4 is still supported). (Aslak Hellesøy, Ryan Bigg)
|
@@ -720,7 +750,7 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
|
720
750
|
### Removed features
|
721
751
|
* No more support for RSpec <= 1.2.3. (Aslak Hellesøy)
|
722
752
|
|
723
|
-
## [0.7.0.beta.4](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.3...v0.7.0.beta.4)
|
753
|
+
## [0.7.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.3...v0.7.0.beta.4)
|
724
754
|
|
725
755
|
### New Features
|
726
756
|
* New, experimental V8 javascript support - step definitions in Javascript! (Joseph Wilk)
|
@@ -728,17 +758,17 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
|
|
728
758
|
### Bugfixes
|
729
759
|
* Gherkin is loaded via rubygems if it can't be found on the $LOAD_PATH. (Aslak Hellesøy)
|
730
760
|
|
731
|
-
## [0.7.0.beta.3](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.2...v0.7.0.beta.3)
|
761
|
+
## [0.7.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.2...v0.7.0.beta.3)
|
732
762
|
|
733
763
|
### Changed Features
|
734
764
|
* Step Definitions and calling steps from step definitions can again use And and But (was removed in 0.7.0.beta.2) (Aslak Hellesøy)
|
735
765
|
|
736
|
-
## [0.7.0.beta.2](https://github.com/cucumber/cucumber/compare/v0.7.0.beta.1...v0.7.0.beta.2)
|
766
|
+
## [0.7.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.1...v0.7.0.beta.2)
|
737
767
|
|
738
768
|
### New Features
|
739
769
|
* Depend on Gherkin 1.0.18, which has some bugfixes. (Aslak Hellesøy)
|
740
770
|
|
741
|
-
## [0.7.0.beta.1](https://github.com/cucumber/cucumber/compare/v0.6.4...v0.7.0.beta.1)
|
771
|
+
## [0.7.0.beta.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.4...v0.7.0.beta.1)
|
742
772
|
|
743
773
|
Treetop is gone and replaced with Ragel. The new Ragel parser lives in the gherkin gem.
|
744
774
|
Parse times are up to 100 times faster.
|
@@ -749,7 +779,7 @@ Parse times are up to 100 times faster.
|
|
749
779
|
### Changed Features
|
750
780
|
* New i18n translations now have to be contributed to the gherkin project.
|
751
781
|
|
752
|
-
## [0.6.4](https://github.com/cucumber/cucumber/compare/v0.6.3...v0.6.4)
|
782
|
+
## [0.6.4](https://github.com/cucumber/cucumber-ruby/compare/v0.6.3...v0.6.4)
|
753
783
|
|
754
784
|
### Bugfixes
|
755
785
|
* Better handling of --guess with optional capture groups (Tim Felgentreff)
|
@@ -770,7 +800,7 @@ Parse times are up to 100 times faster.
|
|
770
800
|
* Switced to ISO 639-1 (language) and ISO 3166 alpha-2 (region - if applicable). Applies to Catalan,
|
771
801
|
Swedish, Welsh, Romanian and Serbian. (Aslak Hellesøy)
|
772
802
|
|
773
|
-
## [0.6.3](https://github.com/cucumber/cucumber/compare/v0.6.2...v0.6.3)
|
803
|
+
## [0.6.3](https://github.com/cucumber/cucumber-ruby/compare/v0.6.2...v0.6.3)
|
774
804
|
|
775
805
|
### Bugfixes
|
776
806
|
* Split arguments in cucumber.yml with shellwords. Example: myprofile: --out="Features report.html" (Nathaniel Haas)
|
@@ -789,7 +819,7 @@ Parse times are up to 100 times faster.
|
|
789
819
|
* Add tags to begin/end scenario messages on wire protocol to support tagged hooks (#571 Matt Wynne)
|
790
820
|
* Default timeouts to 120s for invoke, begin_scenario and end_scenario messages in wire protocol (#572 Matt Wynne)
|
791
821
|
|
792
|
-
## [0.6.2](https://github.com/cucumber/cucumber/compare/v0.6.1...v0.6.2)
|
822
|
+
## [0.6.2](https://github.com/cucumber/cucumber-ruby/compare/v0.6.1...v0.6.2)
|
793
823
|
|
794
824
|
### Bugfixes
|
795
825
|
* Update --help for --tags which was out of date. (Aslak Hellesøy)
|
@@ -806,12 +836,12 @@ Parse times are up to 100 times faster.
|
|
806
836
|
### Removed features
|
807
837
|
* element_at and table_at have been removed. Use tableish in cucumber-rails instead. (Aslak Hellesœy)
|
808
838
|
|
809
|
-
## [0.6.1](https://github.com/cucumber/cucumber/compare/v0.6.0...v0.6.1)
|
839
|
+
## [0.6.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.0...v0.6.1)
|
810
840
|
|
811
841
|
### Bugfixes
|
812
842
|
* Fixed broken console handling on Windows/JRuby that was introduced in 0.6.0. (Aslak Hellesøy)
|
813
843
|
|
814
|
-
## [0.6.0](https://github.com/cucumber/cucumber/compare/v0.5.3...v0.6.0)
|
844
|
+
## [0.6.0](https://github.com/cucumber/cucumber-ruby/compare/v0.5.3...v0.6.0)
|
815
845
|
|
816
846
|
Bumping to 0.6.0 for this release since we're breaking backwards compatibility with tags.
|
817
847
|
|
@@ -836,14 +866,14 @@ Bumping to 0.6.0 for this release since we're breaking backwards compatibility w
|
|
836
866
|
* All features (except 4) pass on 1.9.2 (but not on 1.9.1) (Aslak Hellesøy)
|
837
867
|
* Add missing require statement in rerun formatter which broke RubyMine (Noah Sussman)
|
838
868
|
|
839
|
-
## [0.5.3](https://github.com/cucumber/cucumber/compare/v0.5.2...v0.5.3)
|
869
|
+
## [0.5.3](https://github.com/cucumber/cucumber-ruby/compare/v0.5.2...v0.5.3)
|
840
870
|
|
841
871
|
Another small release today to please a sister project. This time Cuke4Nuke.
|
842
872
|
|
843
873
|
### New Features
|
844
874
|
* Simplified wire protocol to mostly use success / fail responses (Matt Wynne)
|
845
875
|
|
846
|
-
## [0.5.2](https://github.com/cucumber/cucumber/compare/v0.5.1...v0.5.2)
|
876
|
+
## [0.5.2](https://github.com/cucumber/cucumber-ruby/compare/v0.5.1...v0.5.2)
|
847
877
|
|
848
878
|
### New Features
|
849
879
|
* On JRuby/Cuke4Duke, --require DIR will put DIR on the $CLASSPATH, making it easier to load step def classes (Aslak Hellesøy)
|
@@ -853,14 +883,14 @@ Another small release today to please a sister project. This time Cuke4Nuke.
|
|
853
883
|
* Add #embed back to html formatter (#547 Brandon Faloona)
|
854
884
|
* Refactored wire protocol code and added configurable timeout to allow for long running step definitions. (#546 Matt Wynne)
|
855
885
|
|
856
|
-
## [0.5.1](https://github.com/cucumber/cucumber/compare/v0.5.0...v0.5.1)
|
886
|
+
## [0.5.1](https://github.com/cucumber/cucumber-ruby/compare/v0.5.0...v0.5.1)
|
857
887
|
|
858
888
|
Small bugfix release.
|
859
889
|
|
860
890
|
### Bugfixes
|
861
891
|
* Replaced dependency on json gem with an error message, so that the cucumber gem installs on JRuby. (Aslak Hellesøy)
|
862
892
|
|
863
|
-
## [0.5.0](https://github.com/cucumber/cucumber/compare/v0.4.4...v0.5.0)
|
893
|
+
## [0.5.0](https://github.com/cucumber/cucumber-ruby/compare/v0.4.4...v0.5.0)
|
864
894
|
|
865
895
|
We're bumping to 0.5.0 for this release since all of the Rails code has now moved to a new gem - cucumber-rails.
|
866
896
|
Please see History.txt in cucumber-rails for details about what's new on the Rails side.
|
@@ -891,7 +921,7 @@ Please see History.txt in cucumber-rails for details about what's new on the Rai
|
|
891
921
|
* All Rails-related code is in a separate gem: cucumber-rails. Install that if you're working with Rails. (#483 Aslak Hellesøy)
|
892
922
|
* --language is removed: http://wiki.github.com/aslakhellesoy/cucumber/spoken-languages (Aslak Hellesøy)
|
893
923
|
|
894
|
-
## [0.4.4](https://github.com/cucumber/cucumber/compare/v0.4.3...v0.4.4)
|
924
|
+
## [0.4.4](https://github.com/cucumber/cucumber-ruby/compare/v0.4.3...v0.4.4)
|
895
925
|
|
896
926
|
What a bad day to make a release, but here goes.
|
897
927
|
|
@@ -916,7 +946,7 @@ What a bad day to make a release, but here goes.
|
|
916
946
|
* $cucumber_interrupted is now Cucumber.wants_to_quit - avoid global variable, which gives warnings. (Aslak Hellesøy)
|
917
947
|
* Examples keyword without a colon is deprecated loudly. Gherkin will not recognize it at all. (Gherkin #30 Mike Sassak)
|
918
948
|
|
919
|
-
## [0.4.3](https://github.com/cucumber/cucumber/compare/v0.4.2...v0.4.3)
|
949
|
+
## [0.4.3](https://github.com/cucumber/cucumber-ruby/compare/v0.4.2...v0.4.3)
|
920
950
|
|
921
951
|
The exciting thing about this release is that the wire protocol is starting to take shape. This means you can
|
922
952
|
now use Cucumber with .NET - writing step definitions in C#. And this is without having to use IronRuby at all!
|
@@ -945,11 +975,11 @@ As usual there are several small features and bug fixes.
|
|
945
975
|
* Better Danish translation (Thorbjørn Ravn Andersen)
|
946
976
|
|
947
977
|
|
948
|
-
## [0.4.2](https://github.com/cucumber/cucumber/compare/v0.4.1...v0.4.2)
|
978
|
+
## [0.4.2](https://github.com/cucumber/cucumber-ruby/compare/v0.4.1...v0.4.2)
|
949
979
|
|
950
980
|
Bugfix release. The 0.4.1 release was hosed when switching from Hoe to Jeweler.
|
951
981
|
|
952
|
-
## [0.4.1](https://github.com/cucumber/cucumber/compare/v0.4.0...v0.4.1)
|
982
|
+
## [0.4.1](https://github.com/cucumber/cucumber-ruby/compare/v0.4.0...v0.4.1)
|
953
983
|
|
954
984
|
This is mostly a bugfix release. Some of Cucumber's own features have been fixed so they pass on more platforms,
|
955
985
|
making it easier for people to contribute. The README.txt also describes how to get up and running with the
|
@@ -976,7 +1006,7 @@ development environment.
|
|
976
1006
|
* Added StepMother#invoke(step_name, multiline_argument=nil) - needed by cuke4duke ticket #26 (Aslak Hellesøy)
|
977
1007
|
* StepDefinitionMethods is gone.
|
978
1008
|
|
979
|
-
## [0.4.0](https://github.com/cucumber/cucumber/compare/v0.3.104...v0.4.0)
|
1009
|
+
## [0.4.0](https://github.com/cucumber/cucumber-ruby/compare/v0.3.104...v0.4.0)
|
980
1010
|
|
981
1011
|
The back to stable release. When we went from 0.3.11 to 0.3.90 we thought we were close to a 0.4.0 release. Then the community
|
982
1012
|
went nuts and a lot of great contributions came in. Some of those broke backwards compatibility, and we decided it would be
|
@@ -1023,7 +1053,7 @@ that will give you more information so you can solve any problems. If not, just
|
|
1023
1053
|
* Better backtraces for Ruby 1.8.7. (Jakob Skov-Pedersen)
|
1024
1054
|
* String step definitions ( Given 'I have $number cucumbers' ) are escaped before being turned into regular expressions. (David Waite)
|
1025
1055
|
|
1026
|
-
## [0.3.104](https://github.com/cucumber/cucumber/compare/v0.3.103...v0.3.104)
|
1056
|
+
## [0.3.104](https://github.com/cucumber/cucumber-ruby/compare/v0.3.103...v0.3.104)
|
1027
1057
|
|
1028
1058
|
This release has some minor changes to the command line and formatters. The biggest change is internally, paving
|
1029
1059
|
the way for more programming language support in Cuke4Duke, which now supports step definitions written in Java, Scala,
|
@@ -1048,7 +1078,7 @@ Groovy, Clojure and Javascript!
|
|
1048
1078
|
* The steps formatter has been renamed to stepdefs formatter. (Aslak Hellesøy)
|
1049
1079
|
* The internal programming language API has changed, giving more power to the implementation. See #428. (Aslak Hellesøy)
|
1050
1080
|
|
1051
|
-
## [0.3.103](https://github.com/cucumber/cucumber/compare/v0.3.102...v0.3.103)
|
1081
|
+
## [0.3.103](https://github.com/cucumber/cucumber-ruby/compare/v0.3.102...v0.3.103)
|
1052
1082
|
|
1053
1083
|
This release gives you back some of the control over the Rails environment that was accidentally taken away from you in the
|
1054
1084
|
previous release.
|
@@ -1066,7 +1096,7 @@ Using this release on a Rails project requires a rerun of script/generate cucumb
|
|
1066
1096
|
### Changed Features
|
1067
1097
|
* The Formatter API has completely changed. Formatters are no longer a double-dispacth visitor - just a single-dispatch listener (#438 Matt Wynne)
|
1068
1098
|
|
1069
|
-
## [0.3.102](https://github.com/cucumber/cucumber/compare/v0.3.101...v0.3.102)
|
1099
|
+
## [0.3.102](https://github.com/cucumber/cucumber-ruby/compare/v0.3.101...v0.3.102)
|
1070
1100
|
|
1071
1101
|
This release has some changes in the Rails support, so make sure you run "script/generate cucumber" after you upgrade.
|
1072
1102
|
Other noteworthy new features are improved Hook, tags and Transform support, and as always - several smaller bug fixes.
|
@@ -1094,7 +1124,7 @@ Other noteworthy new features are improved Hook, tags and Transform support, and
|
|
1094
1124
|
* The Cucumber::Rails.bypass_rescue no longer exists. Errors will always bubble up, unless you use the new @allow_rescue tag. (Aslak Hellesøy)
|
1095
1125
|
* The Cucumber::Rails.use_transactional_fixtures no longer exists. Transactional fixtures are always enabled for the cucumber environment. (Aslak Hellesøy)
|
1096
1126
|
|
1097
|
-
## [0.3.101](https://github.com/cucumber/cucumber/compare/v0.3.100...v0.3.101)
|
1127
|
+
## [0.3.101](https://github.com/cucumber/cucumber-ruby/compare/v0.3.100...v0.3.101)
|
1098
1128
|
|
1099
1129
|
Two exciting things in this release. Step Argument Transforms and a PDF formatter you can use to send
|
1100
1130
|
your features to your customer for review!
|
@@ -1107,7 +1137,7 @@ your features to your customer for review!
|
|
1107
1137
|
* Adding webrat steps for asserting content does or does not exist within a particular element
|
1108
1138
|
(using webrat's within method) (Kieran Pilkington)
|
1109
1139
|
|
1110
|
-
## [0.3.100](https://github.com/cucumber/cucumber/compare/v0.3.99...v0.3.100)
|
1140
|
+
## [0.3.100](https://github.com/cucumber/cucumber-ruby/compare/v0.3.99...v0.3.100)
|
1111
1141
|
|
1112
1142
|
The JavaZone release!
|
1113
1143
|
|
@@ -1119,7 +1149,7 @@ The JavaZone release!
|
|
1119
1149
|
* Backtraces on JRuby are handled in a cleaner way when the exception comes from Java (NativeException). (Aslak Hellesøy)
|
1120
1150
|
* When exceptions occur in a Before block the rest of the scenario is now skipped (#331 Matt Wynne)
|
1121
1151
|
|
1122
|
-
## [0.3.99](https://github.com/cucumber/cucumber/compare/v0.3.98...v0.3.99)
|
1152
|
+
## [0.3.99](https://github.com/cucumber/cucumber-ruby/compare/v0.3.98...v0.3.99)
|
1123
1153
|
|
1124
1154
|
### New Features
|
1125
1155
|
* Support for Croatian (Bkrsta)
|
@@ -1128,7 +1158,7 @@ The JavaZone release!
|
|
1128
1158
|
* New AfterConfiguration hook added; a block can be specified that takes Cucumber::Cli::Configuration (#423 Brent Snook)
|
1129
1159
|
* Cucumber::Cli::Configuration#feature_dirs and #out_stream exposed as public attributes so that they may be used in AfterConfiguration hook (#423 Brent Snook)
|
1130
1160
|
|
1131
|
-
## [0.3.98](https://github.com/cucumber/cucumber/compare/v0.3.97...v0.3.98)
|
1161
|
+
## [0.3.98](https://github.com/cucumber/cucumber-ruby/compare/v0.3.97...v0.3.98)
|
1132
1162
|
|
1133
1163
|
Just a small release to help Cuke4Duke, which will be presented at Agile2009
|
1134
1164
|
in 2 days.
|
@@ -1137,7 +1167,7 @@ in 2 days.
|
|
1137
1167
|
* Backtrace filtering now happens in StepInvocation class, meaning other languages (Cuke4Duke) can get backtraces stripped. (Aslak Hellesøy)
|
1138
1168
|
* Cucumber::Ast::Table#map_headers now allows for a block that will convert all the headers. See docs for details. (Ben Mabey)
|
1139
1169
|
|
1140
|
-
## [0.3.97](https://github.com/cucumber/cucumber/compare/v0.3.96...v0.3.97)
|
1170
|
+
## [0.3.97](https://github.com/cucumber/cucumber-ruby/compare/v0.3.96...v0.3.97)
|
1141
1171
|
|
1142
1172
|
The AA-FTT release. Creating a release for the AA-FTT meeting in Chicago so that we can play
|
1143
1173
|
with the new language API and maybe knock out some better .NET support.
|
@@ -1156,7 +1186,7 @@ with the new language API and maybe knock out some better .NET support.
|
|
1156
1186
|
* Changed the Programming Language API to support languages without "bleed through" (e.g. rubypython can't invoke ruby objs) (Aslak Hellesøy)
|
1157
1187
|
* The Programming Language API manages hooks on the language level instead of on the step mother level (Aslak Hellesøy)
|
1158
1188
|
|
1159
|
-
## [0.3.96](https://github.com/cucumber/cucumber/compare/v0.3.95...v0.3.96)
|
1189
|
+
## [0.3.96](https://github.com/cucumber/cucumber-ruby/compare/v0.3.95...v0.3.96)
|
1160
1190
|
|
1161
1191
|
This release doesn't have any significant new features or bug fixes, but there are big
|
1162
1192
|
internal changes. This release has a new API for plugging in other programming languages.
|
@@ -1175,7 +1205,7 @@ be patched. Please upgrade to Spork 0.5.9 if you are using Spork.
|
|
1175
1205
|
* --strict will cause an exit code 1 for missing and pending (used to be for missing only). (Mads Buus)
|
1176
1206
|
* junit formatter doesn't report pending steps unless --strict is used. (Mads Buus)
|
1177
1207
|
|
1178
|
-
## [0.3.95](https://github.com/cucumber/cucumber/compare/v0.3.94...v0.3.95)
|
1208
|
+
## [0.3.95](https://github.com/cucumber/cucumber-ruby/compare/v0.3.94...v0.3.95)
|
1179
1209
|
|
1180
1210
|
This release improves Webrat support for table-like HTML markup. Now you can easily turn the HTML
|
1181
1211
|
elements table, dl, ol and ul elements into a 2D array. This is particularly useful for comparing
|
@@ -1202,7 +1232,7 @@ This release also fixes several bugs related to --drb (Spork) and profiles (cucu
|
|
1202
1232
|
* element_at('table').to_table should be used instead of table_at('table').to_a. The old way is deprecated but still works. (Aslak Hellesøy)
|
1203
1233
|
* element_at (and the depracated table_at) no longer takes a DOM id, only CSS selectors. Change "my_id" to "#my_id". (Aslak Hellesøy)
|
1204
1234
|
|
1205
|
-
## [0.3.94](https://github.com/cucumber/cucumber/compare/v0.3.93...v0.3.94)
|
1235
|
+
## [0.3.94](https://github.com/cucumber/cucumber-ruby/compare/v0.3.93...v0.3.94)
|
1206
1236
|
|
1207
1237
|
Kanban take II.
|
1208
1238
|
|
@@ -1231,7 +1261,7 @@ You'll achieve better flow this way.
|
|
1231
1261
|
* Document builtin formatters with --help. (#406 Aslak Hellesøy)
|
1232
1262
|
* Added support for using regular expressions when mapping table headers. (Peter Williams)
|
1233
1263
|
|
1234
|
-
## [0.3.93](https://github.com/cucumber/cucumber/compare/v0.3.92...v0.3.93)
|
1264
|
+
## [0.3.93](https://github.com/cucumber/cucumber-ruby/compare/v0.3.92...v0.3.93)
|
1235
1265
|
|
1236
1266
|
Highlights in this release: Improved profile handling (cucumber.yml) and a fix for cucumber hanging.
|
1237
1267
|
|
@@ -1246,7 +1276,7 @@ Highlights in this release: Improved profile handling (cucumber.yml) and a fix f
|
|
1246
1276
|
* script/cucumber correctly loads the gem's binary if the plugin isn't installed.
|
1247
1277
|
* Cucumber hangs waiting for Ctrl+C if an Error is raised. (#374 Aslak Hellesøy)
|
1248
1278
|
|
1249
|
-
## [0.3.92](https://github.com/cucumber/cucumber/compare/v0.3.91...v0.3.92)
|
1279
|
+
## [0.3.92](https://github.com/cucumber/cucumber-ruby/compare/v0.3.91...v0.3.92)
|
1250
1280
|
|
1251
1281
|
This release has some minor improvements to the new Table.diff! functionality. For example,
|
1252
1282
|
if you're using Webrat and you want to compare a feature table with a HTML table containing
|
@@ -1267,7 +1297,7 @@ links in one of the columns, you can do:
|
|
1267
1297
|
### Changed Features
|
1268
1298
|
* The 'default' profile is now ALWAYS used unless you specify another profile or use the -P or --no-profile flag. (#344 Ben Mabey)
|
1269
1299
|
|
1270
|
-
## [0.3.91](https://github.com/cucumber/cucumber/compare/v0.3.90...v0.3.91)
|
1300
|
+
## [0.3.91](https://github.com/cucumber/cucumber-ruby/compare/v0.3.90...v0.3.91)
|
1271
1301
|
|
1272
1302
|
### New Features
|
1273
1303
|
* CTRL-C will exit immediately instead of carrying on until all features are run. (Aslak Hellesøy)
|
@@ -1275,7 +1305,7 @@ links in one of the columns, you can do:
|
|
1275
1305
|
* Support limiting the number of feature elements with certain tags (#353 Joseph Wilk)
|
1276
1306
|
* Table support for cuke4duke
|
1277
1307
|
|
1278
|
-
## [0.3.90](https://github.com/cucumber/cucumber/compare/v0.3.11...v0.3.90)
|
1308
|
+
## [0.3.90](https://github.com/cucumber/cucumber-ruby/compare/v0.3.11...v0.3.90)
|
1279
1309
|
|
1280
1310
|
The Hot summer release
|
1281
1311
|
|
@@ -1376,7 +1406,7 @@ This release also has several bugfixes related to --format and Before/After hook
|
|
1376
1406
|
* The data returned from Table#hashes and similar methods are frozen. Dup if you need to modify. (Aslak Hellesøy)
|
1377
1407
|
* Visitor.visit_table_cell_value(value, col_width, status) is now visitor.visit_table_cell_value(value, status)
|
1378
1408
|
|
1379
|
-
## [0.3.11](https://github.com/cucumber/cucumber/compare/v0.3.10...v0.3.11)
|
1409
|
+
## [0.3.11](https://github.com/cucumber/cucumber-ruby/compare/v0.3.10...v0.3.11)
|
1380
1410
|
|
1381
1411
|
This release just fixes a tiny bug in the formatter to fix an incompatibility
|
1382
1412
|
with the latest RedMine release. It should have been included in 0.3.10, but
|
@@ -1385,7 +1415,7 @@ was forgotten.
|
|
1385
1415
|
### Bugfixes
|
1386
1416
|
* Formatter API was broken in 0.3.9 (Roman Chernyatchik)
|
1387
1417
|
|
1388
|
-
## [0.3.10](https://github.com/cucumber/cucumber/compare/v0.3.9...v0.3.10)
|
1418
|
+
## [0.3.10](https://github.com/cucumber/cucumber-ruby/compare/v0.3.9...v0.3.10)
|
1389
1419
|
|
1390
1420
|
The Spork Release!
|
1391
1421
|
|
@@ -1425,7 +1455,7 @@ This release also has some minor bugfixes related to RSpec and Rails interop.
|
|
1425
1455
|
### Changed features
|
1426
1456
|
* The HTML formatter wraps examples in a div, and distinguishes between Scenario and Scenario Outline. (Aslak Hellesøy)
|
1427
1457
|
|
1428
|
-
## [0.3.9](https://github.com/cucumber/cucumber/compare/v0.3.8...v0.3.9)
|
1458
|
+
## [0.3.9](https://github.com/cucumber/cucumber-ruby/compare/v0.3.8...v0.3.9)
|
1429
1459
|
|
1430
1460
|
Bugfix release for 0.3.8 released earlier today. 0.3.8 had a bug in the Rails cucumber
|
1431
1461
|
generator which is fixed in 0.3.9.
|
@@ -1434,7 +1464,7 @@ generator which is fixed in 0.3.9.
|
|
1434
1464
|
* Fix broken Rails cucumber generator (Tim Glen)
|
1435
1465
|
* The Cucumber Rake task in non-fork mode will properly cause Rake to exit with 1 when Cucumber fails. (Aslak Hellesøy)
|
1436
1466
|
|
1437
|
-
## [0.3.8](https://github.com/cucumber/cucumber/compare/v0.3.7...v0.3.8)
|
1467
|
+
## [0.3.8](https://github.com/cucumber/cucumber-ruby/compare/v0.3.7...v0.3.8)
|
1438
1468
|
|
1439
1469
|
This Cucumber version fixes several bugs related to Ruby on Rails and RSpec. If you
|
1440
1470
|
use Cucumber with a Rails app we*strongly* recommend you bootstrap Cucumber again:
|
@@ -1455,7 +1485,7 @@ use Cucumber with a Rails app we*strongly* recommend you bootstrap Cucumber agai
|
|
1455
1485
|
* Better coexistence with RSpec - Cucumber now*neuters* the part of RSpec that tries to parse ARGV.
|
1456
1486
|
* The differ= exception is gone (#325, #340 Aslak Hellesøy)
|
1457
1487
|
|
1458
|
-
## [0.3.7](https://github.com/cucumber/cucumber/compare/v0.3.6...v0.3.7)
|
1488
|
+
## [0.3.7](https://github.com/cucumber/cucumber-ruby/compare/v0.3.6...v0.3.7)
|
1459
1489
|
|
1460
1490
|
This is the "Help JetBrains RubyMine" release!
|
1461
1491
|
|
@@ -1468,7 +1498,7 @@ This is the "Help JetBrains RubyMine" release!
|
|
1468
1498
|
* 'specs' folder needs to be renamed back to 'spec' (#339 Aslak Hellesøy)
|
1469
1499
|
* CUCUMBER_OPTS doesn't work for cucumber rake tasks (#336 Aslak Hellesøy)
|
1470
1500
|
|
1471
|
-
## [0.3.6](https://github.com/cucumber/cucumber/compare/v0.3.5...v0.3.6)
|
1501
|
+
## [0.3.6](https://github.com/cucumber/cucumber-ruby/compare/v0.3.5...v0.3.6)
|
1472
1502
|
|
1473
1503
|
Kanban! With this release you can tag features or scenarios that are work in progress
|
1474
1504
|
with a tag and use the new --wip switch.
|
@@ -1486,14 +1516,14 @@ Another handy feature in this release is that you can package your own formatter
|
|
1486
1516
|
* Gracefully handle exceptions in After block (#330 Matt Wynne)
|
1487
1517
|
* Feature with only Background doesn't run hooks (#314, #329 Aslak Hellesøy)
|
1488
1518
|
|
1489
|
-
## [0.3.5](https://github.com/cucumber/cucumber/compare/v0.3.4...v0.3.5)
|
1519
|
+
## [0.3.5](https://github.com/cucumber/cucumber-ruby/compare/v0.3.4...v0.3.5)
|
1490
1520
|
|
1491
1521
|
Let's make a new release today because two annoying bugs are fixed.
|
1492
1522
|
|
1493
1523
|
### Bugfixes
|
1494
1524
|
* Allow feature element names to contain Gherkin keywords as long as they are not the first word on a newline (#319, #307 Joseph Wilk)
|
1495
1525
|
|
1496
|
-
## [0.3.4](https://github.com/cucumber/cucumber/compare/v0.3.3...v0.3.4)
|
1526
|
+
## [0.3.4](https://github.com/cucumber/cucumber-ruby/compare/v0.3.3...v0.3.4)
|
1497
1527
|
|
1498
1528
|
A couple of great new features in this release. Running with Rake is faster than before,
|
1499
1529
|
and there is a brand new JUnit formatter - great for Continuous Integration reports!
|
@@ -1537,7 +1567,7 @@ However, setting the RAILS_ENV is easy to forget, so I don't recommend relying o
|
|
1537
1567
|
unless explicitly told to fork a new interpreter. This is to increase speed. You can
|
1538
1568
|
force a new interpreter by setting fork=true or rcov=true in the task.
|
1539
1569
|
|
1540
|
-
## [0.3.3](https://github.com/cucumber/cucumber/compare/v0.3.2...v0.3.3)
|
1570
|
+
## [0.3.3](https://github.com/cucumber/cucumber-ruby/compare/v0.3.2...v0.3.3)
|
1541
1571
|
|
1542
1572
|
Minor bugfix release, made specially for EuRuKo!
|
1543
1573
|
|
@@ -1549,7 +1579,7 @@ Minor bugfix release, made specially for EuRuKo!
|
|
1549
1579
|
### Removed/changed features
|
1550
1580
|
* New aliases: --no-source/-s, --name/-n (#317 Lonnon Foster)
|
1551
1581
|
|
1552
|
-
## [0.3.2](https://github.com/cucumber/cucumber/compare/v0.3.1...v0.3.2)
|
1582
|
+
## [0.3.2](https://github.com/cucumber/cucumber-ruby/compare/v0.3.1...v0.3.2)
|
1553
1583
|
|
1554
1584
|
This release has some minor bug fixes and new features.
|
1555
1585
|
Nothing major, but we need a release for RailsConf'09 in Las Vegas!
|
@@ -1565,7 +1595,7 @@ Nothing major, but we need a release for RailsConf'09 in Las Vegas!
|
|
1565
1595
|
* Examples and the associated tables are indented one level deeper than Scenario Outline. (Aslak Hellesøy)
|
1566
1596
|
* Added support for Examples selection when using --name. (#295 Joseph Wilk)
|
1567
1597
|
|
1568
|
-
## [0.3.1](https://github.com/cucumber/cucumber/compare/v0.3.0...v0.3.1)
|
1598
|
+
## [0.3.1](https://github.com/cucumber/cucumber-ruby/compare/v0.3.0...v0.3.1)
|
1569
1599
|
|
1570
1600
|
This release has several minor bug fixes and new features. With the addition of Latvian and Hungarian Cucumber
|
1571
1601
|
now supports 32(!!) languages.
|
@@ -1590,7 +1620,7 @@ now supports 32(!!) languages.
|
|
1590
1620
|
### Removed/changed features
|
1591
1621
|
* --scenario handle has been removed and replaced with --name which supports partial matches, regexp special characters, running named backgrounds (#295 Joseph Wilk)
|
1592
1622
|
|
1593
|
-
## [0.3.0](https://github.com/cucumber/cucumber/compare/v0.2.3...v0.3.0)
|
1623
|
+
## [0.3.0](https://github.com/cucumber/cucumber-ruby/compare/v0.2.3...v0.3.0)
|
1594
1624
|
|
1595
1625
|
This release has some minor changes to the APIs, but big enough that a new major release is in order.
|
1596
1626
|
The biggest change is the new semantics of the #World method. Previously you would call this method
|
@@ -1645,7 +1675,7 @@ http://wiki.github.com/aslakhellesoy/cucumber/using-rake#profiles
|
|
1645
1675
|
* Table and PyString no longer hold status information. Each visitor subclass should store state in @state if needed.
|
1646
1676
|
* \#visit_py_string no longer takes a status argument.
|
1647
1677
|
|
1648
|
-
## [0.2.3](https://github.com/cucumber/cucumber/compare/v0.2.2...v0.2.3)
|
1678
|
+
## [0.2.3](https://github.com/cucumber/cucumber-ruby/compare/v0.2.2...v0.2.3)
|
1649
1679
|
|
1650
1680
|
This release sports 4 updated languages, slightly better help with snippets if you "quote" arguments
|
1651
1681
|
in your steps. Windows/JRuby users can enjoy colours and you get some more sugar with Tables.
|
@@ -1665,7 +1695,7 @@ in your steps. Windows/JRuby users can enjoy colours and you get some more sugar
|
|
1665
1695
|
* Fixed step name after step keyword without space (#265 Aslak Hellesøy)
|
1666
1696
|
* Backtrace is back in HTML reports (Aslak Hellesøy)
|
1667
1697
|
|
1668
|
-
## [0.2.2](https://github.com/cucumber/cucumber/compare/v0.2.1...v0.2.2)
|
1698
|
+
## [0.2.2](https://github.com/cucumber/cucumber-ruby/compare/v0.2.1...v0.2.2)
|
1669
1699
|
|
1670
1700
|
This release includes some minor changes to make Cucumber work with pure Java. Cucumber
|
1671
1701
|
has already worked with Java for a while (using JRuby and step definitions in Ruby),
|
@@ -1674,7 +1704,7 @@ but now you can write step definitions in pure Java!
|
|
1674
1704
|
Check out the Cucumber Java project for more details:
|
1675
1705
|
http://github.com/aslakhellesoy/cucumber_java/tree/master
|
1676
1706
|
|
1677
|
-
## [0.2.1](https://github.com/cucumber/cucumber/compare/v0.2.0...v0.2.1)
|
1707
|
+
## [0.2.1](https://github.com/cucumber/cucumber-ruby/compare/v0.2.0...v0.2.1)
|
1678
1708
|
|
1679
1709
|
This release fixes a few minor bugs and adds a couple of new features.
|
1680
1710
|
|
@@ -1693,7 +1723,7 @@ This release fixes a few minor bugs and adds a couple of new features.
|
|
1693
1723
|
### Removed features
|
1694
1724
|
* -S/--step-definitions option introduced in 0.2.0 is removed. Use --format usage [--dry-run] [--no-color].
|
1695
1725
|
|
1696
|
-
## [0.2.0](https://github.com/cucumber/cucumber/compare/v0.1.16...v0.2.0)
|
1726
|
+
## [0.2.0](https://github.com/cucumber/cucumber-ruby/compare/v0.1.16...v0.2.0)
|
1697
1727
|
|
1698
1728
|
This release sports a bunch of new and exciting features, as well a major rewrite of Cucumber's internals.
|
1699
1729
|
The rewrite was done to address technical debt and to have a code base that is easier to evolve and maintain.
|
@@ -1798,7 +1828,7 @@ to this:
|
|
1798
1828
|
* Better handling of ARGV (#169 David Chelimsky, Ben Mabey)
|
1799
1829
|
* Compatibility with ruby-debug (do ARGV.dup in bin/cucumber so it can restart ruby with same args) (Aslak Hellesøy)
|
1800
1830
|
|
1801
|
-
## [0.1.16](https://github.com/cucumber/cucumber/compare/v0.1.15...v0.1.16)
|
1831
|
+
## [0.1.16](https://github.com/cucumber/cucumber-ruby/compare/v0.1.15...v0.1.16)
|
1802
1832
|
|
1803
1833
|
This is a small bugfix release. The most notable improvement is compatibility with Webrat 0.4. Rails/Webrat users should
|
1804
1834
|
upgrade both Cucumber and Webrat gems.
|
@@ -1814,7 +1844,7 @@ upgrade both Cucumber and Webrat gems.
|
|
1814
1844
|
|
1815
1845
|
### Removed features
|
1816
1846
|
|
1817
|
-
## [0.1.15](https://github.com/cucumber/cucumber/compare/v0.1.14...v0.1.15)
|
1847
|
+
## [0.1.15](https://github.com/cucumber/cucumber-ruby/compare/v0.1.14...v0.1.15)
|
1818
1848
|
|
1819
1849
|
Bugfix release
|
1820
1850
|
|
@@ -1827,7 +1857,7 @@ Bugfix release
|
|
1827
1857
|
* Better quoting of Scenario names in Autotest (Peter Jaros)
|
1828
1858
|
* Added some small workarounds for unicode handling on Windows (Aslak Hellesøy)
|
1829
1859
|
|
1830
|
-
## [0.1.14](https://github.com/cucumber/cucumber/compare/v0.1.13...v0.1.14)
|
1860
|
+
## [0.1.14](https://github.com/cucumber/cucumber-ruby/compare/v0.1.13...v0.1.14)
|
1831
1861
|
|
1832
1862
|
This is the first release of Cucumber that runs on Ruby 1.9. There are still some encoding-related issues
|
1833
1863
|
with Arabic (ar), Japanese (ja) and Simplified Chinese (zh-CN). Patches are welcome. Other than that -
|
@@ -1844,7 +1874,7 @@ a couple of minor bug fixes and polishing.
|
|
1844
1874
|
### Removed features
|
1845
1875
|
* The #binary= method is gone from the Rake task. It will always point to the binary in the current gem. (Aslak Hellesøy)
|
1846
1876
|
|
1847
|
-
## [0.1.13](https://github.com/cucumber/cucumber/compare/v0.1.12...v0.1.13)
|
1877
|
+
## [0.1.13](https://github.com/cucumber/cucumber-ruby/compare/v0.1.12...v0.1.13)
|
1848
1878
|
|
1849
1879
|
It's time for some new features again. Output is now much better since you can use diffing, tweak
|
1850
1880
|
the output colours and get the full --backtrace if you want. Managing your support/* files became
|
@@ -1879,7 +1909,7 @@ Enjoy!
|
|
1879
1909
|
|
1880
1910
|
### Removed features
|
1881
1911
|
|
1882
|
-
## [0.1.12](https://github.com/cucumber/cucumber/compare/v0.1.11...v0.1.12)
|
1912
|
+
## [0.1.12](https://github.com/cucumber/cucumber-ruby/compare/v0.1.11...v0.1.12)
|
1883
1913
|
|
1884
1914
|
This is the "getting serious with IronRuby release" - largely based on
|
1885
1915
|
"Patrick Gannon":http://www.patrickgannon.net/archive/2008/10/23/bdd-style-feature-tests-using-ironruby-and-rspeccucumber.aspx's
|
@@ -1894,7 +1924,7 @@ blog entry.
|
|
1894
1924
|
### Removed features
|
1895
1925
|
None
|
1896
1926
|
|
1897
|
-
## [0.1.11](https://github.com/cucumber/cucumber/compare/v0.1.10...v0.1.11)
|
1927
|
+
## [0.1.11](https://github.com/cucumber/cucumber-ruby/compare/v0.1.10...v0.1.11)
|
1898
1928
|
|
1899
1929
|
Bugfix release with a couple of minor additional features to the command line options.
|
1900
1930
|
|
@@ -1912,7 +1942,7 @@ Bugfix release with a couple of minor additional features to the command line op
|
|
1912
1942
|
### Removed features
|
1913
1943
|
* The cucumber gem no longer depends on the rspec gem. It must be downloaded manually if RSpec is used. (Jeff Rafter)
|
1914
1944
|
|
1915
|
-
## [0.1.10](https://github.com/cucumber/cucumber/compare/v0.1.9...v0.1.10)
|
1945
|
+
## [0.1.10](https://github.com/cucumber/cucumber-ruby/compare/v0.1.9...v0.1.10)
|
1916
1946
|
|
1917
1947
|
This release mostly has smaller bugfixes. The most significant new feature is how
|
1918
1948
|
line numbers are specified. You can now run multiple features at specific lines numbers like this:
|
@@ -1942,7 +1972,7 @@ This will run foo.feature at line 15 and bar.feature at line 6, 45 and 111.
|
|
1942
1972
|
* Step definition without a block being treated as pending (#64 Joseph Wilk)
|
1943
1973
|
* The --line option has been removed. Use the new file.feature:line format instead.
|
1944
1974
|
|
1945
|
-
## [0.1.9](https://github.com/cucumber/cucumber/compare/v0.1.8...v0.1.9)
|
1975
|
+
## [0.1.9](https://github.com/cucumber/cucumber-ruby/compare/v0.1.8...v0.1.9)
|
1946
1976
|
|
1947
1977
|
With this release Cucumber supports 19 (!) natural languages:
|
1948
1978
|
|
@@ -2025,7 +2055,7 @@ spaces removed too.
|
|
2025
2055
|
### Removed features
|
2026
2056
|
|
2027
2057
|
|
2028
|
-
## [0.1.8](https://github.com/cucumber/cucumber/compare/v0.1.7...v0.1.8)
|
2058
|
+
## [0.1.8](https://github.com/cucumber/cucumber-ruby/compare/v0.1.7...v0.1.8)
|
2029
2059
|
|
2030
2060
|
This release extends the support for tables. PLEASE NOTE THAT TABLES ARE STILL EXPERIMENTAL.
|
2031
2061
|
In previous releases it has been possible to use tables to define "more examples" of a scenario in
|
@@ -2108,7 +2138,7 @@ The step definitions for such multiline steps must define an extra block argumen
|
|
2108
2138
|
|
2109
2139
|
* Added new --out option to make it easier to specify output from Rake and cucumber.yml
|
2110
2140
|
|
2111
|
-
## [0.1.7](https://github.com/cucumber/cucumber/compare/v0.1.6...v0.1.7)
|
2141
|
+
## [0.1.7](https://github.com/cucumber/cucumber-ruby/compare/v0.1.6...v0.1.7)
|
2112
2142
|
|
2113
2143
|
This release fixes a few bugs and adds some new features. The most notable features are:
|
2114
2144
|
|
@@ -2163,6 +2193,6 @@ a plain text step is defined. Not anymore! Cucumber will now output this:
|
|
2163
2193
|
* Added --no-source option to display step definition location next to step text (#26, Joseph Wilk, Aslak Hellesøy)
|
2164
2194
|
* Added more Webrat steps (#25, Tim Glen)
|
2165
2195
|
|
2166
|
-
## [0.1.6](https://github.com/cucumber/cucumber/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6)
|
2196
|
+
## [0.1.6](https://github.com/cucumber/cucumber-ruby/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6)
|
2167
2197
|
|
2168
2198
|
First gem release!
|