class Puppet::Pops::Loader::SimpleEnvironmentLoader

SimpleEnvironmentLoader

This loader does not load anything and it is populated by the bootstrapping logic that loads the site.pp or equivalent for an environment. It does not restrict the names of what it may contain, and what is loaded here overrides any child loaders (modules).

Attributes

private_loader[RW]

Public Instance Methods

find(typed_name) click to toggle source

Never finds anything, everything “loaded” is set externally

   # File lib/puppet/pops/loader/simple_environment_loader.rb
12 def find(typed_name)
13   nil
14 end
to_s() click to toggle source
   # File lib/puppet/pops/loader/simple_environment_loader.rb
16 def to_s()
17   "(SimpleEnvironmentLoader '#{loader_name}')"
18 end