Class: Phoenx::Configuration
- Inherits:
-
Object
- Object
- Phoenx::Configuration
- Defined in:
- lib/phoenx/entities/configuration.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#parent ⇒ Object
Returns the value of attribute parent.
Instance Method Summary collapse
-
#initialize(name, parent) ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize(name, parent) ⇒ Configuration
Returns a new instance of Configuration.
7 8 9 10 |
# File 'lib/phoenx/entities/configuration.rb', line 7 def initialize(name, parent) @name = name @parent = parent end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
5 6 7 |
# File 'lib/phoenx/entities/configuration.rb', line 5 def name @name end |
#parent ⇒ Object
Returns the value of attribute parent.
4 5 6 |
# File 'lib/phoenx/entities/configuration.rb', line 4 def parent @parent end |