1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add autoload hook for AbstractController::ActionNotFound

The error can be reproduced with

    require "bundler/setup"
    require "action_controller"

    AbstractController::ActionNotFound
This commit is contained in:
Rafael Mendonça França 2018-11-28 14:21:19 -05:00
parent 9c6e362a63
commit 00638f31d1
No known key found for this signature in database
GPG key ID: FC23B6D0F1EEE948

View file

@ -7,6 +7,7 @@ require "active_support/i18n"
module AbstractController
extend ActiveSupport::Autoload
autoload :ActionNotFound, "abstract_controller/base"
autoload :Base
autoload :Caching
autoload :Callbacks