Sha256: 1613ba2abb4cf74982b612fd3e17511febd04b321b90056674786e655e1eee57
Contents?: true
Size: 612 Bytes
Versions: 235
Compression:
Stored size: 612 Bytes
Contents
module Puppet::InfoService require 'puppet/info_service/class_information_service' require 'puppet/info_service/task_information_service' def self.classes_per_environment(env_file_hash) Puppet::InfoService::ClassInformationService.new.classes_per_environment(env_file_hash) end def self.tasks_per_environment(environment_name) Puppet::InfoService::TaskInformationService.tasks_per_environment(environment_name) end def self.task_data(environment_name, module_name, task_name) Puppet::InfoService::TaskInformationService.task_data(environment_name, module_name, task_name) end end
Version data entries
235 entries across 235 versions & 2 rubygems