class YARD::CodeObjects::Chef::ActionObject

An ActionObject represents an action in a lightweight provider. See wiki.opscode.com/display/chef/Lightweight+Resources+and+Providers+%28LWRP%29#LightweightResourcesandProviders%28LWRP%29-Keyword%3Aaction

Public Class Methods

new(namespace, name) click to toggle source

Creates a new instance of the ActionObject

@param namespace [NamespaceObject] namespace to which the action belongs @param name [String] name of the action

@return [ActionObject] the newly created ActionObject

Calls superclass method
# File lib/yard-chef/code_objects/action_object.rb, line 38
def initialize(namespace, name)
  super(namespace, name)
end