Module: Puppet::Plugins::Configuration Private

Defined in:
lib/puppet/plugins/configuration.rb

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Class Method Summary collapse

Class Method Details

.load_pluginsObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/puppet/plugins/configuration.rb', line 16

def self.load_plugins
  # Register extensions
  # -------------------
  {
    SyntaxCheckers::SYNTAX_CHECKERS_KEY => {
      'json' => Puppet::SyntaxCheckers::Json.new,
      'base64' => Puppet::SyntaxCheckers::Base64.new,
      'pp' => Puppet::SyntaxCheckers::PP.new,
      'epp' => Puppet::SyntaxCheckers::EPP.new
    }
  }
end