lib/punchblock/event/active_speaker.rb in punchblock-0.11.0 vs lib/punchblock/event/active_speaker.rb in punchblock-0.12.0

- old
+ new

@@ -1,19 +1,19 @@ # encoding: utf-8 module Punchblock class Event module ActiveSpeaker - def other_call_id + def call_id read_attr :'call-id' end - def other_call_id=(other) + def call_id=(other) write_attr :'call-id', other end def inspect_attributes # :nodoc: - [:other_call_id] + super + [:call_id] + super end end end end