Class: SuperDiff::Differs::Hash

Inherits:
Base
  • Object
show all
Defined in:
lib/super_diff/differs/hash.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

call, #initialize

Constructor Details

This class inherits a constructor from SuperDiff::Differs::Base

Class Method Details

.applies_to?(value) ⇒ Boolean

Returns:

  • (Boolean)


4
5
6
# File 'lib/super_diff/differs/hash.rb', line 4

def self.applies_to?(value)
  value.is_a?(::Hash)
end

Instance Method Details

#callObject



8
9
10
# File 'lib/super_diff/differs/hash.rb', line 8

def call
  DiffFormatters::Hash.call(operations, indent_level: indent_level)
end