From b083f8bfd89be951e8b8e257f15c229c882a9ddf Mon Sep 17 00:00:00 2001 From: Chris Kowalik Date: Wed, 25 Jul 2012 00:32:53 +0200 Subject: [PATCH] [bugfix] argh, fixed load path addition in Rakefile --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 546a5d6..8b28121 100644 --- a/Rakefile +++ b/Rakefile @@ -1,5 +1,5 @@ # -*- ruby -*- -$LOAD_PATH.unshift(File.expand_path('../lib'), __FILE__) +$LOAD_PATH.unshift(File.expand_path('../lib', __FILE__)) Dir[File.expand_path('../lib/tasks/*.rake', __FILE__)].each do |rakefile| load rakefile