class ChefCLI::Policyfile::AttributeMergeChecker::AttributeHashInfo

An AttributeHashInfo holds a set of attributes along with where they came from

Attributes

hash[R]
source_name[R]

Public Class Methods

new(source_name, hash) click to toggle source
# File lib/chef-cli/policyfile/attribute_merge_checker.rb, line 53
def initialize(source_name, hash)
  @source_name = source_name
  @hash = hash
end