Module: Reflex::Authlogic::ActsAsAuthentic
- Defined in:
- lib/reflex/authlogic/acts_as_authentic.rb
Class Method Summary collapse
-
.included(base) ⇒ Object
Adds in the neccesary modules for acts_as_authentic to include.
Class Method Details
.included(base) ⇒ Object
Adds in the neccesary modules for acts_as_authentic to include.
9 10 11 12 13 14 |
# File 'lib/reflex/authlogic/acts_as_authentic.rb', line 9 def self.included(base) base.class_eval do add_acts_as_authentic_module(Reflex::Authlogic::Account, :prepend) add_acts_as_authentic_module(Reflex::Authlogic::Connectable, :prepend) end end |