1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/lib/rails/tasks.rb
2020-10-30 00:26:09 +00:00

19 lines
288 B
Ruby

# frozen_string_literal: true
require "rake"
# Load Rails Rakefile extensions
%w(
framework
log
middleware
misc
restart
tmp
yarn
zeitwerk
).tap { |arr|
arr << "statistics" if Rake.application.current_scope.empty?
}.each do |task|
load "rails/tasks/#{task}.rake"
end