Module: Puppet::InfoService

Defined in:
lib/puppet/info_service.rb

Defined Under Namespace

Classes: ClassInformationService, PlanInformationService, TaskInformationService

Class Method Summary collapse

Class Method Details

.classes_per_environment(env_file_hash) ⇒ Object



8
9
10
# File 'lib/puppet/info_service.rb', line 8

def self.classes_per_environment(env_file_hash)
  Puppet::InfoService::ClassInformationService.new.classes_per_environment(env_file_hash)
end

.plan_data(environment_name, module_name, plan_name) ⇒ Object



24
25
26
# File 'lib/puppet/info_service.rb', line 24

def self.plan_data(environment_name, module_name, plan_name)
  Puppet::InfoService::PlanInformationService.plan_data(environment_name, module_name, plan_name)
end

.plans_per_environment(environment_name) ⇒ Object



20
21
22
# File 'lib/puppet/info_service.rb', line 20

def self.plans_per_environment(environment_name)
  Puppet::InfoService::PlanInformationService.plans_per_environment(environment_name)
end

.task_data(environment_name, module_name, task_name) ⇒ Object



16
17
18
# File 'lib/puppet/info_service.rb', line 16

def self.task_data(environment_name, module_name, task_name)
  Puppet::InfoService::TaskInformationService.task_data(environment_name, module_name, task_name)
end

.tasks_per_environment(environment_name) ⇒ Object



12
13
14
# File 'lib/puppet/info_service.rb', line 12

def self.tasks_per_environment(environment_name)
  Puppet::InfoService::TaskInformationService.tasks_per_environment(environment_name)
end