Method: Puppet::Type#eachproperty

Defined in:
lib/puppet/type.rb

#eachproperty {|property| ... } ⇒ void

This method returns an undefined value.

Iterates over the properties that were set on this resource.

Yield Parameters:



720
721
722
723
724
725
# File 'lib/puppet/type.rb', line 720

def eachproperty
  # properties is a private method
  properties.each { |property|
    yield property
  }
end