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-5.5.16 lib/puppet/info_service.rb
puppet-5.5.16-x86-mingw32 lib/puppet/info_service.rb
puppet-5.5.16-x64-mingw32 lib/puppet/info_service.rb
puppet-5.5.16-universal-darwin lib/puppet/info_service.rb
puppet-6.6.0 lib/puppet/info_service.rb
puppet-6.6.0-x86-mingw32 lib/puppet/info_service.rb
puppet-6.6.0-x64-mingw32 lib/puppet/info_service.rb
puppet-6.6.0-universal-darwin lib/puppet/info_service.rb
puppet-6.5.0 lib/puppet/info_service.rb
puppet-6.5.0-x86-mingw32 lib/puppet/info_service.rb
puppet-6.5.0-x64-mingw32 lib/puppet/info_service.rb
puppet-6.5.0-universal-darwin lib/puppet/info_service.rb
puppet-6.4.2 lib/puppet/info_service.rb
puppet-6.4.2-x86-mingw32 lib/puppet/info_service.rb
puppet-6.4.2-x64-mingw32 lib/puppet/info_service.rb
puppet-6.4.2-universal-darwin lib/puppet/info_service.rb
puppet-6.0.9 lib/puppet/info_service.rb
puppet-6.0.9-x86-mingw32 lib/puppet/info_service.rb
puppet-6.0.9-x64-mingw32 lib/puppet/info_service.rb
puppet-6.0.9-universal-darwin lib/puppet/info_service.rb