Skip to content

Commit

Permalink
Modify Rakefile to load engine tasks and testing railtie tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Winsor committed Oct 26, 2011
1 parent 1b3195b commit db93751
Showing 1 changed file with 5 additions and 24 deletions.
29 changes: 5 additions & 24 deletions Rakefile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,31 +4,12 @@ begin
rescue LoadError rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks' puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end 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__) 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

0 comments on commit db93751

Please sign in to comment.