This repository has been archived on 2025-10-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
hitobito_lit/Rakefile
Philipp Rothmann 135b14c868 init
2022-12-20 16:26:37 +01:00

20 lines
455 B
Ruby

# 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'