Sha256: a4f7db88b69bbc95201ffa4285025f0efaa5988349e36806327b684603f90f8e
Contents?: true
Size: 985 Bytes
Versions: 148
Compression:
Stored size: 985 Bytes
Contents
module Puppet::InfoService require 'puppet/info_service/class_information_service' require 'puppet/info_service/task_information_service' require 'puppet/info_service/plan_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 def self.plans_per_environment(environment_name) Puppet::InfoService::PlanInformationService.plans_per_environment(environment_name) end def self.plan_data(environment_name, module_name, plan_name) Puppet::InfoService::PlanInformationService.plan_data(environment_name, module_name, plan_name) end end
Version data entries
148 entries across 148 versions & 1 rubygems