gherkin 1.0.27-i386-mswin32 → 1.0.28-i386-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +6 -0
- data/VERSION.yml +1 -1
- data/tasks/compile.rake +1 -1
- metadata +2 -2
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
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}")
|