Sha256: 4e9b3e01a46e24dbad18a5b34b7a6bd535052a89d7b17607f37ebbf15ca842f6

Contents?: true

Size: 691 Bytes

Versions: 69

Compression:

Stored size: 691 Bytes

Contents

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

Puppet::Parser::Functions::newfunction(:realize, :arity => -2, :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

69 entries across 69 versions & 3 rubygems

Version Path
puppet-retrospec-0.12.2 vendor/gems/puppet-3.7.3/lib/puppet/parser/functions/realize.rb
puppet-retrospec-0.12.1 vendor/gems/puppet-3.7.3/lib/puppet/parser/functions/realize.rb
puppet-retrospec-0.12.0 vendor/gems/puppet-3.7.3/lib/puppet/parser/functions/realize.rb
puppet-retrospec-0.11.0 vendor/gems/puppet-3.7.3/lib/puppet/parser/functions/realize.rb
puppet-retrospec-0.10.0 vendor/gems/puppet-3.7.3/lib/puppet/parser/functions/realize.rb
puppet-retrospec-0.9.1 vendor/gems/puppet-3.7.3/lib/puppet/parser/functions/realize.rb
puppet-retrospec-0.9.0 vendor/gems/puppet-3.7.3/lib/puppet/parser/functions/realize.rb
puppet-retrospec-0.8.1 vendor/gems/puppet-3.7.3/lib/puppet/parser/functions/realize.rb
puppet-retrospec-0.8.0 vendor/gems/puppet-3.7.3/lib/puppet/parser/functions/realize.rb
puppet-retrospec-0.7.3 vendor/gems/puppet-3.7.3/lib/puppet/parser/functions/realize.rb
puppet-retrospec-0.7.2 vendor/gems/puppet-3.7.3/lib/puppet/parser/functions/realize.rb
puppet-3.7.3 lib/puppet/parser/functions/realize.rb
puppet-3.7.3-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.7.3-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.7.2 lib/puppet/parser/functions/realize.rb
puppet-3.7.2-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.7.2-x64-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.7.1 lib/puppet/parser/functions/realize.rb
puppet-3.7.1-x86-mingw32 lib/puppet/parser/functions/realize.rb
puppet-3.7.1-x64-mingw32 lib/puppet/parser/functions/realize.rb