aboutsummaryrefslogblamecommitdiffstats
path: root/Rakefile
blob: 30b03df385252695e57a9d8e3e1f669bca548f36 (plain) (tree)
1
2
3
4
5
6
7
8
9





                                                                              
 
                                    
                                                                   
 


                                
 
                             
                                                        

                                                      

                      
#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

ENGINE_PATH = File.dirname(__FILE__)
APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)

if File.exists?(APP_RAKEFILE)
  load 'rails/tasks/engine.rake'
end

require "refinerycms-testing"
Refinery::Testing::Railtie.load_dummy_tasks(ENGINE_PATH)

load File.expand_path('../tasks/rspec.rake', __FILE__)

task :default => :spec