Module: Authentication::Logic::ActsAsAuthentic::Base

Defined in:
lib/auth/logic/acts_as_authentic/base.rb

Overview

Provides the base functionality for acts_as_authentic

Defined Under Namespace

Modules: Config

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



8
9
10
11
12
13
14
15
# File 'lib/auth/logic/acts_as_authentic/base.rb', line 8

def self.included(klass)
  klass.class_eval do
    class_attribute :acts_as_authentic_modules
    self.acts_as_authentic_modules ||= []
    extend Authentication::Logic::Config
    extend Config
  end
end