gherkin 2.3.7 → 2.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. data/.gitignore +3 -0
  2. data/.yardopts +5 -0
  3. data/{History.txt → History.md} +153 -127
  4. data/{README.rdoc → README.md} +66 -64
  5. data/Rakefile +9 -2
  6. data/features/json_formatter.feature +1 -1
  7. data/features/json_parser.feature +1 -1
  8. data/gherkin.gemspec +16 -14
  9. data/js/lib/gherkin/lexer/.npmignore +0 -0
  10. data/lib/gherkin/formatter/ansi_escapes.rb +1 -1
  11. data/lib/gherkin/formatter/model.rb +4 -4
  12. data/lib/gherkin/formatter/pretty_formatter.rb +4 -4
  13. data/lib/gherkin/json_parser.rb +1 -1
  14. data/lib/gherkin/listener/formatter_listener.rb +7 -7
  15. data/lib/gherkin/parser/meta.txt +1 -1
  16. data/lib/gherkin/parser/root.txt +1 -1
  17. data/lib/gherkin/parser/steps.txt +1 -1
  18. data/lib/gherkin/rubify.rb +2 -2
  19. data/ragel/lexer.c.rl.erb +2 -2
  20. data/ragel/lexer.java.rl.erb +2 -2
  21. data/ragel/lexer.js.rl.erb +8 -6
  22. data/ragel/lexer.rb.rl.erb +2 -2
  23. data/ragel/lexer_common.rl.erb +4 -4
  24. data/spec/gherkin/c_lexer_spec.rb +1 -1
  25. data/spec/gherkin/fixtures/complex.json +1 -1
  26. data/spec/gherkin/java_lexer_spec.rb +1 -1
  27. data/spec/gherkin/js_lexer_spec.rb +2 -2
  28. data/spec/gherkin/rb_lexer_spec.rb +1 -1
  29. data/spec/gherkin/sexp_recorder.rb +2 -2
  30. data/spec/gherkin/shared/{py_string_group.rb → doc_string_group.rb} +28 -28
  31. data/spec/gherkin/shared/lexer_group.rb +4 -4
  32. data/spec/spec_helper.rb +1 -1
  33. data/tasks/compile.rake +3 -2
  34. data/tasks/cucumber.rake +1 -1
  35. data/tasks/gems.rake +2 -2
  36. data/tasks/ikvm.rake +4 -4
  37. data/tasks/ragel_task.rb +7 -0
  38. data/tasks/release.rake +10 -9
  39. data/tasks/yard.rake +7 -0
  40. data/tasks/yard/default/layout/html/bubble_32x32.png +0 -0
  41. data/tasks/yard/default/layout/html/bubble_48x48.png +0 -0
  42. data/tasks/yard/default/layout/html/footer.erb +5 -0
  43. data/tasks/yard/default/layout/html/index.erb +1 -0
  44. data/tasks/yard/default/layout/html/layout.erb +25 -0
  45. data/tasks/yard/default/layout/html/logo.erb +1 -0
  46. data/tasks/yard/default/layout/html/setup.rb +4 -0
  47. metadata +53 -26
  48. data/VERSION +0 -1
  49. data/lib/gherkin/version.rb +0 -3
  50. data/tasks/rdoc.rake +0 -9
data/.gitignore CHANGED
@@ -9,3 +9,6 @@ tmp
9
9
  release
10
10
  .bundle
11
11
  Gemfile.lock
12
+ npm-debug.log
13
+ doc/
14
+ .yardoc
@@ -0,0 +1,5 @@
1
+ --no-private
2
+ --title Gherkin
3
+ --exclude lib/gherkin/rb_lexer
4
+ lib/**/*.rb -
5
+ README.md History.md LICENSE
@@ -1,377 +1,403 @@
1
- == (In Git)
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
- == 2.3.6 (2011-04-19)
32
+ ## [2.3.6](https://github.com/cucumber/gherkin/compare/v2.3.5...v2.3.6)
7
33
 
