gherkin 1.0.18-i386-mingw32 → 1.0.19-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.
@@ -1,3 +1,11 @@
1
+ == 1.0.19
2
+
3
+ === New Features
4
+ * Works with JRuby 1.5.0.RC1 (Aslak Hellesøy)
5
+
6
+ === Changed Features
7
+ * I18n.code_keywords now return And and But as well, making Cucumber StepDefs a little more flexible (Aslak Hellesøy)
8
+
1
9
  == 1.0.18 (2010-04-21)
2
10
 
3
11
  === Bugfixes
@@ -2,4 +2,4 @@
2
2
  :major: 1
3
3
  :minor: 0
4
4
  :build:
5
- :patch: 18
5
+ :patch: 19
@@ -11,7 +11,6 @@ module Gherkin
11
11
  ALL_KEYS = %w{name native feature background scenario scenario_outline examples given when then and but}
12
12
  KEYWORD_KEYS = ALL_KEYS - %w{name native}
13
13
  STEP_KEYWORD_KEYS = %w{given when then and but}
14
- GWT_KEYWORD_KEYS = %w{given when then}
15
14
  LANGUAGES = YAML.load_file(File.dirname(__FILE__) + '/i18n.yml')
16
15
 
17
16
  class << self
@@ -132,13 +131,9 @@ module Gherkin
132
131
  STEP_KEYWORD_KEYS.map{|iso_code| keywords(iso_code)}.flatten.uniq
133
132
  end
134
133
 
135
- def gwt_keywords
136
- GWT_KEYWORD_KEYS.map{|iso_code| keywords(iso_code)}.flatten.uniq
137
- end
138
-
139
134
  # Keywords that can be used in code
140
135
  def code_keywords
141
- result = gwt_keywords.map{|keyword| self.class.code_keyword_for(keyword)}
136
+ result = step_keywords.map{|keyword| self.class.code_keyword_for(keyword)}
142
137
  result.delete('*')
143
138
  result
144
139
  end
@@ -158,7 +153,7 @@ module Gherkin
158
153
  KEYWORD_KEYS.each do |key|
159
154
  pf.row([key, keywords(key).map{|keyword| %{"#{keyword}"}}.join(', ')], 0)
160
155
  end
161
- GWT_KEYWORD_KEYS.each do |key|
156
+ STEP_KEYWORD_KEYS.each do |key|
162
157
  code_keywords = keywords(key).reject{|keyword| keyword == '* '}.map do |keyword|
163
158
  %{"#{self.class.code_keyword_for(keyword)}"}
164
159
  end.join(', ')
@@ -133,6 +133,8 @@ module Gherkin
133
133
  | given (code) | "Soit", "Etantdonné" |
134
134
  | when (code) | "Quand", "Lorsque", "Lorsqu" |
135
135
  | then (code) | "Alors" |
136
+ | and (code) | "Et" |
137
+ | but (code) | "Mais" |
136
138
  }
137
139
  end
138
140
  end
@@ -13,7 +13,7 @@ require 'shared/py_string_spec'
13
13
  require 'shared/row_spec'
14
14
 
15
15
  if defined?(JRUBY_VERSION)
16
- class OutputStreamStringIO < java.io.ByteArrayOutputStream
16
+ class OutputStreamStringIO < Java.java.io.ByteArrayOutputStream
17
17
  def rewind
18
18
  end
19
19
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 18
9
- version: 1.0.18
8
+ - 19
9
+ version: 1.0.19
10
10
  platform: i386-mingw32
11
11
  authors:
12
12
  - Mike Sassak
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-04-21 00:00:00 +02:00
19
+ date: 2010-04-23 00:00:00 +02:00
20
20
  default_executable: gherkin
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency