ln-xmpp4r 0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +91 -0
- data/COPYING +340 -0
- data/LICENSE +59 -0
- data/README.rdoc +113 -0
- data/README_ruby19.txt +43 -0
- data/Rakefile +252 -0
- data/data/doc/xmpp4r/examples/advanced/adventure/README +56 -0
- data/data/doc/xmpp4r/examples/advanced/adventure/adventure.rb +23 -0
- data/data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb +136 -0
- data/data/doc/xmpp4r/examples/advanced/adventure/cube.xml +15 -0
- data/data/doc/xmpp4r/examples/advanced/adventure/tower.xml +69 -0
- data/data/doc/xmpp4r/examples/advanced/adventure/world.rb +424 -0
- data/data/doc/xmpp4r/examples/advanced/fileserve.conf +11 -0
- data/data/doc/xmpp4r/examples/advanced/fileserve.rb +346 -0
- data/data/doc/xmpp4r/examples/advanced/getonline.rb +56 -0
- data/data/doc/xmpp4r/examples/advanced/gtkmucclient.rb +315 -0
- data/data/doc/xmpp4r/examples/advanced/migrate.rb +88 -0
- data/data/doc/xmpp4r/examples/advanced/minimuc.rb +266 -0
- data/data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl +235 -0
- data/data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb +147 -0
- data/data/doc/xmpp4r/examples/advanced/recvfile.rb +84 -0
- data/data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb +129 -0
- data/data/doc/xmpp4r/examples/advanced/sendfile.conf +10 -0
- data/data/doc/xmpp4r/examples/advanced/sendfile.rb +72 -0
- data/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb +51 -0
- data/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb +43 -0
- data/data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb +10 -0
- data/data/doc/xmpp4r/examples/advanced/versionpoll.rb +109 -0
- data/data/doc/xmpp4r/examples/advanced/xmpping.rb +146 -0
- data/data/doc/xmpp4r/examples/advanced/xmppingrc.sample +14 -0
- data/data/doc/xmpp4r/examples/basic/change_password.rb +41 -0
- data/data/doc/xmpp4r/examples/basic/client.rb +70 -0
- data/data/doc/xmpp4r/examples/basic/component.rb +11 -0
- data/data/doc/xmpp4r/examples/basic/echo.rb +37 -0
- data/data/doc/xmpp4r/examples/basic/jabbersend.rb +41 -0
- data/data/doc/xmpp4r/examples/basic/mass_sender.rb +68 -0
- data/data/doc/xmpp4r/examples/basic/muc_owner_config.rb +12 -0
- data/data/doc/xmpp4r/examples/basic/mucinfo.rb +41 -0
- data/data/doc/xmpp4r/examples/basic/mucsimplebot.rb +82 -0
- data/data/doc/xmpp4r/examples/basic/register.rb +42 -0
- data/data/doc/xmpp4r/examples/basic/remove_registration.rb +18 -0
- data/data/doc/xmpp4r/examples/basic/roster.rb +44 -0
- data/data/doc/xmpp4r/examples/basic/rosterprint.rb +50 -0
- data/data/doc/xmpp4r/examples/basic/rosterrename.rb +34 -0
- data/data/doc/xmpp4r/examples/basic/rosterwatch.rb +171 -0
- data/data/doc/xmpp4r/examples/basic/send_vcard.rb +67 -0
- data/data/doc/xmpp4r/examples/basic/tune_client.rb +56 -0
- data/data/doc/xmpp4r/examples/basic/tune_server.rb +58 -0
- data/data/doc/xmpp4r/examples/basic/versionbot.rb +75 -0
- data/lib/xmpp4r.rb +116 -0
- data/lib/xmpp4r/base64.rb +32 -0
- data/lib/xmpp4r/bytestreams.rb +15 -0
- data/lib/xmpp4r/bytestreams/helper/filetransfer.rb +319 -0
- data/lib/xmpp4r/bytestreams/helper/ibb/base.rb +257 -0
- data/lib/xmpp4r/bytestreams/helper/ibb/initiator.rb +31 -0
- data/lib/xmpp4r/bytestreams/helper/ibb/target.rb +54 -0
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb +152 -0
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb +86 -0
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb +198 -0
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb +65 -0
- data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb +79 -0
- data/lib/xmpp4r/bytestreams/iq/bytestreams.rb +170 -0
- data/lib/xmpp4r/bytestreams/iq/si.rb +206 -0
- data/lib/xmpp4r/callbacks.rb +133 -0
- data/lib/xmpp4r/caps.rb +1 -0
- data/lib/xmpp4r/caps/c.rb +67 -0
- data/lib/xmpp4r/caps/helper/generator.rb +160 -0
- data/lib/xmpp4r/caps/helper/helper.rb +84 -0
- data/lib/xmpp4r/client.rb +344 -0
- data/lib/xmpp4r/command/helper/responder.rb +53 -0
- data/lib/xmpp4r/command/iq/command.rb +154 -0
- data/lib/xmpp4r/component.rb +103 -0
- data/lib/xmpp4r/connection.rb +223 -0
- data/lib/xmpp4r/dataforms.rb +5 -0
- data/lib/xmpp4r/dataforms/x/data.rb +297 -0
- data/lib/xmpp4r/debuglog.rb +63 -0
- data/lib/xmpp4r/delay.rb +5 -0
- data/lib/xmpp4r/delay/x/delay.rb +99 -0
- data/lib/xmpp4r/discovery.rb +8 -0
- data/lib/xmpp4r/discovery/helper/helper.rb +58 -0
- data/lib/xmpp4r/discovery/helper/responder.rb +165 -0
- data/lib/xmpp4r/discovery/iq/discoinfo.rb +211 -0
- data/lib/xmpp4r/discovery/iq/discoitems.rb +147 -0
- data/lib/xmpp4r/errors.rb +284 -0
- data/lib/xmpp4r/feature_negotiation.rb +5 -0
- data/lib/xmpp4r/feature_negotiation/iq/feature.rb +28 -0
- data/lib/xmpp4r/framework/base.rb +55 -0
- data/lib/xmpp4r/framework/bot.rb +148 -0
- data/lib/xmpp4r/httpbinding.rb +5 -0
- data/lib/xmpp4r/httpbinding/client.rb +275 -0
- data/lib/xmpp4r/idgenerator.rb +37 -0
- data/lib/xmpp4r/iq.rb +221 -0
- data/lib/xmpp4r/jid.rb +167 -0
- data/lib/xmpp4r/last.rb +2 -0
- data/lib/xmpp4r/last/helper/helper.rb +37 -0
- data/lib/xmpp4r/last/iq/last.rb +67 -0
- data/lib/xmpp4r/location.rb +2 -0
- data/lib/xmpp4r/location/helper/helper.rb +56 -0
- data/lib/xmpp4r/location/location.rb +179 -0
- data/lib/xmpp4r/message.rb +180 -0
- data/lib/xmpp4r/muc.rb +14 -0
- data/lib/xmpp4r/muc/helper/mucbrowser.rb +92 -0
- data/lib/xmpp4r/muc/helper/mucclient.rb +462 -0
- data/lib/xmpp4r/muc/helper/simplemucclient.rb +332 -0
- data/lib/xmpp4r/muc/iq/mucadmin.rb +23 -0
- data/lib/xmpp4r/muc/iq/mucadminitem.rb +20 -0
- data/lib/xmpp4r/muc/iq/mucowner.rb +15 -0
- data/lib/xmpp4r/muc/item.rb +143 -0
- data/lib/xmpp4r/muc/x/muc.rb +70 -0
- data/lib/xmpp4r/muc/x/mucuserinvite.rb +60 -0
- data/lib/xmpp4r/muc/x/mucuseritem.rb +36 -0
- data/lib/xmpp4r/presence.rb +232 -0
- data/lib/xmpp4r/pubsub.rb +8 -0
- data/lib/xmpp4r/pubsub/children/configuration.rb +86 -0
- data/lib/xmpp4r/pubsub/children/event.rb +49 -0
- data/lib/xmpp4r/pubsub/children/item.rb +35 -0
- data/lib/xmpp4r/pubsub/children/items.rb +53 -0
- data/lib/xmpp4r/pubsub/children/node_config.rb +48 -0
- data/lib/xmpp4r/pubsub/children/publish.rb +38 -0
- data/lib/xmpp4r/pubsub/children/retract.rb +41 -0
- data/lib/xmpp4r/pubsub/children/subscription.rb +62 -0
- data/lib/xmpp4r/pubsub/children/subscription_config.rb +67 -0
- data/lib/xmpp4r/pubsub/children/unsubscribe.rb +48 -0
- data/lib/xmpp4r/pubsub/helper/nodebrowser.rb +129 -0
- data/lib/xmpp4r/pubsub/helper/nodehelper.rb +156 -0
- data/lib/xmpp4r/pubsub/helper/oauth_service_helper.rb +90 -0
- data/lib/xmpp4r/pubsub/helper/servicehelper.rb +456 -0
- data/lib/xmpp4r/pubsub/iq/pubsub.rb +19 -0
- data/lib/xmpp4r/query.rb +15 -0
- data/lib/xmpp4r/reliable.rb +168 -0
- data/lib/xmpp4r/rexmladdons.rb +157 -0
- data/lib/xmpp4r/roster.rb +7 -0
- data/lib/xmpp4r/roster/helper/roster.rb +522 -0
- data/lib/xmpp4r/roster/iq/roster.rb +215 -0
- data/lib/xmpp4r/roster/x/roster.rb +138 -0
- data/lib/xmpp4r/rpc.rb +2 -0
- data/lib/xmpp4r/rpc/helper/client.rb +123 -0
- data/lib/xmpp4r/rpc/helper/server.rb +74 -0
- data/lib/xmpp4r/rpc/helper/xmlrpcaddons.rb +67 -0
- data/lib/xmpp4r/rpc/iq/rpc.rb +23 -0
- data/lib/xmpp4r/sasl.rb +248 -0
- data/lib/xmpp4r/semaphore.rb +38 -0
- data/lib/xmpp4r/stream.rb +599 -0
- data/lib/xmpp4r/streamparser.rb +85 -0
- data/lib/xmpp4r/test/listener_mocker.rb +118 -0
- data/lib/xmpp4r/tune.rb +2 -0
- data/lib/xmpp4r/tune/helper/helper.rb +58 -0
- data/lib/xmpp4r/tune/tune.rb +113 -0
- data/lib/xmpp4r/vcard.rb +6 -0
- data/lib/xmpp4r/vcard/helper/vcard.rb +84 -0
- data/lib/xmpp4r/vcard/iq/vcard.rb +109 -0
- data/lib/xmpp4r/version.rb +7 -0
- data/lib/xmpp4r/version/helper/responder.rb +72 -0
- data/lib/xmpp4r/version/helper/simpleresponder.rb +44 -0
- data/lib/xmpp4r/version/iq/version.rb +105 -0
- data/lib/xmpp4r/x.rb +37 -0
- data/lib/xmpp4r/xhtml.rb +1 -0
- data/lib/xmpp4r/xhtml/html.rb +115 -0
- data/lib/xmpp4r/xmpp4r.rb +20 -0
- data/lib/xmpp4r/xmppelement.rb +168 -0
- data/lib/xmpp4r/xmppstanza.rb +162 -0
- data/setup.rb +1586 -0
- data/test/bytestreams/tc_ibb.rb +188 -0
- data/test/bytestreams/tc_socks5bytestreams.rb +114 -0
- data/test/caps/tc_helper.rb +158 -0
- data/test/dataforms/tc_data.rb +81 -0
- data/test/delay/tc_xdelay.rb +51 -0
- data/test/discovery/tc_responder.rb +91 -0
- data/test/last/tc_helper.rb +75 -0
- data/test/lib/assert_equal_xml.rb +14 -0
- data/test/lib/clienttester.rb +149 -0
- data/test/muc/tc_muc_mucclient.rb +834 -0
- data/test/muc/tc_muc_simplemucclient.rb +114 -0
- data/test/muc/tc_mucowner.rb +50 -0
- data/test/pubsub/tc_helper.rb +785 -0
- data/test/pubsub/tc_nodeconfig.rb +61 -0
- data/test/pubsub/tc_subscriptionconfig.rb +41 -0
- data/test/reliable/tc_disconnect_cleanup.rb +334 -0
- data/test/reliable/tc_disconnect_exception.rb +37 -0
- data/test/reliable/tc_listener_mocked_test.rb +68 -0
- data/test/reliable/tc_reliable_connection.rb +31 -0
- data/test/roster/tc_helper.rb +524 -0
- data/test/roster/tc_iqqueryroster.rb +173 -0
- data/test/roster/tc_xroster.rb +73 -0
- data/test/rpc/tc_helper.rb +96 -0
- data/test/tc_callbacks.rb +129 -0
- data/test/tc_class_names.rb +146 -0
- data/test/tc_client.rb +30 -0
- data/test/tc_errors.rb +146 -0
- data/test/tc_idgenerator.rb +30 -0
- data/test/tc_iq.rb +113 -0
- data/test/tc_iqquery.rb +31 -0
- data/test/tc_jid.rb +204 -0
- data/test/tc_message.rb +131 -0
- data/test/tc_presence.rb +150 -0
- data/test/tc_rexml.rb +139 -0
- data/test/tc_stream.rb +167 -0
- data/test/tc_streamComponent.rb +95 -0
- data/test/tc_streamError.rb +129 -0
- data/test/tc_streamSend.rb +59 -0
- data/test/tc_streamparser.rb +125 -0
- data/test/tc_xmppstanza.rb +135 -0
- data/test/ts_xmpp4r.rb +44 -0
- data/test/tune/tc_helper_recv.rb +82 -0
- data/test/tune/tc_helper_send.rb +74 -0
- data/test/tune/tc_tune.rb +79 -0
- data/test/vcard/tc_helper.rb +49 -0
- data/test/vcard/tc_iqvcard.rb +62 -0
- data/test/version/tc_helper.rb +60 -0
- data/test/version/tc_iqqueryversion.rb +97 -0
- data/test/xhtml/tc_html.rb +41 -0
- data/tools/gen_requires.bash +31 -0
- data/tools/xmpp4r-gemspec-test.rb +11 -0
- data/xmpp4r.gemspec +238 -0
- metadata +280 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
# Generate a full graph of the requires in the Ruby files of this library.
|
|
4
|
+
#
|
|
5
|
+
# Output : The graph is generated as a .png file in the same dir as this script.
|
|
6
|
+
#
|
|
7
|
+
# This script requires the following tools to be installed:
|
|
8
|
+
#
|
|
9
|
+
# * mktemp
|
|
10
|
+
# * dot (Try 'sudo port install graphviz' on OS X)
|
|
11
|
+
|
|
12
|
+
export TMPDIR='/tmp'
|
|
13
|
+
export TMPFILE=$(mktemp $TMPDIR/gen_requires.XXXXXX)
|
|
14
|
+
export OUTFILE='gen_requires.png'
|
|
15
|
+
export SELFDIR=`pwd`
|
|
16
|
+
export LIBDIR=$SELFDIR/../lib
|
|
17
|
+
|
|
18
|
+
#######################################
|
|
19
|
+
# Unlikely you need to edit below here
|
|
20
|
+
#######################################
|
|
21
|
+
|
|
22
|
+
cd $LIBDIR
|
|
23
|
+
|
|
24
|
+
echo "strict digraph requirestree { " > $TMPFILE
|
|
25
|
+
grep -r "^require " * | grep -v swp | sed "s/^\(.*\).rb:require '\(.*\)'/\1 -> \2;/" | sed 's/\//_/g' >> $TMPFILE
|
|
26
|
+
echo "}" >> $TMPFILE
|
|
27
|
+
|
|
28
|
+
cd $SELFDIR
|
|
29
|
+
dot -Tpng $TMPFILE -o $OUTFILE
|
|
30
|
+
rm -f $TMPFILE
|
|
31
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
# Since GitHub doesn't allow unsafe commands in a gemspec this script
|
|
4
|
+
# will simulate running in their environment.
|
|
5
|
+
|
|
6
|
+
require 'rubygems/specification'
|
|
7
|
+
data = File.read('../xmpp4r.gemspec')
|
|
8
|
+
spec = nil
|
|
9
|
+
Thread.new { spec = eval("$SAFE = 3\n#{data}") }.join
|
|
10
|
+
puts spec
|
|
11
|
+
|
data/xmpp4r.gemspec
ADDED
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
# WARNING : RAKE AUTO-GENERATED FILE. DO NOT MANUALLY EDIT!
|
|
2
|
+
# RUN : 'rake gem:update_gemspec'
|
|
3
|
+
|
|
4
|
+
Gem::Specification.new do |s|
|
|
5
|
+
s.authors = ["Lucas Nussbaum", "Stephan Maka", "Glenn Rempe"]
|
|
6
|
+
s.bindir = "bin"
|
|
7
|
+
s.description = "XMPP4R is an XMPP/Jabber library for Ruby."
|
|
8
|
+
s.email = "xmpp4r-devel@gna.org"
|
|
9
|
+
s.extra_rdoc_files = ["CHANGELOG", "COPYING", "LICENSE", "README.rdoc", "README_ruby19.txt"]
|
|
10
|
+
s.files = ["CHANGELOG",
|
|
11
|
+
"COPYING",
|
|
12
|
+
"LICENSE",
|
|
13
|
+
"README.rdoc",
|
|
14
|
+
"README_ruby19.txt",
|
|
15
|
+
"Rakefile",
|
|
16
|
+
"data/doc/xmpp4r/examples/advanced/adventure/README",
|
|
17
|
+
"data/doc/xmpp4r/examples/advanced/adventure/adventure.rb",
|
|
18
|
+
"data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb",
|
|
19
|
+
"data/doc/xmpp4r/examples/advanced/adventure/cube.xml",
|
|
20
|
+
"data/doc/xmpp4r/examples/advanced/adventure/tower.xml",
|
|
21
|
+
"data/doc/xmpp4r/examples/advanced/adventure/world.rb",
|
|
22
|
+
"data/doc/xmpp4r/examples/advanced/fileserve.conf",
|
|
23
|
+
"data/doc/xmpp4r/examples/advanced/fileserve.rb",
|
|
24
|
+
"data/doc/xmpp4r/examples/advanced/getonline.rb",
|
|
25
|
+
"data/doc/xmpp4r/examples/advanced/gtkmucclient.rb",
|
|
26
|
+
"data/doc/xmpp4r/examples/advanced/migrate.rb",
|
|
27
|
+
"data/doc/xmpp4r/examples/advanced/minimuc.rb",
|
|
28
|
+
"data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl",
|
|
29
|
+
"data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb",
|
|
30
|
+
"data/doc/xmpp4r/examples/advanced/recvfile.rb",
|
|
31
|
+
"data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb",
|
|
32
|
+
"data/doc/xmpp4r/examples/advanced/sendfile.conf",
|
|
33
|
+
"data/doc/xmpp4r/examples/advanced/sendfile.rb",
|
|
34
|
+
"data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb",
|
|
35
|
+
"data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb",
|
|
36
|
+
"data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb",
|
|
37
|
+
"data/doc/xmpp4r/examples/advanced/versionpoll.rb",
|
|
38
|
+
"data/doc/xmpp4r/examples/advanced/xmpping.rb",
|
|
39
|
+
"data/doc/xmpp4r/examples/advanced/xmppingrc.sample",
|
|
40
|
+
"data/doc/xmpp4r/examples/basic/change_password.rb",
|
|
41
|
+
"data/doc/xmpp4r/examples/basic/client.rb",
|
|
42
|
+
"data/doc/xmpp4r/examples/basic/component.rb",
|
|
43
|
+
"data/doc/xmpp4r/examples/basic/echo.rb",
|
|
44
|
+
"data/doc/xmpp4r/examples/basic/jabbersend.rb",
|
|
45
|
+
"data/doc/xmpp4r/examples/basic/mass_sender.rb",
|
|
46
|
+
"data/doc/xmpp4r/examples/basic/muc_owner_config.rb",
|
|
47
|
+
"data/doc/xmpp4r/examples/basic/mucinfo.rb",
|
|
48
|
+
"data/doc/xmpp4r/examples/basic/mucsimplebot.rb",
|
|
49
|
+
"data/doc/xmpp4r/examples/basic/register.rb",
|
|
50
|
+
"data/doc/xmpp4r/examples/basic/remove_registration.rb",
|
|
51
|
+
"data/doc/xmpp4r/examples/basic/roster.rb",
|
|
52
|
+
"data/doc/xmpp4r/examples/basic/rosterprint.rb",
|
|
53
|
+
"data/doc/xmpp4r/examples/basic/rosterrename.rb",
|
|
54
|
+
"data/doc/xmpp4r/examples/basic/rosterwatch.rb",
|
|
55
|
+
"data/doc/xmpp4r/examples/basic/send_vcard.rb",
|
|
56
|
+
"data/doc/xmpp4r/examples/basic/tune_client.rb",
|
|
57
|
+
"data/doc/xmpp4r/examples/basic/tune_server.rb",
|
|
58
|
+
"data/doc/xmpp4r/examples/basic/versionbot.rb",
|
|
59
|
+
"lib/xmpp4r.rb",
|
|
60
|
+
"lib/xmpp4r/base64.rb",
|
|
61
|
+
"lib/xmpp4r/bytestreams.rb",
|
|
62
|
+
"lib/xmpp4r/bytestreams/helper/filetransfer.rb",
|
|
63
|
+
"lib/xmpp4r/bytestreams/helper/ibb/base.rb",
|
|
64
|
+
"lib/xmpp4r/bytestreams/helper/ibb/initiator.rb",
|
|
65
|
+
"lib/xmpp4r/bytestreams/helper/ibb/target.rb",
|
|
66
|
+
"lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb",
|
|
67
|
+
"lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb",
|
|
68
|
+
"lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb",
|
|
69
|
+
"lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb",
|
|
70
|
+
"lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb",
|
|
71
|
+
"lib/xmpp4r/bytestreams/iq/bytestreams.rb",
|
|
72
|
+
"lib/xmpp4r/bytestreams/iq/si.rb",
|
|
73
|
+
"lib/xmpp4r/callbacks.rb",
|
|
74
|
+
"lib/xmpp4r/caps.rb",
|
|
75
|
+
"lib/xmpp4r/caps/c.rb",
|
|
76
|
+
"lib/xmpp4r/caps/helper/generator.rb",
|
|
77
|
+
"lib/xmpp4r/caps/helper/helper.rb",
|
|
78
|
+
"lib/xmpp4r/client.rb",
|
|
79
|
+
"lib/xmpp4r/command/helper/responder.rb",
|
|
80
|
+
"lib/xmpp4r/command/iq/command.rb",
|
|
81
|
+
"lib/xmpp4r/component.rb",
|
|
82
|
+
"lib/xmpp4r/connection.rb",
|
|
83
|
+
"lib/xmpp4r/dataforms.rb",
|
|
84
|
+
"lib/xmpp4r/dataforms/x/data.rb",
|
|
85
|
+
"lib/xmpp4r/debuglog.rb",
|
|
86
|
+
"lib/xmpp4r/delay.rb",
|
|
87
|
+
"lib/xmpp4r/delay/x/delay.rb",
|
|
88
|
+
"lib/xmpp4r/discovery.rb",
|
|
89
|
+
"lib/xmpp4r/discovery/helper/helper.rb",
|
|
90
|
+
"lib/xmpp4r/discovery/helper/responder.rb",
|
|
91
|
+
"lib/xmpp4r/discovery/iq/discoinfo.rb",
|
|
92
|
+
"lib/xmpp4r/discovery/iq/discoitems.rb",
|
|
93
|
+
"lib/xmpp4r/errors.rb",
|
|
94
|
+
"lib/xmpp4r/feature_negotiation.rb",
|
|
95
|
+
"lib/xmpp4r/feature_negotiation/iq/feature.rb",
|
|
96
|
+
"lib/xmpp4r/framework/base.rb",
|
|
97
|
+
"lib/xmpp4r/framework/bot.rb",
|
|
98
|
+
"lib/xmpp4r/httpbinding.rb",
|
|
99
|
+
"lib/xmpp4r/httpbinding/client.rb",
|
|
100
|
+
"lib/xmpp4r/idgenerator.rb",
|
|
101
|
+
"lib/xmpp4r/iq.rb",
|
|
102
|
+
"lib/xmpp4r/jid.rb",
|
|
103
|
+
"lib/xmpp4r/last.rb",
|
|
104
|
+
"lib/xmpp4r/last/helper/helper.rb",
|
|
105
|
+
"lib/xmpp4r/last/iq/last.rb",
|
|
106
|
+
"lib/xmpp4r/location.rb",
|
|
107
|
+
"lib/xmpp4r/location/helper/helper.rb",
|
|
108
|
+
"lib/xmpp4r/location/location.rb",
|
|
109
|
+
"lib/xmpp4r/message.rb",
|
|
110
|
+
"lib/xmpp4r/muc.rb",
|
|
111
|
+
"lib/xmpp4r/muc/helper/mucbrowser.rb",
|
|
112
|
+
"lib/xmpp4r/muc/helper/mucclient.rb",
|
|
113
|
+
"lib/xmpp4r/muc/helper/simplemucclient.rb",
|
|
114
|
+
"lib/xmpp4r/muc/iq/mucadmin.rb",
|
|
115
|
+
"lib/xmpp4r/muc/iq/mucadminitem.rb",
|
|
116
|
+
"lib/xmpp4r/muc/iq/mucowner.rb",
|
|
117
|
+
"lib/xmpp4r/muc/item.rb",
|
|
118
|
+
"lib/xmpp4r/muc/x/muc.rb",
|
|
119
|
+
"lib/xmpp4r/muc/x/mucuserinvite.rb",
|
|
120
|
+
"lib/xmpp4r/muc/x/mucuseritem.rb",
|
|
121
|
+
"lib/xmpp4r/presence.rb",
|
|
122
|
+
"lib/xmpp4r/pubsub.rb",
|
|
123
|
+
"lib/xmpp4r/pubsub/children/configuration.rb",
|
|
124
|
+
"lib/xmpp4r/pubsub/children/event.rb",
|
|
125
|
+
"lib/xmpp4r/pubsub/children/item.rb",
|
|
126
|
+
"lib/xmpp4r/pubsub/children/items.rb",
|
|
127
|
+
"lib/xmpp4r/pubsub/children/node_config.rb",
|
|
128
|
+
"lib/xmpp4r/pubsub/children/publish.rb",
|
|
129
|
+
"lib/xmpp4r/pubsub/children/retract.rb",
|
|
130
|
+
"lib/xmpp4r/pubsub/children/subscription.rb",
|
|
131
|
+
"lib/xmpp4r/pubsub/children/subscription_config.rb",
|
|
132
|
+
"lib/xmpp4r/pubsub/children/unsubscribe.rb",
|
|
133
|
+
"lib/xmpp4r/pubsub/helper/nodebrowser.rb",
|
|
134
|
+
"lib/xmpp4r/pubsub/helper/nodehelper.rb",
|
|
135
|
+
"lib/xmpp4r/pubsub/helper/oauth_service_helper.rb",
|
|
136
|
+
"lib/xmpp4r/pubsub/helper/servicehelper.rb",
|
|
137
|
+
"lib/xmpp4r/pubsub/iq/pubsub.rb",
|
|
138
|
+
"lib/xmpp4r/query.rb",
|
|
139
|
+
"lib/xmpp4r/reliable.rb",
|
|
140
|
+
"lib/xmpp4r/rexmladdons.rb",
|
|
141
|
+
"lib/xmpp4r/roster.rb",
|
|
142
|
+
"lib/xmpp4r/roster/helper/roster.rb",
|
|
143
|
+
"lib/xmpp4r/roster/iq/roster.rb",
|
|
144
|
+
"lib/xmpp4r/roster/x/roster.rb",
|
|
145
|
+
"lib/xmpp4r/rpc.rb",
|
|
146
|
+
"lib/xmpp4r/rpc/helper/client.rb",
|
|
147
|
+
"lib/xmpp4r/rpc/helper/server.rb",
|
|
148
|
+
"lib/xmpp4r/rpc/helper/xmlrpcaddons.rb",
|
|
149
|
+
"lib/xmpp4r/rpc/iq/rpc.rb",
|
|
150
|
+
"lib/xmpp4r/sasl.rb",
|
|
151
|
+
"lib/xmpp4r/semaphore.rb",
|
|
152
|
+
"lib/xmpp4r/stream.rb",
|
|
153
|
+
"lib/xmpp4r/streamparser.rb",
|
|
154
|
+
"lib/xmpp4r/test/listener_mocker.rb",
|
|
155
|
+
"lib/xmpp4r/tune.rb",
|
|
156
|
+
"lib/xmpp4r/tune/helper/helper.rb",
|
|
157
|
+
"lib/xmpp4r/tune/tune.rb",
|
|
158
|
+
"lib/xmpp4r/vcard.rb",
|
|
159
|
+
"lib/xmpp4r/vcard/helper/vcard.rb",
|
|
160
|
+
"lib/xmpp4r/vcard/iq/vcard.rb",
|
|
161
|
+
"lib/xmpp4r/version.rb",
|
|
162
|
+
"lib/xmpp4r/version/helper/responder.rb",
|
|
163
|
+
"lib/xmpp4r/version/helper/simpleresponder.rb",
|
|
164
|
+
"lib/xmpp4r/version/iq/version.rb",
|
|
165
|
+
"lib/xmpp4r/x.rb",
|
|
166
|
+
"lib/xmpp4r/xhtml.rb",
|
|
167
|
+
"lib/xmpp4r/xhtml/html.rb",
|
|
168
|
+
"lib/xmpp4r/xmpp4r.rb",
|
|
169
|
+
"lib/xmpp4r/xmppelement.rb",
|
|
170
|
+
"lib/xmpp4r/xmppstanza.rb",
|
|
171
|
+
"setup.rb",
|
|
172
|
+
"test/bytestreams/tc_ibb.rb",
|
|
173
|
+
"test/bytestreams/tc_socks5bytestreams.rb",
|
|
174
|
+
"test/caps/tc_helper.rb",
|
|
175
|
+
"test/dataforms/tc_data.rb",
|
|
176
|
+
"test/delay/tc_xdelay.rb",
|
|
177
|
+
"test/discovery/tc_responder.rb",
|
|
178
|
+
"test/last/tc_helper.rb",
|
|
179
|
+
"test/lib/assert_equal_xml.rb",
|
|
180
|
+
"test/lib/clienttester.rb",
|
|
181
|
+
"test/muc/tc_muc_mucclient.rb",
|
|
182
|
+
"test/muc/tc_muc_simplemucclient.rb",
|
|
183
|
+
"test/muc/tc_mucowner.rb",
|
|
184
|
+
"test/pubsub/tc_helper.rb",
|
|
185
|
+
"test/pubsub/tc_nodeconfig.rb",
|
|
186
|
+
"test/pubsub/tc_subscriptionconfig.rb",
|
|
187
|
+
"test/reliable/tc_disconnect_cleanup.rb",
|
|
188
|
+
"test/reliable/tc_disconnect_exception.rb",
|
|
189
|
+
"test/reliable/tc_listener_mocked_test.rb",
|
|
190
|
+
"test/reliable/tc_reliable_connection.rb",
|
|
191
|
+
"test/roster/tc_helper.rb",
|
|
192
|
+
"test/roster/tc_iqqueryroster.rb",
|
|
193
|
+
"test/roster/tc_xroster.rb",
|
|
194
|
+
"test/rpc/tc_helper.rb",
|
|
195
|
+
"test/tc_callbacks.rb",
|
|
196
|
+
"test/tc_class_names.rb",
|
|
197
|
+
"test/tc_client.rb",
|
|
198
|
+
"test/tc_errors.rb",
|
|
199
|
+
"test/tc_idgenerator.rb",
|
|
200
|
+
"test/tc_iq.rb",
|
|
201
|
+
"test/tc_iqquery.rb",
|
|
202
|
+
"test/tc_jid.rb",
|
|
203
|
+
"test/tc_message.rb",
|
|
204
|
+
"test/tc_presence.rb",
|
|
205
|
+
"test/tc_rexml.rb",
|
|
206
|
+
"test/tc_stream.rb",
|
|
207
|
+
"test/tc_streamComponent.rb",
|
|
208
|
+
"test/tc_streamError.rb",
|
|
209
|
+
"test/tc_streamSend.rb",
|
|
210
|
+
"test/tc_streamparser.rb",
|
|
211
|
+
"test/tc_xmppstanza.rb",
|
|
212
|
+
"test/ts_xmpp4r.rb",
|
|
213
|
+
"test/tune/tc_helper_recv.rb",
|
|
214
|
+
"test/tune/tc_helper_send.rb",
|
|
215
|
+
"test/tune/tc_tune.rb",
|
|
216
|
+
"test/vcard/tc_helper.rb",
|
|
217
|
+
"test/vcard/tc_iqvcard.rb",
|
|
218
|
+
"test/version/tc_helper.rb",
|
|
219
|
+
"test/version/tc_iqqueryversion.rb",
|
|
220
|
+
"test/xhtml/tc_html.rb",
|
|
221
|
+
"tools/gen_requires.bash",
|
|
222
|
+
"tools/xmpp4r-gemspec-test.rb",
|
|
223
|
+
"xmpp4r.gemspec"]
|
|
224
|
+
s.has_rdoc = true
|
|
225
|
+
s.homepage = "http://home.gna.org/xmpp4r/"
|
|
226
|
+
s.loaded = false
|
|
227
|
+
s.name = "xmpp4r"
|
|
228
|
+
s.platform = "ruby"
|
|
229
|
+
s.rdoc_options = ["--quiet", "--title", "XMPP4R is an XMPP/Jabber library for Ruby.", "--opname", "index.html", "--main", "lib/xmpp4r.rb", "--line-numbers", "--inline-source"]
|
|
230
|
+
s.require_paths = ["lib"]
|
|
231
|
+
s.required_ruby_version = ">= 1.8.4"
|
|
232
|
+
s.required_rubygems_version = ">= 0"
|
|
233
|
+
s.rubyforge_project = "xmpp4r"
|
|
234
|
+
s.rubygems_version = "1.3.4"
|
|
235
|
+
s.specification_version = 3
|
|
236
|
+
s.summary = "XMPP4R is an XMPP/Jabber library for Ruby."
|
|
237
|
+
s.version = "0.5"
|
|
238
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,280 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ln-xmpp4r
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: "0.5"
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Lucas Nussbaum
|
|
8
|
+
- Stephan Maka
|
|
9
|
+
- Glenn Rempe
|
|
10
|
+
autorequire:
|
|
11
|
+
bindir: bin
|
|
12
|
+
cert_chain: []
|
|
13
|
+
|
|
14
|
+
date: 2009-05-16 00:00:00 -07:00
|
|
15
|
+
default_executable:
|
|
16
|
+
dependencies: []
|
|
17
|
+
|
|
18
|
+
description: XMPP4R is an XMPP/Jabber library for Ruby.
|
|
19
|
+
email: xmpp4r-devel@gna.org
|
|
20
|
+
executables: []
|
|
21
|
+
|
|
22
|
+
extensions: []
|
|
23
|
+
|
|
24
|
+
extra_rdoc_files:
|
|
25
|
+
- CHANGELOG
|
|
26
|
+
- COPYING
|
|
27
|
+
- LICENSE
|
|
28
|
+
- README.rdoc
|
|
29
|
+
- README_ruby19.txt
|
|
30
|
+
files:
|
|
31
|
+
- CHANGELOG
|
|
32
|
+
- COPYING
|
|
33
|
+
- LICENSE
|
|
34
|
+
- README.rdoc
|
|
35
|
+
- README_ruby19.txt
|
|
36
|
+
- Rakefile
|
|
37
|
+
- data/doc/xmpp4r/examples/advanced/adventure/README
|
|
38
|
+
- data/doc/xmpp4r/examples/advanced/adventure/adventure.rb
|
|
39
|
+
- data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb
|
|
40
|
+
- data/doc/xmpp4r/examples/advanced/adventure/cube.xml
|
|
41
|
+
- data/doc/xmpp4r/examples/advanced/adventure/tower.xml
|
|
42
|
+
- data/doc/xmpp4r/examples/advanced/adventure/world.rb
|
|
43
|
+
- data/doc/xmpp4r/examples/advanced/fileserve.conf
|
|
44
|
+
- data/doc/xmpp4r/examples/advanced/fileserve.rb
|
|
45
|
+
- data/doc/xmpp4r/examples/advanced/getonline.rb
|
|
46
|
+
- data/doc/xmpp4r/examples/advanced/gtkmucclient.rb
|
|
47
|
+
- data/doc/xmpp4r/examples/advanced/migrate.rb
|
|
48
|
+
- data/doc/xmpp4r/examples/advanced/minimuc.rb
|
|
49
|
+
- data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl
|
|
50
|
+
- data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb
|
|
51
|
+
- data/doc/xmpp4r/examples/advanced/recvfile.rb
|
|
52
|
+
- data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb
|
|
53
|
+
- data/doc/xmpp4r/examples/advanced/sendfile.conf
|
|
54
|
+
- data/doc/xmpp4r/examples/advanced/sendfile.rb
|
|
55
|
+
- data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb
|
|
56
|
+
- data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb
|
|
57
|
+
- data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb
|
|
58
|
+
- data/doc/xmpp4r/examples/advanced/versionpoll.rb
|
|
59
|
+
- data/doc/xmpp4r/examples/advanced/xmpping.rb
|
|
60
|
+
- data/doc/xmpp4r/examples/advanced/xmppingrc.sample
|
|
61
|
+
- data/doc/xmpp4r/examples/basic/change_password.rb
|
|
62
|
+
- data/doc/xmpp4r/examples/basic/client.rb
|
|
63
|
+
- data/doc/xmpp4r/examples/basic/component.rb
|
|
64
|
+
- data/doc/xmpp4r/examples/basic/echo.rb
|
|
65
|
+
- data/doc/xmpp4r/examples/basic/jabbersend.rb
|
|
66
|
+
- data/doc/xmpp4r/examples/basic/mass_sender.rb
|
|
67
|
+
- data/doc/xmpp4r/examples/basic/muc_owner_config.rb
|
|
68
|
+
- data/doc/xmpp4r/examples/basic/mucinfo.rb
|
|
69
|
+
- data/doc/xmpp4r/examples/basic/mucsimplebot.rb
|
|
70
|
+
- data/doc/xmpp4r/examples/basic/register.rb
|
|
71
|
+
- data/doc/xmpp4r/examples/basic/remove_registration.rb
|
|
72
|
+
- data/doc/xmpp4r/examples/basic/roster.rb
|
|
73
|
+
- data/doc/xmpp4r/examples/basic/rosterprint.rb
|
|
74
|
+
- data/doc/xmpp4r/examples/basic/rosterrename.rb
|
|
75
|
+
- data/doc/xmpp4r/examples/basic/rosterwatch.rb
|
|
76
|
+
- data/doc/xmpp4r/examples/basic/send_vcard.rb
|
|
77
|
+
- data/doc/xmpp4r/examples/basic/tune_client.rb
|
|
78
|
+
- data/doc/xmpp4r/examples/basic/tune_server.rb
|
|
79
|
+
- data/doc/xmpp4r/examples/basic/versionbot.rb
|
|
80
|
+
- lib/xmpp4r.rb
|
|
81
|
+
- lib/xmpp4r/base64.rb
|
|
82
|
+
- lib/xmpp4r/bytestreams.rb
|
|
83
|
+
- lib/xmpp4r/bytestreams/helper/filetransfer.rb
|
|
84
|
+
- lib/xmpp4r/bytestreams/helper/ibb/base.rb
|
|
85
|
+
- lib/xmpp4r/bytestreams/helper/ibb/initiator.rb
|
|
86
|
+
- lib/xmpp4r/bytestreams/helper/ibb/target.rb
|
|
87
|
+
- lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb
|
|
88
|
+
- lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb
|
|
89
|
+
- lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb
|
|
90
|
+
- lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb
|
|
91
|
+
- lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb
|
|
92
|
+
- lib/xmpp4r/bytestreams/iq/bytestreams.rb
|
|
93
|
+
- lib/xmpp4r/bytestreams/iq/si.rb
|
|
94
|
+
- lib/xmpp4r/callbacks.rb
|
|
95
|
+
- lib/xmpp4r/caps.rb
|
|
96
|
+
- lib/xmpp4r/caps/c.rb
|
|
97
|
+
- lib/xmpp4r/caps/helper/generator.rb
|
|
98
|
+
- lib/xmpp4r/caps/helper/helper.rb
|
|
99
|
+
- lib/xmpp4r/client.rb
|
|
100
|
+
- lib/xmpp4r/command/helper/responder.rb
|
|
101
|
+
- lib/xmpp4r/command/iq/command.rb
|
|
102
|
+
- lib/xmpp4r/component.rb
|
|
103
|
+
- lib/xmpp4r/connection.rb
|
|
104
|
+
- lib/xmpp4r/dataforms.rb
|
|
105
|
+
- lib/xmpp4r/dataforms/x/data.rb
|
|
106
|
+
- lib/xmpp4r/debuglog.rb
|
|
107
|
+
- lib/xmpp4r/delay.rb
|
|
108
|
+
- lib/xmpp4r/delay/x/delay.rb
|
|
109
|
+
- lib/xmpp4r/discovery.rb
|
|
110
|
+
- lib/xmpp4r/discovery/helper/helper.rb
|
|
111
|
+
- lib/xmpp4r/discovery/helper/responder.rb
|
|
112
|
+
- lib/xmpp4r/discovery/iq/discoinfo.rb
|
|
113
|
+
- lib/xmpp4r/discovery/iq/discoitems.rb
|
|
114
|
+
- lib/xmpp4r/errors.rb
|
|
115
|
+
- lib/xmpp4r/feature_negotiation.rb
|
|
116
|
+
- lib/xmpp4r/feature_negotiation/iq/feature.rb
|
|
117
|
+
- lib/xmpp4r/framework/base.rb
|
|
118
|
+
- lib/xmpp4r/framework/bot.rb
|
|
119
|
+
- lib/xmpp4r/httpbinding.rb
|
|
120
|
+
- lib/xmpp4r/httpbinding/client.rb
|
|
121
|
+
- lib/xmpp4r/idgenerator.rb
|
|
122
|
+
- lib/xmpp4r/iq.rb
|
|
123
|
+
- lib/xmpp4r/jid.rb
|
|
124
|
+
- lib/xmpp4r/last.rb
|
|
125
|
+
- lib/xmpp4r/last/helper/helper.rb
|
|
126
|
+
- lib/xmpp4r/last/iq/last.rb
|
|
127
|
+
- lib/xmpp4r/location.rb
|
|
128
|
+
- lib/xmpp4r/location/helper/helper.rb
|
|
129
|
+
- lib/xmpp4r/location/location.rb
|
|
130
|
+
- lib/xmpp4r/message.rb
|
|
131
|
+
- lib/xmpp4r/muc.rb
|
|
132
|
+
- lib/xmpp4r/muc/helper/mucbrowser.rb
|
|
133
|
+
- lib/xmpp4r/muc/helper/mucclient.rb
|
|
134
|
+
- lib/xmpp4r/muc/helper/simplemucclient.rb
|
|
135
|
+
- lib/xmpp4r/muc/iq/mucadmin.rb
|
|
136
|
+
- lib/xmpp4r/muc/iq/mucadminitem.rb
|
|
137
|
+
- lib/xmpp4r/muc/iq/mucowner.rb
|
|
138
|
+
- lib/xmpp4r/muc/item.rb
|
|
139
|
+
- lib/xmpp4r/muc/x/muc.rb
|
|
140
|
+
- lib/xmpp4r/muc/x/mucuserinvite.rb
|
|
141
|
+
- lib/xmpp4r/muc/x/mucuseritem.rb
|
|
142
|
+
- lib/xmpp4r/presence.rb
|
|
143
|
+
- lib/xmpp4r/pubsub.rb
|
|
144
|
+
- lib/xmpp4r/pubsub/children/configuration.rb
|
|
145
|
+
- lib/xmpp4r/pubsub/children/event.rb
|
|
146
|
+
- lib/xmpp4r/pubsub/children/item.rb
|
|
147
|
+
- lib/xmpp4r/pubsub/children/items.rb
|
|
148
|
+
- lib/xmpp4r/pubsub/children/node_config.rb
|
|
149
|
+
- lib/xmpp4r/pubsub/children/publish.rb
|
|
150
|
+
- lib/xmpp4r/pubsub/children/retract.rb
|
|
151
|
+
- lib/xmpp4r/pubsub/children/subscription.rb
|
|
152
|
+
- lib/xmpp4r/pubsub/children/subscription_config.rb
|
|
153
|
+
- lib/xmpp4r/pubsub/children/unsubscribe.rb
|
|
154
|
+
- lib/xmpp4r/pubsub/helper/nodebrowser.rb
|
|
155
|
+
- lib/xmpp4r/pubsub/helper/nodehelper.rb
|
|
156
|
+
- lib/xmpp4r/pubsub/helper/oauth_service_helper.rb
|
|
157
|
+
- lib/xmpp4r/pubsub/helper/servicehelper.rb
|
|
158
|
+
- lib/xmpp4r/pubsub/iq/pubsub.rb
|
|
159
|
+
- lib/xmpp4r/query.rb
|
|
160
|
+
- lib/xmpp4r/reliable.rb
|
|
161
|
+
- lib/xmpp4r/rexmladdons.rb
|
|
162
|
+
- lib/xmpp4r/roster.rb
|
|
163
|
+
- lib/xmpp4r/roster/helper/roster.rb
|
|
164
|
+
- lib/xmpp4r/roster/iq/roster.rb
|
|
165
|
+
- lib/xmpp4r/roster/x/roster.rb
|
|
166
|
+
- lib/xmpp4r/rpc.rb
|
|
167
|
+
- lib/xmpp4r/rpc/helper/client.rb
|
|
168
|
+
- lib/xmpp4r/rpc/helper/server.rb
|
|
169
|
+
- lib/xmpp4r/rpc/helper/xmlrpcaddons.rb
|
|
170
|
+
- lib/xmpp4r/rpc/iq/rpc.rb
|
|
171
|
+
- lib/xmpp4r/sasl.rb
|
|
172
|
+
- lib/xmpp4r/semaphore.rb
|
|
173
|
+
- lib/xmpp4r/stream.rb
|
|
174
|
+
- lib/xmpp4r/streamparser.rb
|
|
175
|
+
- lib/xmpp4r/test/listener_mocker.rb
|
|
176
|
+
- lib/xmpp4r/tune.rb
|
|
177
|
+
- lib/xmpp4r/tune/helper/helper.rb
|
|
178
|
+
- lib/xmpp4r/tune/tune.rb
|
|
179
|
+
- lib/xmpp4r/vcard.rb
|
|
180
|
+
- lib/xmpp4r/vcard/helper/vcard.rb
|
|
181
|
+
- lib/xmpp4r/vcard/iq/vcard.rb
|
|
182
|
+
- lib/xmpp4r/version.rb
|
|
183
|
+
- lib/xmpp4r/version/helper/responder.rb
|
|
184
|
+
- lib/xmpp4r/version/helper/simpleresponder.rb
|
|
185
|
+
- lib/xmpp4r/version/iq/version.rb
|
|
186
|
+
- lib/xmpp4r/x.rb
|
|
187
|
+
- lib/xmpp4r/xhtml.rb
|
|
188
|
+
- lib/xmpp4r/xhtml/html.rb
|
|
189
|
+
- lib/xmpp4r/xmpp4r.rb
|
|
190
|
+
- lib/xmpp4r/xmppelement.rb
|
|
191
|
+
- lib/xmpp4r/xmppstanza.rb
|
|
192
|
+
- setup.rb
|
|
193
|
+
- test/bytestreams/tc_ibb.rb
|
|
194
|
+
- test/bytestreams/tc_socks5bytestreams.rb
|
|
195
|
+
- test/caps/tc_helper.rb
|
|
196
|
+
- test/dataforms/tc_data.rb
|
|
197
|
+
- test/delay/tc_xdelay.rb
|
|
198
|
+
- test/discovery/tc_responder.rb
|
|
199
|
+
- test/last/tc_helper.rb
|
|
200
|
+
- test/lib/assert_equal_xml.rb
|
|
201
|
+
- test/lib/clienttester.rb
|
|
202
|
+
- test/muc/tc_muc_mucclient.rb
|
|
203
|
+
- test/muc/tc_muc_simplemucclient.rb
|
|
204
|
+
- test/muc/tc_mucowner.rb
|
|
205
|
+
- test/pubsub/tc_helper.rb
|
|
206
|
+
- test/pubsub/tc_nodeconfig.rb
|
|
207
|
+
- test/pubsub/tc_subscriptionconfig.rb
|
|
208
|
+
- test/reliable/tc_disconnect_cleanup.rb
|
|
209
|
+
- test/reliable/tc_disconnect_exception.rb
|
|
210
|
+
- test/reliable/tc_listener_mocked_test.rb
|
|
211
|
+
- test/reliable/tc_reliable_connection.rb
|
|
212
|
+
- test/roster/tc_helper.rb
|
|
213
|
+
- test/roster/tc_iqqueryroster.rb
|
|
214
|
+
- test/roster/tc_xroster.rb
|
|
215
|
+
- test/rpc/tc_helper.rb
|
|
216
|
+
- test/tc_callbacks.rb
|
|
217
|
+
- test/tc_class_names.rb
|
|
218
|
+
- test/tc_client.rb
|
|
219
|
+
- test/tc_errors.rb
|
|
220
|
+
- test/tc_idgenerator.rb
|
|
221
|
+
- test/tc_iq.rb
|
|
222
|
+
- test/tc_iqquery.rb
|
|
223
|
+
- test/tc_jid.rb
|
|
224
|
+
- test/tc_message.rb
|
|
225
|
+
- test/tc_presence.rb
|
|
226
|
+
- test/tc_rexml.rb
|
|
227
|
+
- test/tc_stream.rb
|
|
228
|
+
- test/tc_streamComponent.rb
|
|
229
|
+
- test/tc_streamError.rb
|
|
230
|
+
- test/tc_streamSend.rb
|
|
231
|
+
- test/tc_streamparser.rb
|
|
232
|
+
- test/tc_xmppstanza.rb
|
|
233
|
+
- test/ts_xmpp4r.rb
|
|
234
|
+
- test/tune/tc_helper_recv.rb
|
|
235
|
+
- test/tune/tc_helper_send.rb
|
|
236
|
+
- test/tune/tc_tune.rb
|
|
237
|
+
- test/vcard/tc_helper.rb
|
|
238
|
+
- test/vcard/tc_iqvcard.rb
|
|
239
|
+
- test/version/tc_helper.rb
|
|
240
|
+
- test/version/tc_iqqueryversion.rb
|
|
241
|
+
- test/xhtml/tc_html.rb
|
|
242
|
+
- tools/gen_requires.bash
|
|
243
|
+
- tools/xmpp4r-gemspec-test.rb
|
|
244
|
+
- xmpp4r.gemspec
|
|
245
|
+
has_rdoc: true
|
|
246
|
+
homepage: http://home.gna.org/xmpp4r/
|
|
247
|
+
post_install_message:
|
|
248
|
+
rdoc_options:
|
|
249
|
+
- --quiet
|
|
250
|
+
- --title
|
|
251
|
+
- XMPP4R is an XMPP/Jabber library for Ruby.
|
|
252
|
+
- --opname
|
|
253
|
+
- index.html
|
|
254
|
+
- --main
|
|
255
|
+
- lib/xmpp4r.rb
|
|
256
|
+
- --line-numbers
|
|
257
|
+
- --inline-source
|
|
258
|
+
require_paths:
|
|
259
|
+
- lib
|
|
260
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
261
|
+
requirements:
|
|
262
|
+
- - ">="
|
|
263
|
+
- !ruby/object:Gem::Version
|
|
264
|
+
version: 1.8.4
|
|
265
|
+
version:
|
|
266
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
267
|
+
requirements:
|
|
268
|
+
- - ">="
|
|
269
|
+
- !ruby/object:Gem::Version
|
|
270
|
+
version: "0"
|
|
271
|
+
version:
|
|
272
|
+
requirements: []
|
|
273
|
+
|
|
274
|
+
rubyforge_project: xmpp4r
|
|
275
|
+
rubygems_version: 1.2.0
|
|
276
|
+
signing_key:
|
|
277
|
+
specification_version: 3
|
|
278
|
+
summary: XMPP4R is an XMPP/Jabber library for Ruby.
|
|
279
|
+
test_files: []
|
|
280
|
+
|