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.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gherkin (2.4.2)
4
+ gherkin (2.4.3)
5
5
  json (>= 1.4.6)
6
6
 
7
7
  GEM
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "gherkin"
5
- s.version = "2.4.2"
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}"
@@ -27,9 +27,6 @@ module Gherkin
27
27
  @gherkin_object = feature.to_hash
28
28
  end
29
29
 
30
- def steps(steps)
31
- end
32
-
33
30
  def background(background)
34
31
  feature_elements << background.to_hash
35
32
  end
@@ -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 -t cross compile RUBY_CC_VERSION=1.8.6"
9
- sh "rvm 1.9.1-p243@cucumber rake -t cross compile RUBY_CC_VERSION=1.9.1"
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.2
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-08 00:00:00 Z
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.2
316
+ summary: gherkin-2.4.3
317
317
  test_files:
318
318
  - features/escaped_pipes.feature
319
319
  - features/feature_parser.feature