# File lib/puppet/type/component.rb, line 71 71: def refresh 72: catalog.adjacent(self).each do |child| 73: if child.respond_to?(:refresh) 74: child.refresh 75: child.log "triggering %s" % :refresh 76: end 77: end 78: end