adhearsion/punchblock

View on GitHub
lib/punchblock/core_ext/blather/stanza/presence.rb

Summary

Maintainability
A
0 mins
Test Coverage
# encoding: utf-8

module Blather
  class Stanza
    class Presence
      alias :event :rayo_node

      def rayo_event?
        event.is_a? Punchblock::Event
      end
    end
  end
end