Sha256: 28eebe55778b5d1f39ce960d4efbb22b996c46b59ef9dccecef4ce40e0289978

Contents?: true

Size: 486 Bytes

Versions: 20

Compression:

Stored size: 486 Bytes

Contents

# frozen_string_literal: true
require_relative '../puppet/indirector'

# A class for managing data lookups
class Puppet::DataBinding
  # Set up indirection, so that data can be looked for in the compiler
  extend Puppet::Indirector

  indirects(:data_binding, :terminus_setting => :data_binding_terminus,
    :doc => "Where to find external data bindings.")

  class LookupError < Puppet::PreformattedError; end

  class RecursiveLookupError < Puppet::DataBinding::LookupError; end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
puppet-8.3.0 lib/puppet/data_binding.rb
puppet-8.3.0-x86-mingw32 lib/puppet/data_binding.rb
puppet-8.3.0-x64-mingw32 lib/puppet/data_binding.rb
puppet-8.3.0-universal-darwin lib/puppet/data_binding.rb
puppet-8.3.1 lib/puppet/data_binding.rb
puppet-8.3.1-x86-mingw32 lib/puppet/data_binding.rb
puppet-8.3.1-x64-mingw32 lib/puppet/data_binding.rb
puppet-8.3.1-universal-darwin lib/puppet/data_binding.rb
puppet-8.2.0 lib/puppet/data_binding.rb
puppet-8.2.0-x86-mingw32 lib/puppet/data_binding.rb
puppet-8.2.0-x64-mingw32 lib/puppet/data_binding.rb
puppet-8.2.0-universal-darwin lib/puppet/data_binding.rb
puppet-8.1.0 lib/puppet/data_binding.rb
puppet-8.1.0-x86-mingw32 lib/puppet/data_binding.rb
puppet-8.1.0-x64-mingw32 lib/puppet/data_binding.rb
puppet-8.1.0-universal-darwin lib/puppet/data_binding.rb
puppet-8.0.1 lib/puppet/data_binding.rb
puppet-8.0.1-x86-mingw32 lib/puppet/data_binding.rb
puppet-8.0.1-x64-mingw32 lib/puppet/data_binding.rb
puppet-8.0.1-universal-darwin lib/puppet/data_binding.rb