module Puppet::Plugins::Configuration

Public Class Methods

load_plugins() click to toggle source
   # File lib/puppet/plugins/configuration.rb
17 def self.load_plugins
18   # Register extensions
19   # -------------------
20   {
21     SyntaxCheckers::SYNTAX_CHECKERS_KEY => {
22       'json' => Puppet::SyntaxCheckers::Json.new,
23       'base64' => Puppet::SyntaxCheckers::Base64.new,
24       'pp' => Puppet::SyntaxCheckers::PP.new,
25       'epp' => Puppet::SyntaxCheckers::EPP.new
26     }
27   }
28 end