Class: LetMeIn::Config
- Inherits:
-
Object
- Object
- LetMeIn::Config
- Defined in:
- lib/letmein.rb
Overview
Constant Summary collapse
- ACCESSORS =
%w(models attributes passwords salts)
Instance Method Summary collapse
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
22 23 24 25 26 27 |
# File 'lib/letmein.rb', line 22 def initialize @models = ['User'] @attributes = ['email'] @passwords = ['password_hash'] @salts = ['password_salt'] end |