Method: Authlogic::ActsAsAuthentic::Queries::FindWithCase#initialize

Defined in:
lib/authlogic/acts_as_authentic/queries/find_with_case.rb

#initialize(model_class, field, value, sensitive) ⇒ FindWithCase

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of FindWithCase.



23
24
25
26
27
28
# File 'lib/authlogic/acts_as_authentic/queries/find_with_case.rb', line 23

def initialize(model_class, field, value, sensitive)
  @model_class = model_class
  @field = field.to_s
  @value = value
  @sensitive = sensitive
end