Sha256: b7f5528ca867070f4fde0a2cc803140d08971f2daa6cf61ef80815f4adaafff3
Contents?: true
Size: 540 Bytes
Versions: 16
Compression:
Stored size: 540 Bytes
Contents
# Created by Luke Kanies on 2007-07-04. # Copyright (c) 2007. All rights reserved. module Puppet::Util::LogPaths # return the full path to us, for logging and rollback # some classes (e.g., FileTypeRecords) will have to override this def path @path ||= pathbuilder "/" + @path.join("/") end def source_descriptors descriptors = {} descriptors[:tags] = tags [:path, :file, :line].each do |param| next unless value = send(param) descriptors[param] = value end descriptors end end
Version data entries
16 entries across 16 versions & 1 rubygems