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

Version Path
puppet-6.0.7 lib/puppet/info_service.rb
puppet-6.0.7-x86-mingw32 lib/puppet/info_service.rb
puppet-6.0.7-x64-mingw32 lib/puppet/info_service.rb
puppet-6.0.7-universal-darwin lib/puppet/info_service.rb
puppet-5.5.12 lib/puppet/info_service.rb
puppet-5.5.12-x86-mingw32 lib/puppet/info_service.rb
puppet-5.5.12-x64-mingw32 lib/puppet/info_service.rb
puppet-5.5.12-universal-darwin lib/puppet/info_service.rb
puppet-6.3.0 lib/puppet/info_service.rb
puppet-6.3.0-x86-mingw32 lib/puppet/info_service.rb
puppet-6.3.0-x64-mingw32 lib/puppet/info_service.rb
puppet-6.3.0-universal-darwin lib/puppet/info_service.rb
puppet-6.2.0 lib/puppet/info_service.rb
puppet-6.2.0-x86-mingw32 lib/puppet/info_service.rb
puppet-6.2.0-x64-mingw32 lib/puppet/info_service.rb
puppet-6.2.0-universal-darwin lib/puppet/info_service.rb
puppet-6.0.5 lib/puppet/info_service.rb
puppet-6.0.5-x86-mingw32 lib/puppet/info_service.rb
puppet-6.0.5-x64-mingw32 lib/puppet/info_service.rb
puppet-6.0.5-universal-darwin lib/puppet/info_service.rb