Commit 0f067c2792cbac8cdc4a78af602d4defa3e619dd

Authored by Antonio Terceiro
1 parent d746bd87

Rakefile: fix version comparison

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
@@ -45,7 +45,7 @@ end @@ -45,7 +45,7 @@ end
45 45
46 require 'chake' 46 require 'chake'
47 47
48 -if Chake::VERSION < '0.7' 48 +if Gem::Version.new(Chake::VERSION) < Gem::Version.new('0.7')
49 fail "Please upgrade to chake 0.7+" 49 fail "Please upgrade to chake 0.7+"
50 end 50 end
51 51