Sha256: 8ef094ff00e6e332b93186d4fd2c0630018c6900484c8c4c355015c52a827d5a
Contents?: true
Size: 532 Bytes
Versions: 16
Compression:
Stored size: 532 Bytes
Contents
#!/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_tasks Refinery::Testing::Railtie.load_dummy_tasks(ENGINE_PATH) load File.expand_path('../tasks/rspec.rake', __FILE__) task :default => :spec
Version data entries
16 entries across 16 versions & 9 rubygems