From be436dc561c907d757090e5f1d7127827a22bd7d Mon Sep 17 00:00:00 2001 From: Davide D'Agostino Date: Fri, 22 Jul 2011 12:05:03 +0200 Subject: [PATCH] Bump to version 0.0.6 --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 3e46437..ffbde26 100644 --- a/Rakefile +++ b/Rakefile @@ -9,7 +9,7 @@ end desc "Bump version on github" task :bump do - puts "Nothing to commit (working directory clean)" and return if `git status -s`.strip == "" + puts "Nothing to commit (working directory clean)" and return true if `git status -s`.strip == "" version = Bundler.load_gemspec(Dir[File.expand_path('../*.gemspec', __FILE__)].first).version sh "git add .; git commit -m \"Bump to version #{version}\"" end