Class: ActiveSupport::Dependencies::Reference
- Inherits:
-
Object
- Object
- ActiveSupport::Dependencies::Reference
- Defined in:
- activesupport/lib/active_support/dependencies.rb
Instance Attribute Summary (collapse)
-
- (Object) name
readonly
Returns the value of attribute name.
Class Method Summary (collapse)
Instance Method Summary (collapse)
- - (Object) get
-
- (Reference) initialize(name)
constructor
A new instance of Reference.
Constructor Details
- (Reference) initialize(name)
A new instance of Reference
527 528 529 530 |
# File 'activesupport/lib/active_support/dependencies.rb', line 527 def initialize(name) @name = name.to_s @@constants[@name] = name if name.respond_to?(:name) end |
Instance Attribute Details
- (Object) name (readonly)
Returns the value of attribute name
525 526 527 |
# File 'activesupport/lib/active_support/dependencies.rb', line 525 def name @name end |
Class Method Details
+ (Object) clear!
536 537 538 |
# File 'activesupport/lib/active_support/dependencies.rb', line 536 def self.clear! @@constants.clear end |
Instance Method Details
- (Object) get
532 533 534 |
# File 'activesupport/lib/active_support/dependencies.rb', line 532 def get @@constants[@name] end |