class YARD::CodeObjects::Chef::AttributeObject
An AttributeObject represents a cookbook or a resource attribute. See wiki.opscode.com/display/chef/Attributes
Public Class Methods
new(namespace, name)
click to toggle source
Creates a new instance of the AttributeObject.
@param namespace [NamespaceObject] namespace to which the attribute belongs @param name [String] name of the attribute
@return [AttributeObject] the newly created AttribteObject
Calls superclass method
# File lib/yard-chef/code_objects/attribute_object.rb, line 40 def initialize(namespace, name) super(namespace, name) end