Sha256: a194d353cae6785364d5b10c8319886748789678b0b874427d9b2c8c37cac3f6

Contents?: true

Size: 288 Bytes

Versions: 45

Compression:

Stored size: 288 Bytes

Contents

module FbGraph
  module Comparison
    def ==(other)
      instance_variables.all? do |key|
        if key.to_s == '@raw_attributes'
          :ignore_difference!
        else
          instance_variable_get(key) == other.instance_variable_get(key)
        end
      end
    end
  end
end

Version data entries

45 entries across 45 versions & 1 rubygems

Version Path
fb_graph-2.4.16 lib/fb_graph/comparison.rb
fb_graph-2.4.15 lib/fb_graph/comparison.rb
fb_graph-2.4.14 lib/fb_graph/comparison.rb
fb_graph-2.4.13 lib/fb_graph/comparison.rb
fb_graph-2.4.12 lib/fb_graph/comparison.rb