gherkin 2.9.1 → 2.9.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.md +5 -1
- data/README.md +1 -1
- data/gherkin.gemspec +2 -2
- metadata +5 -5
data/History.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
|
+
## [2.9.2](https://github.com/cucumber/gherkin/compare/v2.9.1...v2.9.2)
|
2
|
+
|
3
|
+
* [Java] Ability to PrettyFormatter.setMonochrome(false) post construction (Aslak Hellesøy)
|
4
|
+
|
1
5
|
## [2.9.1](https://github.com/cucumber/gherkin/compare/v2.9.0...v2.9.1)
|
2
6
|
|
3
|
-
* Package gherkin.jar as OSGi bundle ([#166](https://github.com/cucumber/gherkin/pull/166) Jan Stamer)
|
7
|
+
* [Java] Package gherkin.jar as OSGi bundle ([#166](https://github.com/cucumber/gherkin/pull/166) Jan Stamer)
|
4
8
|
* The build system and instruction has been updated to work on OS X Lion. (Aslak Hellesøy)
|
5
9
|
|
6
10
|
## [2.9.0](https://github.com/cucumber/gherkin/compare/v2.8.0...v2.9.0)
|
data/README.md
CHANGED
@@ -55,7 +55,7 @@ The jar file is in the central Maven repo.
|
|
55
55
|
<dependency>
|
56
56
|
<groupId>info.cukes</groupId>
|
57
57
|
<artifactId>gherkin</artifactId>
|
58
|
-
<version>2.9.
|
58
|
+
<version>2.9.2</version>
|
59
59
|
</dependency>
|
60
60
|
|
61
61
|
You can get it manually from [Maven Central](http://search.maven.org/#browse%7C-2073395818)
|
data/gherkin.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
|
|
15
15
|
# When both are building OK, do a `bundle exec rake install` in both cucumber and gherkin projects, revert the changes in the first 2 steps
|
16
16
|
# and release both projects.
|
17
17
|
#
|
18
|
-
s.version = "2.9.
|
18
|
+
s.version = "2.9.2"
|
19
19
|
s.authors = ["Mike Sassak", "Gregory Hnatiuk", "Aslak Hellesøy"]
|
20
20
|
s.description = "A fast Gherkin lexer/parser based on the Ragel State Machine Compiler."
|
21
21
|
s.summary = "#{s.name}-#{s.version}"
|
@@ -61,7 +61,7 @@ Gem::Specification.new do |s|
|
|
61
61
|
s.add_development_dependency('cucumber', '>= 1.1.9')
|
62
62
|
s.add_development_dependency('rake', '>= 0.9.2')
|
63
63
|
s.add_development_dependency('bundler', '>= 1.1.0')
|
64
|
-
s.add_development_dependency('rspec', '~> 2.
|
64
|
+
s.add_development_dependency('rspec', '~> 2.9.0') # No 2.8.0 until this is fixed: https://github.com/rspec/rspec-expectations/issues/112
|
65
65
|
s.add_development_dependency('rubyzip', '>= 0.9.6.1')
|
66
66
|
|
67
67
|
unless ENV['RUBY_CC_VERSION'] || defined?(JRUBY_VERSION)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gherkin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.9.
|
4
|
+
version: 2.9.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2012-03-
|
14
|
+
date: 2012-03-26 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: rake-compiler
|
@@ -100,7 +100,7 @@ dependencies:
|
|
100
100
|
requirements:
|
101
101
|
- - ~>
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 2.
|
103
|
+
version: 2.9.0
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -108,7 +108,7 @@ dependencies:
|
|
108
108
|
requirements:
|
109
109
|
- - ~>
|
110
110
|
- !ruby/object:Gem::Version
|
111
|
-
version: 2.
|
111
|
+
version: 2.9.0
|
112
112
|
- !ruby/object:Gem::Dependency
|
113
113
|
name: rubyzip
|
114
114
|
requirement: !ruby/object:Gem::Requirement
|
@@ -550,7 +550,7 @@ rubyforge_project:
|
|
550
550
|
rubygems_version: 1.8.19
|
551
551
|
signing_key:
|
552
552
|
specification_version: 3
|
553
|
-
summary: gherkin-2.9.
|
553
|
+
summary: gherkin-2.9.2
|
554
554
|
test_files:
|
555
555
|
- features/escaped_pipes.feature
|
556
556
|
- features/feature_parser.feature
|