Module: SuperDiff::ActiveSupport::ObjectInspection::Inspectors

Defined in:
lib/super_diff/active_support/object_inspection/inspectors.rb,
lib/super_diff/active_support/object_inspection/inspectors/hash_with_indifferent_access.rb

Constant Summary collapse

HashWithIndifferentAccess =
SuperDiff::ObjectInspection::InspectionTree.new do
  add_text "#<HashWithIndifferentAccess {"

  nested do |hash|
    insert_hash_inspection_of(hash)
  end

  add_break " "
  add_text "}>"
end