Sha256: f40da76b2548e9e0c72612d569acecda0ce990927a2af506c7c0b5c963c8aba2
Contents?: true
Size: 616 Bytes
Versions: 247
Compression:
Stored size: 616 Bytes
Contents
require 'puppet/file_serving/mount' # This is the modules-specific mount: it knows how to search through # modules for files. Yay. class Puppet::FileServing::Mount::Modules < Puppet::FileServing::Mount # Return an instance of the appropriate class. def find(path, request) raise _("No module specified") if path.to_s.empty? module_name, relative_path = path.split("/", 2) return nil unless mod = request.environment.module(module_name) mod.file(relative_path) end def search(path, request) if result = find(path, request) [result] end end def valid? true end end
Version data entries
247 entries across 247 versions & 2 rubygems