From d506497390e6f03a33ff78ae247e3edc81907144 Mon Sep 17 00:00:00 2001 From: Luis Mendo Date: Thu, 10 Sep 2015 13:18:02 +0200 Subject: [PATCH] Include dummy app task to Rakefile. --- Rakefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 84becba..33383f8 100644 --- a/Rakefile +++ b/Rakefile @@ -14,8 +14,11 @@ RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_files.include('lib/**/*.rb') end +Bundler::GemHelper.install_tasks - +APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__) +load 'rails/tasks/engine.rake' Bundler::GemHelper.install_tasks +task :default => [:"app:spec"]