gherkin 2.4.2-universal-dotnet → 2.4.3-universal-dotnet
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/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: universal-dotnet
|
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
|
@@ -317,7 +317,7 @@ rubyforge_project:
|
|
317
317
|
rubygems_version: 1.8.5
|
318
318
|
signing_key:
|
319
319
|
specification_version: 3
|
320
|
-
summary: gherkin-2.4.
|
320
|
+
summary: gherkin-2.4.3
|
321
321
|
test_files:
|
322
322
|
- features/escaped_pipes.feature
|
323
323
|
- features/feature_parser.feature
|