Method: Puppet::Plugins.look_in
- Defined in:
- lib/vendor/puppet/util/plugins.rb
.look_in(*paths) ⇒ Object
Add more places to look for plugins without adding duplicates or changing the
order of ones we've already found.
48 49 50 |
# File 'lib/vendor/puppet/util/plugins.rb', line 48 def self.look_in(*paths) Paths.replace Paths | paths.flatten.collect { |path| File.(path) } end |