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.
270 271 272 |
# File 'lib/devise.rb', line 270 def initialize name @name = name end |
Instance Method Details
#get ⇒ Object
274 275 276 |
# File 'lib/devise.rb', line 274 def get ActiveSupport::Dependencies.constantize(@name) end |