This commit is contained in:
Philipp Rothmann 2022-12-20 16:26:37 +01:00
commit 135b14c868
35 changed files with 1363 additions and 0 deletions

20
Rakefile Normal file
View file

@ -0,0 +1,20 @@
# 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'