Sha256: 69506efd6f9d39bd4f0f60786eed08dd19ebfa5d1ef7f635d7efe14c16959659

Contents?: true

Size: 365 Bytes

Versions: 1

Compression:

Stored size: 365 Bytes

Contents

module Blather
class Stanza
class PubSub

  class Event < Message
    register :pubsub_event, nil, 'http://jabber.org/protocol/pubsub#event'

    def items
    end

    class Item
      attribute_accessor :id, :node, :to_sym => false

      alias_method :payload, :content
      alias_method :payload=, :content=
    end
  end

end #PubSub
end #Stanza
end #Blather

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
blather-0.2.2 lib/blather/stanza/pubsub/event.rb