mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
9e80c29cd5
Also edited the copy to be more consistent with `rake routes`. See #19323.
17 lines
213 B
Ruby
17 lines
213 B
Ruby
require 'rake'
|
|
|
|
# Load Rails Rakefile extensions
|
|
%w(
|
|
annotations
|
|
framework
|
|
initializers
|
|
log
|
|
middleware
|
|
misc
|
|
restart
|
|
routes
|
|
statistics
|
|
tmp
|
|
).each do |task|
|
|
load "rails/tasks/#{task}.rake"
|
|
end
|