Class: Devise::Getter
- Inherits:
-
Object
- Object
- Devise::Getter
- Defined in:
- lib/devise.rb
Instance Method Summary collapse
- #get ⇒ Object
-
#initialize(name) ⇒ Getter
constructor
A new instance of Getter.
Constructor Details
#initialize(name) ⇒ Getter
Returns a new instance of Getter.
252 253 254 |
# File 'lib/devise.rb', line 252 def initialize name @name = name end |
Instance Method Details
#get ⇒ Object
256 257 258 |
# File 'lib/devise.rb', line 256 def get ActiveSupport::Dependencies.constantize(@name) end |