Method: ExifData#==

Defined in:
lib/exif_data.rb

#==(other) ⇒ Object

We need this extra rule to avoid ActiveSupport json encoder thinking Hash is the same object as this. This is a temporary fix until ActiveSupport use object_id for :seen.



23
24
25
# File 'lib/exif_data.rb', line 23

def ==(other)
  other.class == self.class && super
end