gherkin 2.3.7 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +3 -0
- data/.yardopts +5 -0
- data/{History.txt → History.md} +153 -127
- data/{README.rdoc → README.md} +66 -64
- data/Rakefile +9 -2
- data/features/json_formatter.feature +1 -1
- data/features/json_parser.feature +1 -1
- data/gherkin.gemspec +16 -14
- data/js/lib/gherkin/lexer/.npmignore +0 -0
- data/lib/gherkin/formatter/ansi_escapes.rb +1 -1
- data/lib/gherkin/formatter/model.rb +4 -4
- data/lib/gherkin/formatter/pretty_formatter.rb +4 -4
- data/lib/gherkin/json_parser.rb +1 -1
- data/lib/gherkin/listener/formatter_listener.rb +7 -7
- data/lib/gherkin/parser/meta.txt +1 -1
- data/lib/gherkin/parser/root.txt +1 -1
- data/lib/gherkin/parser/steps.txt +1 -1
- data/lib/gherkin/rubify.rb +2 -2
- data/ragel/lexer.c.rl.erb +2 -2
- data/ragel/lexer.java.rl.erb +2 -2
- data/ragel/lexer.js.rl.erb +8 -6
- data/ragel/lexer.rb.rl.erb +2 -2
- data/ragel/lexer_common.rl.erb +4 -4
- data/spec/gherkin/c_lexer_spec.rb +1 -1
- data/spec/gherkin/fixtures/complex.json +1 -1
- data/spec/gherkin/java_lexer_spec.rb +1 -1
- data/spec/gherkin/js_lexer_spec.rb +2 -2
- data/spec/gherkin/rb_lexer_spec.rb +1 -1
- data/spec/gherkin/sexp_recorder.rb +2 -2
- data/spec/gherkin/shared/{py_string_group.rb → doc_string_group.rb} +28 -28
- data/spec/gherkin/shared/lexer_group.rb +4 -4
- data/spec/spec_helper.rb +1 -1
- data/tasks/compile.rake +3 -2
- data/tasks/cucumber.rake +1 -1
- data/tasks/gems.rake +2 -2
- data/tasks/ikvm.rake +4 -4
- data/tasks/ragel_task.rb +7 -0
- data/tasks/release.rake +10 -9
- data/tasks/yard.rake +7 -0
- data/tasks/yard/default/layout/html/bubble_32x32.png +0 -0
- data/tasks/yard/default/layout/html/bubble_48x48.png +0 -0
- data/tasks/yard/default/layout/html/footer.erb +5 -0
- data/tasks/yard/default/layout/html/index.erb +1 -0
- data/tasks/yard/default/layout/html/layout.erb +25 -0
- data/tasks/yard/default/layout/html/logo.erb +1 -0
- data/tasks/yard/default/layout/html/setup.rb +4 -0
- metadata +53 -26
- data/VERSION +0 -1
- data/lib/gherkin/version.rb +0 -3
- data/tasks/rdoc.rake +0 -9
data/.gitignore
CHANGED
data/.yardopts
ADDED
data/{History.txt → History.md}
RENAMED
@@ -1,377 +1,403 @@
|
|
1
|
-
|
1
|
+
## [2.4.0](https://github.com/cucumber/gherkin/compare/v2.3.10...v2.4.0)
|
2
|
+
|
3
|
+
### Bugfixes
|
4
|
+
* Don't use -Werror in production code ([#106](https://github.com/cucumber/gherkin/pull/106) Hans de Graaff)
|
5
|
+
|
6
|
+
### New Features
|
7
|
+
* YARD based API docs at http://cukes.info/gherkin/api/ruby/latest/ (Aslak Hellesøy)
|
8
|
+
|
9
|
+
### Changed Features
|
10
|
+
* py_string/PyString changed to doc_string/DocString, ref https://github.com/cucumber/cucumber/issues/74 (Aslak Hellesøy)
|
11
|
+
|
12
|
+
## [2.3.10](https://github.com/cucumber/gherkin/compare/v2.3.9...v2.3.10)
|
13
|
+
|
14
|
+
### Bugfixes
|
15
|
+
* Relax development dependency version on builder. (#105 Aslak Hellesøy).
|
16
|
+
|
17
|
+
## [2.3.9](https://github.com/cucumber/gherkin/compare/v2.3.8...v2.3.9)
|
18
|
+
|
19
|
+
### New features
|
20
|
+
* Javascript lexers support http://requirejs.org/ modules as well as node.js (Aslak Hellesøy).
|
21
|
+
|
22
|
+
## [2.3.8](https://github.com/cucumber/gherkin/compare/v2.3.7...v2.3.8)
|
23
|
+
|
24
|
+
### Insignificant changes
|
25
|
+
* Improve build system so we don't need to add generated js lexers to git.
|
26
|
+
|
27
|
+
## [2.3.7](https://github.com/cucumber/gherkin/compare/v2.3.6...v2.3.7)
|
2
28
|
|
3
29
|
* Removed incorrect (and unneeded) case statement that could blow up if V8 is installed. (Aslak Hellesøy, Niklas H)
|
4
30
|
* Added connect support for gherkin.js (Aslak Hellesøy)
|
5
31
|
|
6
|
-
|
32
|
+
## [2.3.6](https://github.com/cucumber/gherkin/compare/v2.3.5...v2.3.6)
|
7
33
|
|
8
|
-
|
34
|
+
### New Features
|
9
35
|
* Javascript implementation (#38 Aslak Hellesøy)
|
10
36
|
|
11
|
-
|
37
|
+
### Bugfixes
|
12
38
|
* Fix compilation error on Arch Linux (#98,#99 Ben Hamill)
|
13
39
|
* Corrected Russian translation (#97 Vagif Abilov)
|
14
40
|
|
15
|
-
|
41
|
+
## [2.3.5](https://github.com/cucumber/gherkin/compare/v2.3.4...v2.3.5)
|
16
42
|
|
17
|
-
|
43
|
+
### Changes
|
18
44
|
* Relaxed gem dependencies to use >=. (Rob Slifka, Aslak Hellesøy)
|
19
45
|
|
20
|
-
|
46
|
+
## [2.3.4](https://github.com/cucumber/gherkin/compare/v2.3.3...v2.3.4)
|
21
47
|
|
22
|
-
|
48
|
+
### Changes
|
23
49
|
* Fixing C90 errors on Ubuntu Natty (#92 Colin Dean)
|
24
50
|
* Romanian (ro) language update, extracted from a real-world project. (Iulian Dogariu)
|
25
51
|
|
26
|
-
|
52
|
+
## [2.3.3](https://github.com/cucumber/gherkin/compare/v2.3.2...v2.3.3)
|
27
53
|
|
28
|
-
|
54
|
+
### Changes
|
29
55
|
* No more dependencies on external ANSI escape libraries (Ruby:term-ansicolor, Java:Jansi). DIY is better! (Aslak Hellesøy)
|
30
56
|
* Added duration (in millseconds) to Result. (Aslak Hellesøy)
|
31
57
|
* Additional Polish aliases (Mike Połtyn)
|
32
58
|
|
33
|
-
|
59
|
+
## [2.3.2](https://github.com/cucumber/gherkin/compare/v2.3.0...v2.3.2)
|
34
60
|
|
35
61
|
(Somehow 2.3.1 was released improperly shortly after 2.3.0 - not sure what fixes went into that!)
|
36
62
|
|
37
|
-
|
63
|
+
### Bugfixes
|
38
64
|
* Preserve whitespace in descriptions. Leading whitespace in descriptions are stripped upto preceding keyword + 2 spaces (#87 Matt Wynne, Gregory Hnatiuk, Aslak Hellesøy)
|
39
65
|
* Fix incorrect indentation of Examples descriptions (Gregory Hnatiuk)
|
40
66
|
* Can't define new line characters in Example Table Cell's Content. (#85 George Montana Harkin, Aslak Hellesøy)
|
41
67
|
|
42
|
-
|
68
|
+
## [2.3.0](https://github.com/cucumber/gherkin/compare/v2.2.9...v2.3.0)
|
43
69
|
|
44
|
-
|
70
|
+
### New Features
|
45
71
|
* New aliases for Scenario Outline in Swedish, Norwegian and English. (Peter Krantz, Aslak Hellesøy)
|
46
72
|
* Improved build documentation for people who want to contribute. (Aslak Hellesøy)
|
47
73
|
* Results can now be outputted/parsed in JSON. (Aslak Hellesøy)
|
48
74
|
* JSON output now contains optional "match", "result" and "embeddings" elements underneath each step. (Aslak Hellesøy)
|
49
75
|
* Added support for Base64 encoded embeddings in JSON representation. Useful for screenshots etc. (Aslak Hellesøy)
|
50
76
|
|
51
|
-
|
77
|
+
## [2.2.9](https://github.com/cucumber/gherkin/compare/v2.2.8...v2.2.9)
|
52
78
|
|
53
|
-
|
79
|
+
### New Features
|
54
80
|
* PrettyFormatter can format features both with and without ANSI Colors. Using Jansi on Java. (Aslak Hellesøy)
|
55
81
|
* Extended Java Formatter API with a steps(List<Step>) method for better reporting in Java (Aslak Hellesøy)
|
56
82
|
|
57
|
-
|
83
|
+
## [2.2.8](https://github.com/cucumber/gherkin/compare/v2.2.7...v2.2.8)
|
58
84
|
|
59
|
-
|
85
|
+
### Removed Features
|
60
86
|
* Trollop based CLI - didn't find a good use for it yet. (Aslak Hellesøy)
|
61
87
|
|
62
|
-
|
88
|
+
## [2.2.7](https://github.com/cucumber/gherkin/compare/v2.2.6...v2.2.7)
|
63
89
|
|
64
|
-
|
90
|
+
### Bugfixes
|
65
91
|
* I18n.getCodeKeywords() on Java didn't strip '!'. Not anymore. (Aslak Hellesøy)
|
66
92
|
|
67
|
-
|
93
|
+
## [2.2.6](https://github.com/cucumber/gherkin/compare/v2.2.5...v2.2.6)
|
68
94
|
|
69
|
-
|
95
|
+
### Bugfixes
|
70
96
|
* I18n.getCodeKeywords() on Java included '*'. Not anymore. (Aslak Hellesøy)
|
71
97
|
|
72
|
-
|
98
|
+
## [2.2.5](https://github.com/cucumber/gherkin/compare/v2.2.4...v2.2.5)
|
73
99
|
|
74
|
-
|
100
|
+
### New Features
|
75
101
|
* Gherkin will scan all top comments for the language comment. (Aslak Hellesøy)
|
76
102
|
|
77
|
-
|
103
|
+
## [2.2.4](https://github.com/cucumber/gherkin/compare/v2.2.3...v2.2.4)
|
78
104
|
|
79
|
-
|
105
|
+
### Bugfixes
|
80
106
|
* C99 features used by gherkin code (#75 Graham Agnew)
|
81
107
|
|
82
|
-
|
108
|
+
## [2.2.3](https://github.com/cucumber/gherkin/compare/v2.2.2...v2.2.3)
|
83
109
|
|
84
|
-
|
110
|
+
### Bugfixes
|
85
111
|
* Add back missing development dependency on cucumber (Aslak Hellesøy)
|
86
112
|
|
87
|
-
|
113
|
+
## [2.2.2](https://github.com/cucumber/gherkin/compare/v2.2.1...v2.2.2)
|
88
114
|
|
89
|
-
|
115
|
+
### New Features
|
90
116
|
* Use json instead of json_pure (Aslak Hellesøy)
|
91
117
|
* JSON formatter and parser can now omit JSON serialization (for speed) and work directly on objects (Aslak Hellesøy)
|
92
118
|
|
93
|
-
|
119
|
+
## [2.2.1](https://github.com/cucumber/gherkin/compare/v2.2.0...v2.2.1)
|
94
120
|
|
95
|
-
|
121
|
+
### New Features
|
96
122
|
* Windows gems are now built against 1.8.6-p287 and 1.9.1-p243, on both mswin32 and mingw32, and should work on 1.8.6, 1.8.7, 1.9.1 and 1.9.2 versions of rubyinstaller.org as well as older windows rubies. (Aslak Hellesøy)
|
97
123
|
|
98
|
-
|
124
|
+
### Changed features
|
99
125
|
* Build system no longer uses Jeweler - only Rake, Bundler and Rubygems (Aslak Hellesøy)
|
100
126
|
|
101
|
-
|
127
|
+
## [2.2.0](https://github.com/cucumber/gherkin/compare/v2.1.5...v2.2.0)
|
102
128
|
|
103
129
|
This release breaks some APIs since the previous 2.1.5 release. If you install gherkin 2.2.0 you must also upgrade to
|
104
130
|
Cucumber 0.9.0.
|
105
131
|
|
106
|
-
|
132
|
+
### Bugfixes
|
107
133
|
* I18nLexer doesn't recognise language header with \r\n on OS X. (#70 Aslak Hellesøy)
|
108
134
|
|
109
|
-
|
135
|
+
### New Features
|
110
136
|
* Pure Java FilterFormatter. (Aslak Hellesøy)
|
111
137
|
* Pure Java JSONFormatter. (Aslak Hellesøy)
|
112
138
|
|
113
|
-
|
139
|
+
### Changed Features
|
114
140
|
* All formatter events take exactly one argument. Each argument is a single object with all data. (Aslak Hellesøy)
|
115
141
|
* Several java classes have moved to a different package in order to improve separation of concerns. (Aslak Hellesøy)
|
116
142
|
|
117
|
-
|
143
|
+
## [2.1.5](https://github.com/cucumber/gherkin/compare/v2.1.4...v2.1.5)
|
118
144
|
|
119
|
-
|
145
|
+
### Bugfixes
|
120
146
|
* Line filter works on JRuby with Scenarios without steps. (Aslak Hellesøy)
|
121
147
|
|
122
|
-
|
148
|
+
### Changed Features
|
123
149
|
* The JSON schema now puts background inside the "elements" Array. Makes parsing simpler. (Aslak Hellesøy)
|
124
150
|
|
125
|
-
|
151
|
+
## [2.1.4](https://github.com/cucumber/gherkin/compare/v2.1.3...v2.1.4)
|
126
152
|
|
127
|
-
|
153
|
+
### Bugfixes
|
128
154
|
* #steps fails on JRuby with 2.1.3 (#68 Aslak Hellesøy)
|
129
155
|
|
130
|
-
|
156
|
+
## [2.1.3](https://github.com/cucumber/gherkin/compare/v2.1.2...v2.1.3)
|
131
157
|
|
132
|
-
|
158
|
+
### Bugfixes
|
133
159
|
* Examples are not cleared when an ignored Scenario Outline/Examples is followed by a Scenario. (#67 Aslak Hellesøy)
|
134
160
|
|
135
|
-
|
161
|
+
## [2.1.2](https://github.com/cucumber/gherkin/compare/v2.1.1...v2.1.2)
|
136
162
|
|
137
|
-
|
163
|
+
### Bugfixes
|
138
164
|
* Fix some missing require statements that surfaced when gherkin was used outside Cucumber. (Aslak Hellesøy)
|
139
165
|
|
140
|
-
|
166
|
+
## [2.1.1](https://github.com/cucumber/gherkin/compare/v2.1.0...v2.1.1)
|
141
167
|
|
142
168
|
The previous release had a missing gherkin.jar in the jruby gem. This release fixes that. For good this time!
|
143
169
|
|
144
|
-
|
170
|
+
## [2.1.0](https://github.com/cucumber/gherkin/compare/v2.0.2...v2.1.0)
|
145
171
|
|
146
|
-
|
172
|
+
### New Features
|
147
173
|
* Pirate! (anteaya)
|
148
174
|
* Tag limits for negative tags (Aslak Hellesøy)
|
149
175
|
|
150
|
-
|
176
|
+
### Changed Features
|
151
177
|
* The formatter API has changed and the listener API is now only used internally. (Aslak Hellesøy)
|
152
178
|
|
153
|
-
|
179
|
+
### Removed Features
|
154
180
|
* FilterListener has been replaced with FilterFormatter. Currently only in Ruby (no Java impl yet). (Aslak Hellesøy)
|
155
181
|
|
156
|
-
|
182
|
+
## [2.0.2](https://github.com/cucumber/gherkin/compare/v2.0.1...v2.0.2)
|
157
183
|
|
158
|
-
|
184
|
+
### New Features
|
159
185
|
* New JSON Lexer. (Gregory Hnatiuk)
|
160
186
|
|
161
|
-
|
187
|
+
### Bugfixes
|
162
188
|
* Fixed incorrect indentation for descriptions in Java. (Aslak Hellesøy)
|
163
189
|
* Fixed support for xx-yy languages and Hebrew and Indonesian (JDK bugs). (Aslak Hellesøy)
|
164
190
|
|
165
|
-
|
191
|
+
### Changed Features
|
166
192
|
* Examples are now nested inside the Scenario Outline in the JSON format. (Gregory Hnatiuk)
|
167
193
|
|
168
|
-
|
194
|
+
## [2.0.1](https://github.com/cucumber/gherkin/compare/v2.0.0...v2.0.1)
|
169
195
|
|
170
196
|
The previous release had a missing gherkin.jar in the jruby gem. This release fixes that.
|
171
197
|
|
172
|
-
|
198
|
+
## [2.0.0](https://github.com/cucumber/gherkin/compare/v1.0.30...v2.0.0)
|
173
199
|
|
174
200
|
We're breaking the old listener API in this release, and added a new JSON formatter,
|
175
201
|
which calls for a new major version.
|
176
202
|
|
177
|
-
|
203
|
+
### New Features
|
178
204
|
* New JSON formatter. (Aslak Hellesøy, Joseph Wilk)
|
179
205
|
* New synonyms for Hungarian (Bence Golda)
|
180
206
|
* Upgraded to use RSpec 2.0.0 (Aslak Hellesøy)
|
181
207
|
|
182
|
-
|
208
|
+
### Bugfixes
|
183
209
|
* undefined method `<=>' on JRuby (#52 Aslak Hellesøy)
|
184
210
|
* Include link to explanation of LexingError (Mike Sassak)
|
185
211
|
|
186
|
-
|
212
|
+
### Changed Features
|
187
213
|
* The formatter API has completely changed. There is a Gherkin Listener API and a Formatter API.
|
188
214
|
The FormatterListener acts as an adapter between them. (Aslak Hellesøy)
|
189
215
|
* The listener API now has an additional argument for description (text following the first line of Feature:, Scenario: etc.) (Gregroy Hnatiuk, Matt Wynne)
|
190
216
|
|
191
|
-
|
217
|
+
## [1.0.30](https://github.com/cucumber/gherkin/compare/v1.0.29...v1.0.30)
|
192
218
|
|
193
|
-
|
219
|
+
### New Features
|
194
220
|
* Native gems for IronRuby. Bundles IKVM OpenJDK dlls as well as ikvmc-compiled gherkin.dll. Experimental! (Aslak Hellesøy)
|
195
221
|
|
196
|
-
|
222
|
+
## [1.0.29](https://github.com/cucumber/gherkin/compare/v1.0.28...v1.0.29)
|
197
223
|
|
198
|
-
|
224
|
+
### Bugfixes
|
199
225
|
* Use I18n.class' class loader instead of context class loader to load Java lexers. Hoping this fixes loading bug for good. (Aslak Hellesøy)
|
200
226
|
|
201
|
-
|
227
|
+
## [1.0.28](https://github.com/cucumber/gherkin/compare/v1.0.27...v1.0.28)
|
202
228
|
|
203
|
-
|
229
|
+
### Bugfixes
|
204
230
|
* Use context class loader instead of boot class loader to load Java lexers. (Aslak Hellesøy)
|
205
231
|
* Only add gcc flags when the compiler is gcc. (#60 Aslak Hellesøy, Christian Höltje)
|
206
232
|
|
207
|
-
|
233
|
+
## [1.0.27](https://github.com/cucumber/gherkin/compare/v1.0.26...v1.0.27)
|
208
234
|
|
209
|
-
|
235
|
+
### New Features
|
210
236
|
* Table cells can now contain escaped bars - \| and escaped backslashes - \\. (#48. Gregory Hnatiuk, Aslak Hellesøy)
|
211
237
|
* Luxemburgish (lu) added. (Christoph König)
|
212
238
|
|
213
|
-
|
239
|
+
## [1.0.26](https://github.com/cucumber/gherkin/compare/v1.0.25...v1.0.26)
|
214
240
|
|
215
|
-
|
241
|
+
### New Features
|
216
242
|
* Ignore the BOM that many retarded Windows editors insist on sticking in the beginning of a file. (Aslak Hellesøy)
|
217
243
|
|
218
|
-
|
244
|
+
## [1.0.25](https://github.com/cucumber/gherkin/compare/v1.0.24...v1.0.25)
|
219
245
|
|
220
|
-
|
246
|
+
### Bugfixes
|
221
247
|
* Allow fallback to a slower ruby lexer if the C lexer can't be loaded for some reason.
|
222
248
|
* Can't run specs in gherkin 1.0.24 (#59 Aslak Hellesøy)
|
223
249
|
|
224
|
-
|
250
|
+
## [1.0.24](https://github.com/cucumber/gherkin/compare/v1.0.23...v1.0.24)
|
225
251
|
|
226
|
-
|
252
|
+
### Bugfixes
|
227
253
|
* hard tabs crazy indentation for pystrings in formatter (#55 Aslak Hellesøy)
|
228
254
|
|
229
|
-
|
255
|
+
## [1.0.23](https://github.com/cucumber/gherkin/compare/v1.0.22...v1.0.23)
|
230
256
|
|
231
|
-
|
257
|
+
### Changed Features
|
232
258
|
* Java API now uses camelCased method names instead of underscored (more Java-like) (Aslak Hellesøy)
|
233
259
|
|
234
|
-
|
260
|
+
## [1.0.22](https://github.com/cucumber/gherkin/compare/v1.0.21...v1.0.22)
|
235
261
|
|
236
|
-
|
262
|
+
### Bugfixes
|
237
263
|
* Make prebuilt binaries work on both Ruby 1.8.x and 1.9.x on Windows (#54 Luis Lavena, Aslak Hellesøy)
|
238
264
|
|
239
|
-
|
265
|
+
## [1.0.21](https://github.com/cucumber/gherkin/compare/v1.0.20...v1.0.21)
|
240
266
|
|
241
|
-
|
267
|
+
### Bugfixes
|
242
268
|
* Fix compile warning on ruby 1.9.2dev (2009-07-18 trunk 24186) (#53 Aslak Hellesøy)
|
243
269
|
|
244
|
-
|
270
|
+
## [1.0.20](https://github.com/cucumber/gherkin/compare/v1.0.19...v1.0.20)
|
245
271
|
|
246
|
-
|
272
|
+
### Bugfixes
|
247
273
|
* The gherkin CLI is working again (Gregory Hnatiuk)
|
248
274
|
|
249
|
-
|
275
|
+
## [1.0.19](https://github.com/cucumber/gherkin/compare/v1.0.18...v1.0.19)
|
250
276
|
|
251
|
-
|
277
|
+
### New Features
|
252
278
|
* Works with JRuby 1.5.0.RC1 (Aslak Hellesøy)
|
253
279
|
|
254
|
-
|
280
|
+
### Changed Features
|
255
281
|
* I18n.code_keywords now return And and But as well, making Cucumber StepDefs a little more flexible (Aslak Hellesøy)
|
256
282
|
|
257
|
-
|
283
|
+
## [1.0.18](https://github.com/cucumber/gherkin/compare/v1.0.17...v1.0.18)
|
258
284
|
|
259
|
-
|
285
|
+
### Bugfixes
|
260
286
|
* Explicitly use UTF-8 encoding when scanning source with Java lexer. (Aslak Hellesøy)
|
261
287
|
|
262
|
-
|
288
|
+
## [1.0.17](https://github.com/cucumber/gherkin/compare/v1.0.16...v1.0.17)
|
263
289
|
|
264
|
-
|
290
|
+
### Bugfixes
|
265
291
|
* Gherkin::I18n.keyword_regexp was broken (used for 3rd party code generation). (#51 Aslak Hellesøy)
|
266
292
|
|
267
|
-
|
293
|
+
## [1.0.16](https://github.com/cucumber/gherkin/compare/v1.0.15...v1.0.16)
|
268
294
|
(Something went wrong when releasing 1.0.15)
|
269
295
|
|
270
|
-
|
296
|
+
### Bugfixes
|
271
297
|
* Reduced risk of halfway botched releases. (Aslak Hellesøy)
|
272
298
|
|
273
|
-
|
299
|
+
## [1.0.15](https://github.com/cucumber/gherkin/compare/v1.0.14...v1.0.15)
|
274
300
|
|
275
|
-
|
301
|
+
### New Features
|
276
302
|
* Implemented more functionality in I18n.java. (Aslak Hellesøy)
|
277
303
|
|
278
|
-
|
304
|
+
### Changed Features
|
279
305
|
* Java methods are no longer throwing Exception (but RuntimeException). (Aslak Hellesøy)
|
280
306
|
|
281
|
-
|
307
|
+
## [1.0.14](https://github.com/cucumber/gherkin/compare/v1.0.13...v1.0.14)
|
282
308
|
(Something went wrong when releasing 1.0.13)
|
283
309
|
|
284
|
-
|
310
|
+
## [1.0.13](https://github.com/cucumber/gherkin/compare/v1.0.12...v1.0.13)
|
285
311
|
|
286
|
-
|
312
|
+
### New Features
|
287
313
|
* Filter on Background name. (Aslak Hellesøy)
|
288
314
|
|
289
|
-
|
315
|
+
## [1.0.12](https://github.com/cucumber/gherkin/compare/v1.0.11...v1.0.12)
|
290
316
|
|
291
|
-
|
317
|
+
### Bugfixes
|
292
318
|
* Fixed incorrect filtering of pystring in Background. (Mike Sassak)
|
293
319
|
|
294
|
-
|
320
|
+
## [1.0.11](https://github.com/cucumber/gherkin/compare/v1.0.10...v1.0.11)
|
295
321
|
|
296
|
-
|
322
|
+
### Bugfixes
|
297
323
|
* Fixed bad packaging (C files were not packaged in POSIX gem)
|
298
324
|
|
299
|
-
|
325
|
+
## [1.0.10](https://github.com/cucumber/gherkin/compare/v1.0.09...v1.0.10)
|
300
326
|
|
301
|
-
|
327
|
+
### New Features
|
302
328
|
* Added Esperanto and added a Russian synonym for Feature. (Antono Vasiljev)
|
303
329
|
* Pure Java implementation of FilterListener and TagExpression (Mike Gaffney, Aslak Hellesøy)
|
304
330
|
|
305
|
-
|
331
|
+
### Changed Features
|
306
332
|
* TagExpression takes array args instead of varargs. (Aslak Hellesøy)
|
307
333
|
|
308
|
-
|
334
|
+
## [1.0.9](https://github.com/cucumber/gherkin/compare/v1.0.8...v1.0.9)
|
309
335
|
|
310
|
-
|
336
|
+
### Bugfixes
|
311
337
|
* Triple escaped quotes (\"\"\") in PyStrings are unescaped to """. (Aslak Hellesøy)
|
312
338
|
|
313
|
-
|
339
|
+
## [1.0.8](https://github.com/cucumber/gherkin/compare/v1.0.7...v1.0.8)
|
314
340
|
|
315
|
-
|
341
|
+
### Bugfixes
|
316
342
|
* Removed illegal comma from Ukrainian synonym. (Aslak Hellesøy)
|
317
343
|
|
318
|
-
|
344
|
+
## [1.0.7](https://github.com/cucumber/gherkin/compare/v1.0.6...v1.0.7)
|
319
345
|
|
320
|
-
|
346
|
+
### Bugfixes
|
321
347
|
* Fixed problems with packaging of 1.0.6 release. (Aslak Hellesøy)
|
322
348
|
|
323
|
-
|
349
|
+
## [1.0.6](https://github.com/cucumber/gherkin/compare/v1.0.5...v1.0.6)
|
324
350
|
|
325
|
-
|
351
|
+
### New Features
|
326
352
|
* Fully automated release process. (Aslak Hellesøy)
|
327
353
|
|
328
|
-
|
354
|
+
### Changed Features
|
329
355
|
* Made generated classes use a more uniform naming convention. (Aslak Hellesøy)
|
330
356
|
|
331
|
-
|
357
|
+
### Removed Features
|
332
358
|
* Removed C# port, obsoleted by IKVM build from 1.0.5. (Aslak Hellesøy)
|
333
359
|
|
334
|
-
|
360
|
+
## [1.0.5](https://github.com/cucumber/gherkin/compare/v1.0.4...v1.0.5)
|
335
361
|
|
336
|
-
|
362
|
+
### New Features
|
337
363
|
* New .NET build of gherkin - an ikvmc build of gherkin.jar to gherkin.dll. (Aslak Hellesøy)
|
338
364
|
|
339
|
-
|
365
|
+
### Bugfixes
|
340
366
|
* Made parsers reusable so that the same instance can parse several features. (Aslak Hellesøy)
|
341
367
|
|
342
|
-
|
368
|
+
## [1.0.4](https://github.com/cucumber/gherkin/compare/v1.0.3...v1.0.4)
|
343
369
|
|
344
|
-
|
370
|
+
### New features
|
345
371
|
* Pure java releases of Gherkin at http://cukes.info/maven
|
346
372
|
* A FilterListener in Ruby that is the last missing piece to plug Gherkin into Cucumber. (Gregory Hnatiuk, Aslak Hellesøy, Matt Wynne, Mike Sassak)
|
347
373
|
|
348
|
-
|
374
|
+
### Changed features
|
349
375
|
* The Lexer now emits the '@' for tags. (Aslak Hellesøy)
|
350
376
|
|
351
|
-
|
377
|
+
## [1.0.3](https://github.com/cucumber/gherkin/compare/v1.0.2...v1.0.3)
|
352
378
|
|
353
|
-
|
379
|
+
### Bugfixes
|
354
380
|
* The C lexer correctly instantiates a new array for each table, instead of reusing the old one. (Aslak Hellesøy)
|
355
381
|
* Emit keywords with space instead of stripping (< keywords are emmitted without space) (Aslak Hellesøy)
|
356
382
|
* gherkin reformat now prints comments, and does it with proper indentation (Aslak Hellesøy)
|
357
383
|
* .NET resource files are now automatically copied into the .dll (#46 Aslak Hellesøy)
|
358
384
|
|
359
|
-
|
385
|
+
### New features
|
360
386
|
* The Pure Java implementation now has a simple main method that pretty prints a feature. (#39 Aslak Hellesøy)
|
361
387
|
* Writing code generated i18n syntax highlighters for Gherkin is a lot easier thanks to several convenience methods in Gherkin::I18n. (Aslak Hellesøy)
|
362
388
|
* .NET (C#) port (#36, #37 Attila Sztupak)
|
363
389
|
* Tables parsed and sent by row rather than by table. (Mike Sassak)
|
364
390
|
|
365
|
-
|
391
|
+
### Changed features
|
366
392
|
* Switced to ISO 639-1 (language) and ISO 3166 alpha-2 (region - if applicable). Applies to Catalan,
|
367
393
|
Swedish, Welsh, Romanian and Serbian. (Aslak Hellesøy)
|
368
394
|
|
369
|
-
|
395
|
+
## [1.0.2](https://github.com/cucumber/gherkin/compare/v1.0.1...v1.0.2)
|
370
396
|
|
371
|
-
|
397
|
+
### Bugfixes
|
372
398
|
* Build passes on Ruby 1.9.2 (Aslak Hellesøy)
|
373
399
|
|
374
|
-
|
400
|
+
### New features
|
375
401
|
* New command line based on trollop. Commands: reformat, stats. (Aslak Hellesøy)
|
376
402
|
* I18nLexer#scan sets #language to the I18n for the language scanned (Mike Sassak)
|
377
403
|
* I18n#adverbs, brings I18n to parity with Cucumber::Parser::NaturalLanguage (Mike Sassak)
|