Class: Tap::Support::AuditMerge

Inherits:
Array
  • Object
show all
Defined in:
lib/tap/support/audit.rb

Overview

Marks the merge of multiple Audit trails

Instance Method Summary collapse

Instance Method Details

#==(another) ⇒ Object

True if another is an AuditMerge and passes Array#==



8
9
10
# File 'lib/tap/support/audit.rb', line 8

def ==(another)
  another.kind_of?(AuditMerge) && super
end