Sha256: 1786cbc1b556d76a4b243f7456545a3b095996e8a83f64a943ca0f8cb80bd46e

Contents?: true

Size: 914 Bytes

Versions: 57

Compression:

Stored size: 914 Bytes

Contents

# frozen_string_literal: true

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

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Bulkrax'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../spec/test_app/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'

load 'rails/tasks/statistics.rake'

require 'bundler/gem_tasks'

require 'solr_wrapper/rake_task' unless Rails.env.production?

begin
  require 'rspec/core/rake_task'

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

  task default: :spec
rescue LoadError # rubocop:disable Lint/HandleExceptions
  # no rspec available
end

require 'rubocop/rake_task'

RuboCop::RakeTask.new(:rubocop) do |t|
  t.options = ['--display-cop-names']
end

Version data entries

57 entries across 57 versions & 1 rubygems

Version Path
bulkrax-5.5.1 Rakefile
bulkrax-5.4.2 Rakefile
bulkrax-5.3.1 Rakefile
bulkrax-6.0.1 Rakefile
bulkrax-6.0.0 Rakefile
bulkrax-5.5.0 Rakefile
bulkrax-5.4.1 Rakefile
bulkrax-5.4.0 Rakefile
bulkrax-5.3.0 Rakefile
bulkrax-5.2.1 Rakefile
bulkrax-4.4.2 Rakefile
bulkrax-5.2.0 Rakefile
bulkrax-4.4.1 Rakefile
bulkrax-4.3.1 Rakefile
bulkrax-5.1.0 Rakefile
bulkrax-5.0.0 Rakefile
bulkrax-4.4.0 Rakefile
bulkrax-4.3.0 Rakefile
bulkrax-4.2.1 Rakefile
bulkrax-4.2.0 Rakefile