Sha256: 962e14ee03b31fc181e3ea8a4eb934a4fba57be05ea425d58c7b75b1f4726070
Contents?: true
Size: 620 Bytes
Versions: 28
Compression:
Stored size: 620 Bytes
Contents
# frozen_string_literal: true # 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). # class Puppet::Pops::Loader::SimpleEnvironmentLoader < Puppet::Pops::Loader::BaseLoader attr_accessor :private_loader # Never finds anything, everything "loaded" is set externally def find(typed_name) nil end def to_s "(SimpleEnvironmentLoader '#{loader_name}')" end end
Version data entries
28 entries across 28 versions & 1 rubygems