Sha256: e70b747d43192333d5d321d6d34c3c47b03e876d353bb9ee246f4df0615d6c38

Contents?: true

Size: 479 Bytes

Versions: 1

Compression:

Stored size: 479 Bytes

Contents

# =XMPP4R - XMPP Library for Ruby
# License:: Ruby's license (see the LICENSE file) or GNU GPL, at your option.
# Website::http://xmpp4r.github.io

require 'xmpp4r/iq'

module Jabber
  module PubSub
    NS_PUBSUB = 'http://jabber.org/protocol/pubsub'
    class IqPubSub < XMPPElement
      name_xmlns 'pubsub', NS_PUBSUB
      force_xmlns true
    end
    class IqPubSubOwner < XMPPElement
      name_xmlns 'pubsub', NS_PUBSUB + '#owner'
      force_xmlns true
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
xmpp4r-0.5.6 lib/xmpp4r/pubsub/iq/pubsub.rb