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