Skip to content

Commit

Permalink
Add autoload hook for AbstractController::ActionNotFound
Browse files Browse the repository at this point in the history
The error can be reproduced with

    require "bundler/setup"
    require "action_controller"

    AbstractController::ActionNotFound
  • Loading branch information
rafaelfranca committed Nov 28, 2018
1 parent 9c6e362 commit 00638f3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions actionpack/lib/abstract_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
module AbstractController
extend ActiveSupport::Autoload

autoload :ActionNotFound, "abstract_controller/base"
autoload :Base
autoload :Caching
autoload :Callbacks
Expand Down

0 comments on commit 00638f3

Please sign in to comment.