gherkin 2.1.1-i386-mingw32 → 2.1.2-i386-mingw32
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/History.txt
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
== 2.1.2 (2010-07-13)
|
2
|
+
|
3
|
+
=== Bugfixes
|
4
|
+
* Fix some missing require statements that surfaced when gherkin was used outside Cucumber. (Aslak Hellesøy)
|
5
|
+
|
1
6
|
== 2.1.1 (2010-07-12)
|
2
7
|
|
3
8
|
The previous release had a missing gherkin.jar in the jruby gem. This release fixes that. For good this time!
|
data/VERSION.yml
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
require 'stringio'
|
3
3
|
require 'spec_helper'
|
4
|
-
require 'gherkin/
|
5
|
-
require 'gherkin/listener/formatter_listener'
|
4
|
+
require 'gherkin/parser/parser'
|
6
5
|
require 'gherkin/formatter/filter_formatter'
|
7
6
|
require 'gherkin/formatter/pretty_formatter'
|
8
7
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gherkin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 15
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 2.1.
|
9
|
+
- 2
|
10
|
+
version: 2.1.2
|
11
11
|
platform: i386-mingw32
|
12
12
|
authors:
|
13
13
|
- Mike Sassak
|
@@ -17,7 +17,7 @@ autorequire:
|
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
19
|
|
20
|
-
date: 2010-07-
|
20
|
+
date: 2010-07-13 00:00:00 +02:00
|
21
21
|
default_executable: gherkin
|
22
22
|
dependencies:
|
23
23
|
- !ruby/object:Gem::Dependency
|