Sha256: e07d27e7cb4a99d22b2871dbd5198381fa52037ecb78d580fbf917236df90d11
Contents?: true
Size: 494 Bytes
Versions: 1
Compression:
Stored size: 494 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/x' module Jabber module MUC class IqQueryMUCAdmin < IqQuery name_xmlns 'query', 'http://jabber.org/protocol/muc#admin' include XParent def items r = [] each_element('item') { |item| r << item if item.kind_of? IqQueryMUCAdminItem } r end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
xmpp4r-0.5.6 | lib/xmpp4r/muc/iq/mucadmin.rb |