Sha256: 3d182095f6fee305b7df504136f3e823c67199b0bffe5d3bfb01dec63b2c89ac
Contents?: true
Size: 270 Bytes
Versions: 20
Compression:
Stored size: 270 Bytes
Contents
# frozen_string_literal: true require_relative '../../../puppet/indirector/none' class Puppet::DataBinding::None < Puppet::Indirector::None desc "A Dummy terminus that always throws :no_such_key for data lookups." def find(request) throw :no_such_key end end
Version data entries
20 entries across 20 versions & 1 rubygems