Sha256: baf140d6c2237529a24bdfe90fb01d4bd2f980b6d8c01deeb8de10eab6013bdc

Contents?: true

Size: 761 Bytes

Versions: 13

Compression:

Stored size: 761 Bytes

Contents

require "bundler/gem_tasks"
require 'rspec/core/rake_task'
require 'engine_cart/rake_task'

RSpec::Core::RakeTask.new(:spec)

task :default => [:ci]

task :ci => ['engine_cart:generate'] do
  require 'solr_wrapper'
  SolrWrapper.wrap(port: '8983') do |solr|
    solr.with_collection(name: 'blacklight-core', dir: File.join(File.expand_path(File.dirname(__FILE__)), "solr", "conf")) do
      Rake::Task["blacklight_marc:fixtures"].invoke
      Rake::Task['spec'].invoke
    end
  end
end


namespace :blacklight_marc do

  desc "Load fixtures"
  task :fixtures => ['engine_cart:generate'] do
    within_test_app do
      system "bundle exec rake solr:marc:index_test_data RAILS_ENV=test"
      abort "Error running fixtures" unless $?.success?
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
blacklight-marc-8.1.4 Rakefile
blacklight-marc-8.1.3 Rakefile
blacklight-marc-8.1.2 Rakefile
blacklight-marc-8.1.1 Rakefile
blacklight-marc-8.1.0 Rakefile
blacklight-marc-8.0.0 Rakefile
blacklight-marc-7.2.0 Rakefile
blacklight-marc-7.1.1 Rakefile
blacklight-marc-7.1.0 Rakefile
blacklight-marc-7.0.1 Rakefile
blacklight-marc-6.3.0 Rakefile
blacklight-marc-7.0.0 Rakefile
blacklight-marc-7.0.0.rc1 Rakefile