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.
6 lines
213 B
Ruby
6 lines
213 B
Ruby
desc "Print out all defined initializers in the order they are invoked by Rails."
|
|
task initializer: :environment do
|
|
Rails.application.initializers.tsort_each do |initializer|
|
|
puts initializer.name
|
|
end
|
|
end
|