From d35960cab131aedaee9ff2a45535b58d67ec4c48 Mon Sep 17 00:00:00 2001 From: Derek Bender Date: Fri, 31 Oct 2014 09:45:17 -0500 Subject: [PATCH] this make running the specs the default rake task --- Rakefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Rakefile b/Rakefile index cb44788c..57aecc59 100644 --- a/Rakefile +++ b/Rakefile @@ -11,3 +11,9 @@ rescue Bundler::BundlerError => e $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end + +require 'rspec/core/rake_task' + +RSpec::Core::RakeTask.new(:spec) + +task :default => :spec