You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
455 B
21 lines
455 B
# frozen_string_literal: true
|
|
|
|
begin
|
|
require 'bundler/setup'
|
|
rescue LoadError
|
|
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
|
end
|
|
|
|
ENGINE_PATH = File.expand_path(__dir__)
|
|
load File.expand_path('app_root.rb', __dir__)
|
|
|
|
load 'wagons/wagon_tasks.rake'
|
|
|
|
load 'rspec/rails/tasks/rspec.rake'
|
|
|
|
require 'ci/reporter/rake/rspec' unless Rails.env.production?
|
|
|
|
HitobitoLit::Wagon.load_tasks
|
|
|
|
task 'test:prepare' => 'db:test:prepare'
|