From 6c13b3f23968b2c1120fce8a9117aaf844743c71 Mon Sep 17 00:00:00 2001 From: Ross Kaffenberger Date: Mon, 7 Apr 2014 15:17:31 -0400 Subject: [PATCH] require rspec/core/rake_task --- Rakefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Rakefile b/Rakefile index 8dc1875..9a36334 100644 --- a/Rakefile +++ b/Rakefile @@ -3,6 +3,8 @@ require "bundler/gem_tasks" APP_RAKEFILE = File.expand_path("../spec/rails_app/Rakefile", __FILE__) load 'rails/tasks/engine.rake' +require 'rspec/core/rake_task' + desc "Run all specs in spec directory (excluding plugin specs)" RSpec::Core::RakeTask.new(:spec => 'app:db:test:prepare')