Sha256: badc0fcdd524004f15ddc6422c3146e4a9cd18254bf64a6ae8ccd59aa7293dae

Contents?: true

Size: 548 Bytes

Versions: 7

Compression:

Stored size: 548 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_dummy_tasks(ENGINE_PATH)

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

task :default => :spec

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
refinerycms-solr-1.0.9 Rakefile
refinerycms-solr-1.0.8 Rakefile
refinerycms-solr-1.0.7 Rakefile
refinerycms-solr-1.0.6 Rakefile
refinerycms-solr-1.0.4 Rakefile
refinerycms-solr-1.0.3 Rakefile
refinerycms-solr-1.0.1 Rakefile