# File lib/puppet/util/settings.rb, line 407 407: def persection(section) 408: section = section.to_sym 409: self.each { |name, obj| 410: if obj.section == section 411: yield obj 412: end 413: } 414: end