Module: Authpds::ActsAsAuthentic

Defined in:
lib/authpds/acts_as_authentic.rb,
lib/authpds/acts_as_authentic/expiration.rb,
lib/authpds/acts_as_authentic/core_attributes.rb,
lib/authpds/acts_as_authentic/institutions_attributes.rb

Defined Under Namespace

Modules: CoreAttributes, Expiration, InstitutionAttributes

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



3
4
5
6
7
8
9
# File 'lib/authpds/acts_as_authentic.rb', line 3

def self.included(klass)
  klass.class_eval do
    add_acts_as_authentic_module(Authpds::ActsAsAuthentic::CoreAttributes, :prepend)
    add_acts_as_authentic_module(Authpds::ActsAsAuthentic::Expiration, :append)
    add_acts_as_authentic_module(Authpds::ActsAsAuthentic::InstitutionAttributes, :append)
  end
end