Module Login::ControllerIntegration
In: lib/login/controller_integration.rb

Module automatically mixed into the all controllers making the application of authentication easy. See Login::ControllerIntegration::ClassMethods for how to apply authentication.

Methods

included  

Classes and Modules

Module Login::ControllerIntegration::ClassMethods
Module Login::ControllerIntegration::InstanceMethods

Public Class methods

[Source]

    # File lib/login/controller_integration.rb, line 8
 8:     def self.included(mod)
 9:       mod.extend ClassMethods
10:       mod.send :include, InstanceMethods
11:     end

[Validate]