Class: Cheffish::ChefProviderBase::FakeEntry
- Inherits:
-
Object
- Object
- Cheffish::ChefProviderBase::FakeEntry
- Defined in:
- lib/cheffish/chef_provider_base.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#org ⇒ Object
readonly
Returns the value of attribute org.
-
#parent ⇒ Object
readonly
Returns the value of attribute parent.
Instance Method Summary collapse
-
#initialize(name, parent = nil) ⇒ FakeEntry
constructor
A new instance of FakeEntry.
Constructor Details
#initialize(name, parent = nil) ⇒ FakeEntry
Returns a new instance of FakeEntry.
227 228 229 230 231 |
# File 'lib/cheffish/chef_provider_base.rb', line 227 def initialize(name, parent = nil) @name = name @parent = parent @org = nil end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
233 234 235 |
# File 'lib/cheffish/chef_provider_base.rb', line 233 def name @name end |
#org ⇒ Object (readonly)
Returns the value of attribute org.
235 236 237 |
# File 'lib/cheffish/chef_provider_base.rb', line 235 def org @org end |
#parent ⇒ Object (readonly)
Returns the value of attribute parent.
234 235 236 |
# File 'lib/cheffish/chef_provider_base.rb', line 234 def parent @parent end |