116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
# File 'lib/authlogic/session/password.rb', line 116
def initialize(*args)
if !self.class.configured_password_methods
if login_field
self.class.send(:attr_writer, login_field) if !respond_to?("#{login_field}=")
self.class.send(:attr_reader, login_field) if !respond_to?(login_field)
end
if password_field
self.class.send(:attr_writer, password_field) if !respond_to?("#{password_field}=")
self.class.send(:define_method, password_field) {} if !respond_to?(password_field)
self.class.class_eval " private\n # The password should not be accessible publicly. This way forms using form_for don't fill the password with the\n # attempted password. To prevent this we just create this method that is private.\n def protected_\#{password_field}\n @\#{password_field}\n end\n end_eval\n end\n\n self.class.configured_password_methods = true\n end\n \n super\nend\n", __FILE__, __LINE__
|