8
- === New Features
34
+ ### New Features
9
35
  * Javascript implementation (#38 Aslak Hellesøy)
10
36
 
11
- === Bugfixes
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
- == 2.3.5 (2011-03-20)
41
+ ## [2.3.5](https://github.com/cucumber/gherkin/compare/v2.3.4...v2.3.5)
16
42
 
17
- === Changes
43
+ ### Changes
18
44
  * Relaxed gem dependencies to use >=. (Rob Slifka, Aslak Hellesøy)
19
45
 
20
- == 2.3.4 (2011-03-10)
46
+ ## [2.3.4](https://github.com/cucumber/gherkin/compare/v2.3.3...v2.3.4)
21
47
 
22
- === Changes
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
- == 2.3.3 (2010-12-26)
52
+ ## [2.3.3](https://github.com/cucumber/gherkin/compare/v2.3.2...v2.3.3)
27
53
 
28
- === Changes
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
- == 2.3.2 (2010-12-05)
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
- === Bugfixes
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
- == 2.3.0 (2010-11-12)
68
+ ## [2.3.0](https://github.com/cucumber/gherkin/compare/v2.2.9...v2.3.0)
43
69
 
44
- === New Features
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
- == 2.2.9 (2010-10-15)
77
+ ## [2.2.9](https://github.com/cucumber/gherkin/compare/v2.2.8...v2.2.9)
52
78
 
53
- === New Features
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
- == 2.2.8 (2010-10-04)
83
+ ## [2.2.8](https://github.com/cucumber/gherkin/compare/v2.2.7...v2.2.8)
58
84
 
59
- === Removed Features
85
+ ### Removed Features
60
86
  * Trollop based CLI - didn't find a good use for it yet. (Aslak Hellesøy)
61
87
 
62
- == 2.2.7 (2010-10-01)
88
+ ## [2.2.7](https://github.com/cucumber/gherkin/compare/v2.2.6...v2.2.7)
63
89
 
64
- === Bugfixes
90
+ ### Bugfixes
65
91
  * I18n.getCodeKeywords() on Java didn't strip '!'. Not anymore. (Aslak Hellesøy)
66
92
 
67
- == 2.2.6 (2010-10-01)
93
+ ## [2.2.6](https://github.com/cucumber/gherkin/compare/v2.2.5...v2.2.6)
68
94
 
69
- === Bugfixes
95
+ ### Bugfixes
70
96
  * I18n.getCodeKeywords() on Java included '*'. Not anymore. (Aslak Hellesøy)
71
97
 
72
- == 2.2.5 (2010-10-01)
98
+ ## [2.2.5](https://github.com/cucumber/gherkin/compare/v2.2.4...v2.2.5)
73
99
 
74
- === New Features
100
+ ### New Features
75
101
  * Gherkin will scan all top comments for the language comment. (Aslak Hellesøy)
76
102
 
77
- == 2.2.4 (2010-09-22)
103
+ ## [2.2.4](https://github.com/cucumber/gherkin/compare/v2.2.3...v2.2.4)
78
104
 
79
- === Bugfixes
105
+ ### Bugfixes
80
106
  * C99 features used by gherkin code (#75 Graham Agnew)
81
107
 
82
- == 2.2.3 (2010-09-21)
108
+ ## [2.2.3](https://github.com/cucumber/gherkin/compare/v2.2.2...v2.2.3)
83
109
 
84
- === Bugfixes
110
+ ### Bugfixes
85
111
  * Add back missing development dependency on cucumber (Aslak Hellesøy)
86
112
 
87
- == 2.2.2 (2010-09-21)
113
+ ## [2.2.2](https://github.com/cucumber/gherkin/compare/v2.2.1...v2.2.2)
88
114
 
89
- === New Features
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
- == 2.2.1 (2010-09-12)
119
+ ## [2.2.1](https://github.com/cucumber/gherkin/compare/v2.2.0...v2.2.1)
94
120
 
95
- === New Features
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
- === Changed features
124
+ ### Changed features
99
125
  * Build system no longer uses Jeweler - only Rake, Bundler and Rubygems (Aslak Hellesøy)
100
126
 
101
- == 2.2.0 (2010-07-26)
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
- === Bugfixes
132
+ ### Bugfixes
107
133
  * I18nLexer doesn't recognise language header with \r\n on OS X. (#70 Aslak Hellesøy)
108
134
 
109
- === New Features
135
+ ### New Features
110
136
  * Pure Java FilterFormatter. (Aslak Hellesøy)
111
137
  * Pure Java JSONFormatter. (Aslak Hellesøy)
112
138
 
113
- === Changed Features
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
- == 2.1.5 (2010-07-17)
143
+ ## [2.1.5](https://github.com/cucumber/gherkin/compare/v2.1.4...v2.1.5)
118
144
 
119
- === Bugfixes
145
+ ### Bugfixes
120
146
  * Line filter works on JRuby with Scenarios without steps. (Aslak Hellesøy)
121
147
 
122
- === Changed Features
148
+ ### Changed Features
123
149
  * The JSON schema now puts background inside the "elements" Array. Makes parsing simpler. (Aslak Hellesøy)
124
150
 
125
- == 2.1.4 (2010-07-14)
151
+ ## [2.1.4](https://github.com/cucumber/gherkin/compare/v2.1.3...v2.1.4)
126
152
 
127
- === Bugfixes
153
+ ### Bugfixes
128
154
  * #steps fails on JRuby with 2.1.3 (#68 Aslak Hellesøy)
129
155
 
130
- == 2.1.3 (2010-07-14)
156
+ ## [2.1.3](https://github.com/cucumber/gherkin/compare/v2.1.2...v2.1.3)
131
157
 
132
- === Bugfixes
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
- == 2.1.2 (2010-07-13)
161
+ ## [2.1.2](https://github.com/cucumber/gherkin/compare/v2.1.1...v2.1.2)
136
162
 
137
- === Bugfixes
163
+ ### Bugfixes
138
164
  * Fix some missing require statements that surfaced when gherkin was used outside Cucumber. (Aslak Hellesøy)
139
165
 
140
- == 2.1.1 (2010-07-12)
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
- == 2.1.0 (2010-07-12)
170
+ ## [2.1.0](https://github.com/cucumber/gherkin/compare/v2.0.2...v2.1.0)
145
171
 
146
- === New Features
172
+ ### New Features
147
173
  * Pirate! (anteaya)
148
174
  * Tag limits for negative tags (Aslak Hellesøy)
149
175
 
150
- === Changed Features
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
- === Removed Features
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
- == 2.0.2 (2010-06-16)
182
+ ## [2.0.2](https://github.com/cucumber/gherkin/compare/v2.0.1...v2.0.2)
157
183
 
158
- === New Features
184
+ ### New Features
159
185
  * New JSON Lexer. (Gregory Hnatiuk)
160
186
 
161
- === Bugfixes
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
- === Changed Features
191
+ ### Changed Features
166
192
  * Examples are now nested inside the Scenario Outline in the JSON format. (Gregory Hnatiuk)
167
193
 
168
- == 2.0.1 (2010-06-15)
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
- == 2.0.0 (2010-06-15)
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
- === New Features
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
- === Bugfixes
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
- === Changed Features
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
- == 1.0.30 (2010-05-18)
217
+ ## [1.0.30](https://github.com/cucumber/gherkin/compare/v1.0.29...v1.0.30)
192
218
 
193
- === New Features
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
- == 1.0.29 (2010-05-18)
222
+ ## [1.0.29](https://github.com/cucumber/gherkin/compare/v1.0.28...v1.0.29)
197
223
 
198
- === Bugfixes
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
- == 1.0.28 (2010-05-18)
227
+ ## [1.0.28](https://github.com/cucumber/gherkin/compare/v1.0.27...v1.0.28)
202
228
 
203
- === Bugfixes
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
- == 1.0.27 (2010-05-17)
233
+ ## [1.0.27](https://github.com/cucumber/gherkin/compare/v1.0.26...v1.0.27)
208
234
 
209
- === New Features
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
- == 1.0.26 (2010-05-09)
239
+ ## [1.0.26](https://github.com/cucumber/gherkin/compare/v1.0.25...v1.0.26)
214
240
 
215
- === New Features
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
- == 1.0.25 (2010-05-02)
244
+ ## [1.0.25](https://github.com/cucumber/gherkin/compare/v1.0.24...v1.0.25)
219
245
 
220
- === Bugfixes
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
- == 1.0.24 (2010-05-02)
250
+ ## [1.0.24](https://github.com/cucumber/gherkin/compare/v1.0.23...v1.0.24)
225
251
 
226
- === Bugfixes
252
+ ### Bugfixes
227
253
  * hard tabs crazy indentation for pystrings in formatter (#55 Aslak Hellesøy)
228
254
 
229
- == 1.0.23 (2010-05-02)
255
+ ## [1.0.23](https://github.com/cucumber/gherkin/compare/v1.0.22...v1.0.23)
230
256
 
231
- === Changed Features
257
+ ### Changed Features
232
258
  * Java API now uses camelCased method names instead of underscored (more Java-like) (Aslak Hellesøy)
233
259
 
234
- == 1.0.22 (2010-04-28)
260
+ ## [1.0.22](https://github.com/cucumber/gherkin/compare/v1.0.21...v1.0.22)
235
261
 
236
- === Bugfixes
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
- == 1.0.21 (2010-04-27)
265
+ ## [1.0.21](https://github.com/cucumber/gherkin/compare/v1.0.20...v1.0.21)
240
266
 
241
- === Bugfixes
267
+ ### Bugfixes
242
268
  * Fix compile warning on ruby 1.9.2dev (2009-07-18 trunk 24186) (#53 Aslak Hellesøy)
243
269
 
244
- == 1.0.20 (2010-04-20)
270
+ ## [1.0.20](https://github.com/cucumber/gherkin/compare/v1.0.19...v1.0.20)
245
271
 
246
- === Bugfixes
272
+ ### Bugfixes
247
273
  * The gherkin CLI is working again (Gregory Hnatiuk)
248
274
 
249
- == 1.0.19 (2010-04-20)
275
+ ## [1.0.19](https://github.com/cucumber/gherkin/compare/v1.0.18...v1.0.19)
250
276
 
251
- === New Features
277
+ ### New Features
252
278
  * Works with JRuby 1.5.0.RC1 (Aslak Hellesøy)
253
279
 
254
- === Changed Features
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
- == 1.0.18 (2010-04-20)
283
+ ## [1.0.18](https://github.com/cucumber/gherkin/compare/v1.0.17...v1.0.18)
258
284
 
259
- === Bugfixes
285
+ ### Bugfixes
260
286
  * Explicitly use UTF-8 encoding when scanning source with Java lexer. (Aslak Hellesøy)
261
287
 
262
- == 1.0.17 (2010-04-19)
288
+ ## [1.0.17](https://github.com/cucumber/gherkin/compare/v1.0.16...v1.0.17)
263
289
 
264
- === Bugfixes
290
+ ### Bugfixes
265
291
  * Gherkin::I18n.keyword_regexp was broken (used for 3rd party code generation). (#51 Aslak Hellesøy)
266
292
 
267
- == 1.0.16 (2010-04-19)
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
- === Bugfixes
296
+ ### Bugfixes
271
297
  * Reduced risk of halfway botched releases. (Aslak Hellesøy)
272
298
 
273
- == 1.0.15 (2010-04-19)
299
+ ## [1.0.15](https://github.com/cucumber/gherkin/compare/v1.0.14...v1.0.15)
274
300
 
275
- === New Features
301
+ ### New Features
276
302
  * Implemented more functionality in I18n.java. (Aslak Hellesøy)
277
303
 
278
- === Changed Features
304
+ ### Changed Features
279
305
  * Java methods are no longer throwing Exception (but RuntimeException). (Aslak Hellesøy)
280
306
 
281
- == 1.0.14 (2010-04-18)
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
- == 1.0.13 (2010-04-18)
310
+ ## [1.0.13](https://github.com/cucumber/gherkin/compare/v1.0.12...v1.0.13)
285
311
 
286
- === New Features
312
+ ### New Features
287
313
  * Filter on Background name. (Aslak Hellesøy)
288
314
 
289
- == 1.0.12 (2010-04-18)
315
+ ## [1.0.12](https://github.com/cucumber/gherkin/compare/v1.0.11...v1.0.12)
290
316
 
291
- === Bugfixes
317
+ ### Bugfixes
292
318
  * Fixed incorrect filtering of pystring in Background. (Mike Sassak)
293
319
 
294
- == 1.0.11 (2010-04-16)
320
+ ## [1.0.11](https://github.com/cucumber/gherkin/compare/v1.0.10...v1.0.11)
295
321
 
296
- === Bugfixes
322
+ ### Bugfixes
297
323
  * Fixed bad packaging (C files were not packaged in POSIX gem)
298
324
 
299
- == 1.0.10 (2010-04-16)
325
+ ## [1.0.10](https://github.com/cucumber/gherkin/compare/v1.0.09...v1.0.10)
300
326
 
301
- === New Features
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
- === Changed Features
331
+ ### Changed Features
306
332
  * TagExpression takes array args instead of varargs. (Aslak Hellesøy)
307
333
 
308
- == 1.0.9 (2010-04-12)
334
+ ## [1.0.9](https://github.com/cucumber/gherkin/compare/v1.0.8...v1.0.9)
309
335
 
310
- === Bugfixes
336
+ ### Bugfixes
311
337
  * Triple escaped quotes (\"\"\") in PyStrings are unescaped to """. (Aslak Hellesøy)
312
338
 
313
- == 1.0.8 (2010-04-10)
339
+ ## [1.0.8](https://github.com/cucumber/gherkin/compare/v1.0.7...v1.0.8)
314
340
 
315
- === Bugfixes
341
+ ### Bugfixes
316
342
  * Removed illegal comma from Ukrainian synonym. (Aslak Hellesøy)
317
343
 
318
- == 1.0.7 (2010-04-10)
344
+ ## [1.0.7](https://github.com/cucumber/gherkin/compare/v1.0.6...v1.0.7)
319
345
 
320
- === Bugfixes
346
+ ### Bugfixes
321
347
  * Fixed problems with packaging of 1.0.6 release. (Aslak Hellesøy)
322
348
 
323
- == 1.0.6 (2010-04-10)
349
+ ## [1.0.6](https://github.com/cucumber/gherkin/compare/v1.0.5...v1.0.6)
324
350
 
325
- === New Features
351
+ ### New Features
326
352
  * Fully automated release process. (Aslak Hellesøy)
327
353
 
328
- === Changed Features
354
+ ### Changed Features
329
355
  * Made generated classes use a more uniform naming convention. (Aslak Hellesøy)
330
356
 
331
- === Removed Features
357
+ ### Removed Features
332
358
  * Removed C# port, obsoleted by IKVM build from 1.0.5. (Aslak Hellesøy)
333
359
 
334
- == 1.0.5 (2010-04-08)
360
+ ## [1.0.5](https://github.com/cucumber/gherkin/compare/v1.0.4...v1.0.5)
335
361
 
336
- === New Features
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
- === Bugfixes
365
+ ### Bugfixes
340
366
  * Made parsers reusable so that the same instance can parse several features. (Aslak Hellesøy)
341
367
 
342
- == 1.0.4 (2010-04-07)
368
+ ## [1.0.4](https://github.com/cucumber/gherkin/compare/v1.0.3...v1.0.4)
343
369
 
344
- === New features
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
- === Changed features
374
+ ### Changed features
349
375
  * The Lexer now emits the '@' for tags. (Aslak Hellesøy)
350
376
 
351
- == 1.0.3 (2010-03-31)
377
+ ## [1.0.3](https://github.com/cucumber/gherkin/compare/v1.0.2...v1.0.3)
352
378
 
353
- === Bugfixes
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
- === New features
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
- === Changed features
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
- == 1.0.2 (2009-12-30)
395
+ ## [1.0.2](https://github.com/cucumber/gherkin/compare/v1.0.1...v1.0.2)
370
396
 
371
- === Bugfixes
397
+ ### Bugfixes
372
398
  * Build passes on Ruby 1.9.2 (Aslak Hellesøy)
373
399
 
374
- === New features
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)