Sha256: 8664ed81c060f17fd58ef5cfe1664001597b1230b4865af252014af211732775
Contents?: true
Size: 759 Bytes
Versions: 4
Compression:
Stored size: 759 Bytes
Contents
require 'puppet' require 'puppet/parser/ast/branch' require 'puppet/parser/collector' # An object that collects stored objects from the central cache and returns # them to the current host, yo. class Puppet::Parser::AST class Collection < AST::Branch attr_accessor :type, :query, :form # We return an object that does a late-binding evaluation. def evaluate(hash) scope = hash[:scope] if self.query str, code = self.query.safeevaluate :scope => scope else str = code = nil end newcoll = Puppet::Parser::Collector.new(scope, @type, str, code, self.form) scope.newcollection(newcoll) newcoll end end end # $Id: collection.rb 1805 2006-10-18 00:22:45Z luke $
Version data entries
4 entries across 4 versions & 1 rubygems