From d0e55643842d6ae5fe6f2dddf22b09ab2d6c17ee Mon Sep 17 00:00:00 2001 From: Drew Dara-Abrams Date: Mon, 17 Nov 2014 20:27:19 -0800 Subject: [PATCH] `bundle exec rake` should run specs --- Rakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rakefile b/Rakefile index 7bdd594..aaa32fa 100755 --- a/Rakefile +++ b/Rakefile @@ -4,3 +4,5 @@ require 'rspec/core/rake_task' RSpec::Core::RakeTask.new do |t| t.pattern = './spec/**/*_spec.rb' end + +task :default => [:spec]