class Authlogic::ControllerAdapters::RailsAdapter::AuthlogicLoadedTooLateError

Public Instance Methods

message() click to toggle source
# File lib/authlogic/controller_adapters/rails_adapter.rb, line 14
        def message
          <<~EOS.squish
            Authlogic is trying to add a callback to ActionController::Base but
            ApplicationController has already been loaded, so the callback won't
            be copied into your application. Generally this is due to another
            gem or plugin requiring your ApplicationController prematurely, such
            as the resource_controller plugin. Please require Authlogic first,
            before these other gems / plugins.
          EOS
        end