gherkin 1.0.27-java → 1.0.28-java

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/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ == 1.0.28 (2010-05-18)
2
+
3
+ === Bugfixes
4
+ * Use context class loader instead of boot class loader to load Java lexers. (Aslak Hellesøy)
5
+ * Only add gcc flags when the compiler is gcc. (#60 Aslak Hellesøy, Christian Höltje)
6
+
1
7
  == 1.0.27 (2010-05-17)
2
8
 
3
9
  === New Features
data/VERSION.yml CHANGED
@@ -2,4 +2,4 @@
2
2
  :major: 1
3
3
  :minor: 0
4
4
  :build:
5
- :patch: 27
5
+ :patch: 28
data/lib/gherkin.jar CHANGED
Binary file
data/tasks/compile.rake CHANGED
@@ -54,7 +54,7 @@ langs.each do |i18n|
54
54
  io.write(<<-EOF)
55
55
  require 'mkmf'
56
56
  CONFIG['warnflags'].gsub!(/-Wshorten-64-to-32/, '') if CONFIG['warnflags']
57
- $CFLAGS << ' -O0 -Wall -Werror'
57
+ $CFLAGS << ' -O0 -Wall -Werror' if CONFIG['CC'] =~ /gcc/
58
58
  dir_config("gherkin_lexer_#{i18n.underscored_iso_code}")
59
59
  have_library("c", "main")
60
60
  create_makefile("gherkin_lexer_#{i18n.underscored_iso_code}")
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 27
9
- version: 1.0.27
8
+ - 28
9
+ version: 1.0.28
10
10
  platform: java
11
11
  authors:
12
12
  - Mike Sassak