Module: AuthlogicWind::ActsAsAuthentic
- Defined in:
- lib/authlogic_wind/acts_as_authentic.rb
Overview
This module is responsible for adding in the wind functionality to your models. It hooks itself into the acts_as_authentic method provided by Authlogic.
Defined Under Namespace
Class Method Summary collapse
-
.included(klass) ⇒ Object
Adds in the neccesary modules for acts_as_authentic to include and also disabled password validation if wind is being used.
Class Method Details
.included(klass) ⇒ Object
Adds in the neccesary modules for acts_as_authentic to include and also disabled password validation if wind is being used.
12 13 14 15 16 17 |
# File 'lib/authlogic_wind/acts_as_authentic.rb', line 12 def self.included(klass) klass.class_eval do extend Config add_acts_as_authentic_module(Methods, :prepend) end end |