Sha256: a545653fbb068f999bac9682498475ef071ccfdde6754d2f4a3b755868bf5588

Contents?: true

Size: 677 Bytes

Versions: 73

Compression:

Stored size: 677 Bytes

Contents

# This is just syntactic sugar for a collection, although it will generally
# be a good bit faster.

Puppet::Parser::Functions::newfunction(:realize, :doc => "Make a virtual object real.  This is useful
    when you want to know the name of the virtual object and don't want to
    bother with a full collection.  It is slightly faster than a collection,
    and, of course, is a bit shorter.  You must pass the object using a
    reference; e.g.: `realize User[luke]`." ) do |vals|
    coll = Puppet::Parser::Collector.new(self, :nomatter, nil, nil, :virtual)
    vals = [vals] unless vals.is_a?(Array)
    coll.resources = vals.flatten

    compiler.add_collection(coll)
end

Version data entries

73 entries across 73 versions & 4 rubygems

Version Path
puppet-parse-0.1.4 lib/vendor/puppet/parser/functions/realize.rb
puppet-parse-0.1.3 lib/vendor/puppet/parser/functions/realize.rb
puppet-parse-0.1.2 lib/vendor/puppet/parser/functions/realize.rb
puppet-parse-0.1.1 lib/vendor/puppet/parser/functions/realize.rb
puppet-2.7.26 lib/puppet/parser/functions/realize.rb
puppet-2.7.25 lib/puppet/parser/functions/realize.rb
puppet-2.7.24 lib/puppet/parser/functions/realize.rb
puppet-2.7.23 lib/puppet/parser/functions/realize.rb
puppet-2.7.22 lib/puppet/parser/functions/realize.rb
puppet-parse-0.1.0 lib/vendor/puppet/parser/functions/realize.rb
puppet-parse-0.0.6 lib/vendor/puppet/parser/functions/realize.rb
puppet-2.7.21 lib/puppet/parser/functions/realize.rb
puppet-2.6.18 lib/puppet/parser/functions/realize.rb
puppet-parse-0.0.5 lib/vendor/puppet/parser/functions/realize.rb
puppet-parse-0.0.4 lib/vendor/puppet/parser/functions/realize.rb
puppet-3.0.2 lib/puppet/parser/functions/realize.rb
puppet-3.0.2.rc3 lib/puppet/parser/functions/realize.rb
puppet-3.0.2.rc2 lib/puppet/parser/functions/realize.rb
puppet-3.0.2.rc1 lib/puppet/parser/functions/realize.rb
puppet-parse-0.0.2 lib/vendor/puppet/parser/functions/realize.rb