Sha256: fe5f71be6b7ee4379dddfc21a7a1dcf964e115818f0911f888d063206998a5d7

Contents?: true

Size: 961 Bytes

Versions: 11

Compression:

Stored size: 961 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?

require 'rubocop/rake_task'

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

begin
  require 'rspec/core/rake_task'

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

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

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
bulkrax-9.0.2 Rakefile
bulkrax-9.0.1 Rakefile
bulkrax-9.0.0 Rakefile
bulkrax-8.2.3 Rakefile
bulkrax-8.2.2 Rakefile
bulkrax-8.3.0 Rakefile
bulkrax-8.2.1 Rakefile
bulkrax-8.2.0 Rakefile
bulkrax-8.1.0 Rakefile
bulkrax-8.0.0 Rakefile
bulkrax-7.0.0 Rakefile