Method: Akasha::Event#==

Defined in:
lib/akasha/event.rb

#==(other) ⇒ Object



16
17
18
19
20
21
22
# File 'lib/akasha/event.rb', line 16

def ==(other)
  self.class == other.class &&
    id == other.id &&
    name == other.name &&
    data == other.data &&
     == other.
end