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



250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
# File 'lib/authlogic/acts_as_authentic/password.rb', line 250

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