init
This commit is contained in:
commit
135b14c868
35 changed files with 1363 additions and 0 deletions
20
Rakefile
Normal file
20
Rakefile
Normal 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'
|
||||
Reference in a new issue