From dc796deb0466d2883e5ef1bd807ce2c0cd5ca874 Mon Sep 17 00:00:00 2001 From: Samuel Jenkins Date: Mon, 14 Jul 2014 21:44:32 +1000 Subject: [PATCH] Add default task to Rakefile. --- Rakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rakefile b/Rakefile index 587272f..44f6da9 100644 --- a/Rakefile +++ b/Rakefile @@ -5,3 +5,5 @@ Rake::TestTask.new do |t| t.libs << 'spec' t.pattern = 'spec/**/*_spec.rb' end + +task default: [:test]