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
7
8
9
|
# File 'lib/puppet/info_service.rb', line 7
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
23
24
25
|
# File 'lib/puppet/info_service.rb', line 23
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
19
20
21
|
# File 'lib/puppet/info_service.rb', line 19
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
15
16
17
|
# File 'lib/puppet/info_service.rb', line 15
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
11
12
13
|
# File 'lib/puppet/info_service.rb', line 11
def self.tasks_per_environment(environment_name)
Puppet::InfoService::TaskInformationService.tasks_per_environment(environment_name)
end
|