Sha256: 5766d2ca769ba12c939efc2b54ea74cf7ed4cda092badc4c4a9d2145257beb1e
Contents?: true
Size: 508 Bytes
Versions: 21
Compression:
Stored size: 508 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__)
Version data entries
21 entries across 21 versions & 9 rubygems