Module: Authlogic::ActsAsAuthentic::Password::Methods

Defined in:
lib/authlogic/acts_as_authentic/password.rb

Overview

The methods related to the password field.

Defined Under Namespace

Modules: InstanceMethods

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# File 'lib/authlogic/acts_as_authentic/password.rb', line 208

def self.included(klass)
  return if klass.crypted_password_field.nil?
  
  klass.class_eval do
    include InstanceMethods
    
    if validate_password_field
      validates_length_of :password, validates_length_of_password_field_options
      
      if require_password_confirmation
        validates_confirmation_of :password, validates_confirmation_of_password_field_options
        validates_length_of :password_confirmation, validates_length_of_password_confirmation_field_options
      end
    end
    
    after_save :reset_password_changed
  end
end