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
- .load_plugins ⇒ Object private
Class Method Details
.load_plugins ⇒ Object
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.
18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/puppet/plugins/configuration.rb', line 18 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 |