From c677bcca9534f0e7315e37073245cc714ee49a46 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 12 Apr 2010 19:02:43 +0200 Subject: [PATCH] Fixed rake rspec execution --- Rakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rakefile b/Rakefile index cab423d..3b90a5f 100644 --- a/Rakefile +++ b/Rakefile @@ -1,5 +1,7 @@ %w[rubygems rake rake/clean fileutils].each { |f| require f } require File.dirname(__FILE__) + '/lib/user_agent' +Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].each{|f| load f } + # TODO - want other tests/tasks run by default? Add them to the list task :default => [:spec]