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.
372 373 374 |
# File 'lib/devise.rb', line 372 def initialize name @name = name end |
Instance Method Details
#get ⇒ Object
376 377 378 |
# File 'lib/devise.rb', line 376 def get ActiveSupport::Dependencies.constantize(@name) end |