blob: 405c9b1714adae094275a125fdaea2e6b28381a3 (
plain) (
blame)
1
2
3
4
5
|
# frozen_string_literal: true
$default_tasks = [] # rubocop:disable Style/GlobalVars
Dir.glob('tasks/*.rake').each {|file| load file }
task default: $default_tasks unless $default_tasks.empty? # rubocop:disable Style/GlobalVars
|