Method: Puppet::Type.eachautobefore
- Defined in:
- lib/puppet/type.rb
.eachautobefore {|type, block| ... } ⇒ void
This method returns an undefined value.
Provides iteration over added auto-requirements (see autobefore).
2082 2083 2084 2085 2086 2087 |
# File 'lib/puppet/type.rb', line 2082 def self.eachautobefore @autobefores ||= {} @autobefores.each { |type,block| yield(type, block) } end |