gherkin 2.4.2-java → 2.4.3-java
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +1 -1
- data/History.md +5 -0
- data/gherkin.gemspec +1 -1
- data/lib/gherkin/formatter/json_formatter.rb +0 -3
- data/tasks/gems.rake +2 -2
- metadata +3 -3
data/Gemfile.lock
CHANGED
data/History.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## [2.4.3](https://github.com/cucumber/gherkin/compare/v2.4.2...v2.4.3)
|
2
|
+
|
3
|
+
### Changed Features
|
4
|
+
* Added a small hack to the java Result class to work around [Cucumber bug #97](https://github.com/cucumber/cucumber/issues/97) (Aslak Hellesøy)
|
5
|
+
|
1
6
|
## [2.4.2](https://github.com/cucumber/gherkin/compare/v2.4.1...v2.4.2)
|
2
7
|
|
3
8
|
### Changed Features
|
data/gherkin.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "gherkin"
|
5
|
-
s.version = "2.4.
|
5
|
+
s.version = "2.4.3"
|
6
6
|
s.authors = ["Mike Sassak", "Gregory Hnatiuk", "Aslak Hellesøy"]
|
7
7
|
s.description = "A fast Gherkin lexer/parser for based on the Ragel State Machine Compiler."
|
8
8
|
s.summary = "#{s.name}-#{s.version}"
|
data/tasks/gems.rake
CHANGED
@@ -5,8 +5,8 @@ namespace :gems do
|
|
5
5
|
exit(1)
|
6
6
|
end
|
7
7
|
# rvm and mingw ruby versions have to match to avoid errors
|
8
|
-
sh "rvm 1.8.6-p399@cucumber rake
|
9
|
-
sh "rvm 1.9.1-p243@cucumber rake
|
8
|
+
sh "rvm 1.8.6-p399@cucumber rake cross compile RUBY_CC_VERSION=1.8.6"
|
9
|
+
sh "rvm 1.9.1-p243@cucumber rake cross compile RUBY_CC_VERSION=1.9.1"
|
10
10
|
# This will copy the .so files to the proper place
|
11
11
|
sh "rake -t cross compile RUBY_CC_VERSION=1.8.6:1.9.1"
|
12
12
|
end
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: gherkin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 2.4.
|
5
|
+
version: 2.4.3
|
6
6
|
platform: java
|
7
7
|
authors:
|
8
8
|
- Mike Sassak
|
@@ -12,7 +12,7 @@ autorequire:
|
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
14
|
|
15
|
-
date: 2011-07-
|
15
|
+
date: 2011-07-09 00:00:00 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: json
|
@@ -313,7 +313,7 @@ rubyforge_project:
|
|
313
313
|
rubygems_version: 1.8.5
|
314
314
|
signing_key:
|
315
315
|
specification_version: 3
|
316
|
-
summary: gherkin-2.4.
|
316
|
+
summary: gherkin-2.4.3
|
317
317
|
test_files:
|
318
318
|
- features/escaped_pipes.feature
|
319
319
|
- features/feature_parser.feature
|