Sha256: ea90aab533867329299dc28e9896f8898d1f877e72791973ae297c1adcdab04b

Contents?: true

Size: 653 Bytes

Versions: 7

Compression:

Stored size: 653 Bytes

Contents

#!/usr/bin/env rake
# frozen_string_literal: true

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

Bundler::GemHelper.install_tasks

task :setup_test_server do
  require 'engine_cart'
  EngineCart.load_application!
end

Dir.glob('tasks/*.rake').each { |r| import r }

task default: :ci

# Load the test app's rake tasks so they can be run from the app namespace (e.g. app:db:migrate)
if File.exist?(File.expand_path(".internal_test_app/Rakefile", __dir__))
  APP_RAKEFILE = File.expand_path(".internal_test_app/Rakefile", __dir__)
  load 'rails/tasks/engine.rake'
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hyrax-5.0.0.rc1 Rakefile
hyrax-4.0.0 Rakefile
hyrax-4.0.0.rc3 Rakefile
hyrax-4.0.0.rc2 Rakefile
hyrax-4.0.0.rc1 Rakefile
hyrax-4.0.0.beta2 Rakefile
hyrax-4.0.0.beta1 Rakefile