module CsvRowModel module Model module Comparison extend ActiveSupport::Concern def eql?(other) other.try(:attributes) == attributes end def hash attributes.hash end end end end