aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorJamie Winsor <jamie@enmasse.com>2011-10-26 13:12:26 -0700
committerJamie Winsor <jamie@enmasse.com>2011-10-26 13:12:26 -0700
commitdb93751fd6b856a3eef79ddbd60d1251e6daa732 (patch)
tree1b34679420e8caa3125b362159a25e40cc410cf6 /Rakefile
parent1b3195bf30ac0b6803525e1a4629cb2a5e60ce8b (diff)
downloadrefinerycms-blog-db93751fd6b856a3eef79ddbd60d1251e6daa732.tar.gz
refinerycms-blog-db93751fd6b856a3eef79ddbd60d1251e6daa732.tar.bz2
refinerycms-blog-db93751fd6b856a3eef79ddbd60d1251e6daa732.zip
Modify Rakefile to load engine tasks and testing railtie tasks
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile29
1 files changed, 5 insertions, 24 deletions
diff --git a/Rakefile b/Rakefile
index 0fb4407..8b8cb49 100644
--- a/Rakefile
+++ b/Rakefile
@@ -4,31 +4,12 @@ begin
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
-begin
- require 'rdoc/task'
-rescue LoadError
- require 'rdoc/rdoc'
- require 'rake/rdoctask'
- RDoc::Task = Rake::RDocTask
-end
-
-RDoc::Task.new(:rdoc) do |rdoc|
- rdoc.rdoc_dir = 'rdoc'
- rdoc.title = 'RefinerycmsBlog'
- rdoc.options << '--line-numbers'
- rdoc.rdoc_files.include('README.rdoc')
- rdoc.rdoc_files.include('lib/**/*.rb')
-end
-
-require 'rspec/core/rake_task'
-
-desc "Run specs"
-RSpec::Core::RakeTask.new(:spec => 'refinery:testing:engine:init_test_database')
APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
-load 'rails/tasks/engine.rake'
-load 'refinery/tasks/testing.rake'
-Bundler::GemHelper.install_tasks
+if File.exists?(APP_RAKEFILE)
+ load 'rails/tasks/engine.rake'
+end
-task :default => 'refinery:testing:engine:setup'
+require "refinerycms-testing"
+Refinery::Testing::Railtie.load_tasks