From 0f067c2792cbac8cdc4a78af602d4defa3e619dd Mon Sep 17 00:00:00 2001 From: Antonio Terceiro Date: Thu, 8 Oct 2015 19:26:23 -0300 Subject: [PATCH] Rakefile: fix version comparison --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 1f5f0df..eeb29d8 100644 --- a/Rakefile +++ b/Rakefile @@ -45,7 +45,7 @@ end require 'chake' -if Chake::VERSION < '0.7' +if Gem::Version.new(Chake::VERSION) < Gem::Version.new('0.7') fail "Please upgrade to chake 0.7+" end -- libgit2 0.21.2