xmpp4r 0.4 → 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.
Files changed (68) hide show
  1. data/CHANGELOG +8 -0
  2. data/README.rdoc +4 -1
  3. data/Rakefile +10 -20
  4. data/data/doc/xmpp4r/examples/advanced/versionpoll.rb +20 -1
  5. data/lib/xmpp4r/bytestreams/helper/ibb/target.rb +7 -0
  6. data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb +7 -1
  7. data/lib/xmpp4r/callbacks.rb +9 -0
  8. data/lib/xmpp4r/caps/c.rb +14 -0
  9. data/lib/xmpp4r/caps/helper/helper.rb +1 -4
  10. data/lib/xmpp4r/client.rb +42 -15
  11. data/lib/xmpp4r/connection.rb +7 -3
  12. data/lib/xmpp4r/debuglog.rb +22 -1
  13. data/lib/xmpp4r/discovery.rb +1 -0
  14. data/lib/xmpp4r/discovery/helper/helper.rb +58 -0
  15. data/lib/xmpp4r/discovery/iq/discoinfo.rb +2 -2
  16. data/lib/xmpp4r/discovery/iq/discoitems.rb +2 -2
  17. data/lib/xmpp4r/errors.rb +5 -2
  18. data/lib/xmpp4r/httpbinding/client.rb +9 -19
  19. data/lib/xmpp4r/last.rb +2 -0
  20. data/lib/xmpp4r/last/helper/helper.rb +37 -0
  21. data/lib/xmpp4r/last/iq/last.rb +67 -0
  22. data/lib/xmpp4r/location.rb +2 -0
  23. data/lib/xmpp4r/location/helper/helper.rb +56 -0
  24. data/lib/xmpp4r/location/location.rb +179 -0
  25. data/lib/xmpp4r/message.rb +32 -0
  26. data/lib/xmpp4r/presence.rb +1 -1
  27. data/lib/xmpp4r/pubsub/children/configuration.rb +1 -1
  28. data/lib/xmpp4r/pubsub/children/items.rb +11 -2
  29. data/lib/xmpp4r/pubsub/children/publish.rb +14 -0
  30. data/lib/xmpp4r/pubsub/children/retract.rb +41 -0
  31. data/lib/xmpp4r/pubsub/helper/nodebrowser.rb +2 -3
  32. data/lib/xmpp4r/pubsub/helper/nodehelper.rb +4 -4
  33. data/lib/xmpp4r/pubsub/helper/oauth_service_helper.rb +90 -0
  34. data/lib/xmpp4r/pubsub/helper/servicehelper.rb +58 -19
  35. data/lib/xmpp4r/reliable.rb +168 -0
  36. data/lib/xmpp4r/rexmladdons.rb +6 -0
  37. data/lib/xmpp4r/roster/helper/roster.rb +5 -2
  38. data/lib/xmpp4r/sasl.rb +19 -8
  39. data/lib/xmpp4r/stream.rb +133 -31
  40. data/lib/xmpp4r/streamparser.rb +9 -1
  41. data/lib/xmpp4r/test/listener_mocker.rb +118 -0
  42. data/lib/xmpp4r/xmpp4r.rb +3 -1
  43. data/test/bytestreams/tc_ibb.rb +6 -4
  44. data/test/bytestreams/tc_socks5bytestreams.rb +3 -2
  45. data/test/caps/tc_helper.rb +4 -2
  46. data/test/dataforms/tc_data.rb +1 -1
  47. data/test/last/tc_helper.rb +75 -0
  48. data/test/lib/clienttester.rb +43 -14
  49. data/test/muc/tc_muc_mucclient.rb +6 -2
  50. data/test/pubsub/tc_helper.rb +131 -8
  51. data/test/pubsub/tc_nodeconfig.rb +7 -0
  52. data/test/reliable/tc_disconnect_cleanup.rb +334 -0
  53. data/test/reliable/tc_disconnect_exception.rb +37 -0
  54. data/test/reliable/tc_listener_mocked_test.rb +68 -0
  55. data/test/reliable/tc_reliable_connection.rb +31 -0
  56. data/test/roster/tc_helper.rb +21 -11
  57. data/test/rpc/tc_helper.rb +2 -2
  58. data/test/tc_callbacks.rb +3 -3
  59. data/test/tc_message.rb +15 -0
  60. data/test/tc_stream.rb +59 -121
  61. data/test/tc_streamError.rb +2 -4
  62. data/test/tc_streamparser.rb +26 -13
  63. data/test/ts_xmpp4r.rb +0 -9
  64. data/test/tune/tc_helper_recv.rb +0 -2
  65. data/test/vcard/tc_helper.rb +1 -1
  66. data/xmpp4r.gemspec +31 -84
  67. metadata +116 -167
  68. data/lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb.orig +0 -62
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/ruby
2
2
 
3
- $:.unshift '../lib'
3
+ $:.unshift "#{File.dirname(__FILE__)}/../lib"
4
4
 
5
5
  require 'test/unit'
6
6
  require 'socket'
@@ -95,8 +95,6 @@ class ConnectionErrorTest < Test::Unit::TestCase
95
95
  when :disconnected
96
96
  assert_equal(nil, exc)
97
97
  assert_equal(Jabber::Stream, o.class)
98
- else
99
- assert(false)
100
98
  end
101
99
  error += 1
102
100
  end
@@ -119,7 +117,7 @@ class ConnectionErrorTest < Test::Unit::TestCase
119
117
  @stream.start(@conn)
120
118
  @server.puts(STREAM)
121
119
  @server.flush
122
- assert_raise(Errno::EPIPE) do
120
+ assert_raise(IOError) do
123
121
  @server.close
124
122
  sleep 0.1
125
123
  @stream.send('</test>')
@@ -1,12 +1,11 @@
1
1
  #!/usr/bin/ruby
2
2
 
3
- $:.unshift '../lib'
3
+ $:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
4
4
 
5
5
  require 'tempfile'
6
6
  require 'test/unit'
7
7
  require 'socket'
8
- require 'xmpp4r/streamparser'
9
- require 'xmpp4r/semaphore'
8
+ require 'xmpp4r'
10
9
  include Jabber
11
10
 
12
11
  class MockListener
@@ -34,9 +33,12 @@ class StreamParserTest < Test::Unit::TestCase
34
33
 
35
34
  def parse_simple_helper(fixture)
36
35
  parser = StreamParser.new(STREAM + fixture, @listener)
37
-
38
- parser.parse
39
-
36
+
37
+ begin
38
+ parser.parse
39
+ rescue Jabber::ServerDisconnected => e
40
+ end
41
+
40
42
  yield parse_with_rexml(fixture)
41
43
  end
42
44
 
@@ -99,14 +101,25 @@ class StreamParserTest < Test::Unit::TestCase
99
101
  end
100
102
 
101
103
  =begin
102
- **********
103
- * FIXME! *
104
- **********
105
-
104
+ ##
105
+ # FIXME:
106
+ # http://www.germane-software.com/projects/rexml/ticket/165
106
107
  def test_unbound_prefix
107
- parse_simple_helper("<message><soe:instantMessage/></message>") do |desired|
108
- assert_equal desired.first_element('*').name, 'instantMessage'
109
- end
108
+ fixture = "<message><soe:instantMessage/></message>"
109
+ parser = StreamParser.new(STREAM + fixture, @listener)
110
+
111
+ assert_nothing_raised { parser.parse }
110
112
  end
111
113
  =end
114
+
115
+ def test_stream_restart
116
+ parser = StreamParser.new(STREAM + "<stream:stream xmlns:stream='http://etherx.jabber.org/streams' to='foobar'>", @listener)
117
+
118
+ begin
119
+ parser.parse
120
+ rescue Jabber::ServerDisconnected => e
121
+ end
122
+
123
+ assert_equal 'foobar', @listener.received.attributes['to']
124
+ end
112
125
  end
@@ -33,15 +33,6 @@ end
33
33
  tc_subdirs.each do |dir|
34
34
  Find.find(dir) do |f|
35
35
  if File::file?(f) and File::basename(f) =~ /^tc.*\.rb$/
36
-
37
- if (RUBY_VERSION.split('.').collect {|n| n.to_i} <=> [1,9,0]) >= 0
38
- # TODO: at the moment, these two test cases have timing dependencies
39
- # on threaded code. While they may pass with the green thread
40
- # implementation in Ruby 1.8, they often fail with real threads.
41
- next if f =~ /tc_helper.rb/
42
- next if f =~ /tc_stream.rb/
43
- end
44
-
45
36
  tc_files << f
46
37
  end
47
38
  end
@@ -37,8 +37,6 @@ class UserTune::HelperTest < Test::Unit::TestCase
37
37
  assert_equal 'Heart of the Sunrise', tune.title
38
38
  assert_equal '3', tune.track
39
39
  assert_equal 'http://www.yesworld.com/lyrics/Fragile.html#9',tune.uri
40
- end
41
- @client.add_message_callback do |m|
42
40
  query_waiter.run
43
41
  end
44
42
  @client.send Jabber::Presence.new
@@ -18,7 +18,7 @@ class Vcard::HelperTest < Test::Unit::TestCase
18
18
  end
19
19
 
20
20
  def test_callback
21
- @server.on_exception{|*e| p e}
21
+ # @server.on_exception{|*e| p e}
22
22
  class << @client
23
23
  remove_method(:jid)
24
24
  def jid
@@ -2,28 +2,17 @@
2
2
  # RUN : 'rake gem:update_gemspec'
3
3
 
4
4
  Gem::Specification.new do |s|
5
- s.rubygems_version = "1.2.0"
6
- s.homepage = "http://home.gna.org/xmpp4r/"
7
- s.loaded = "false"
8
- s.rubyforge_project = "xmpp4r"
9
- s.summary = "XMPP4R is an XMPP/Jabber library for Ruby."
10
- s.require_paths = ["lib"]
11
- s.description = "XMPP4R is an XMPP/Jabber library for Ruby."
12
- s.extra_rdoc_files = ["README.rdoc", "README_ruby19.txt", "CHANGELOG", "LICENSE", "COPYING"]
13
- s.platform = "ruby"
14
5
  s.authors = ["Lucas Nussbaum", "Stephan Maka", "Glenn Rempe"]
15
- s.name = "xmpp4r"
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"]
16
10
  s.files = ["CHANGELOG",
17
11
  "COPYING",
18
12
  "LICENSE",
19
13
  "README.rdoc",
20
14
  "README_ruby19.txt",
21
15
  "Rakefile",
22
- "data/doc",
23
- "data/doc/xmpp4r",
24
- "data/doc/xmpp4r/examples",
25
- "data/doc/xmpp4r/examples/advanced",
26
- "data/doc/xmpp4r/examples/advanced/adventure",
27
16
  "data/doc/xmpp4r/examples/advanced/adventure/README",
28
17
  "data/doc/xmpp4r/examples/advanced/adventure/adventure.rb",
29
18
  "data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb",
@@ -36,21 +25,18 @@ Gem::Specification.new do |s|
36
25
  "data/doc/xmpp4r/examples/advanced/gtkmucclient.rb",
37
26
  "data/doc/xmpp4r/examples/advanced/migrate.rb",
38
27
  "data/doc/xmpp4r/examples/advanced/minimuc.rb",
39
- "data/doc/xmpp4r/examples/advanced/pep-aggregator",
40
28
  "data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl",
41
29
  "data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb",
42
30
  "data/doc/xmpp4r/examples/advanced/recvfile.rb",
43
31
  "data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb",
44
32
  "data/doc/xmpp4r/examples/advanced/sendfile.conf",
45
33
  "data/doc/xmpp4r/examples/advanced/sendfile.rb",
46
- "data/doc/xmpp4r/examples/advanced/shellmgr",
47
34
  "data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb",
48
35
  "data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb",
49
36
  "data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb",
50
37
  "data/doc/xmpp4r/examples/advanced/versionpoll.rb",
51
38
  "data/doc/xmpp4r/examples/advanced/xmpping.rb",
52
39
  "data/doc/xmpp4r/examples/advanced/xmppingrc.sample",
53
- "data/doc/xmpp4r/examples/basic",
54
40
  "data/doc/xmpp4r/examples/basic/change_password.rb",
55
41
  "data/doc/xmpp4r/examples/basic/client.rb",
56
42
  "data/doc/xmpp4r/examples/basic/component.rb",
@@ -70,182 +56,141 @@ Gem::Specification.new do |s|
70
56
  "data/doc/xmpp4r/examples/basic/tune_client.rb",
71
57
  "data/doc/xmpp4r/examples/basic/tune_server.rb",
72
58
  "data/doc/xmpp4r/examples/basic/versionbot.rb",
73
- "lib/xmpp4r",
74
59
  "lib/xmpp4r.rb",
75
60
  "lib/xmpp4r/base64.rb",
76
- "lib/xmpp4r/bytestreams",
77
61
  "lib/xmpp4r/bytestreams.rb",
78
- "lib/xmpp4r/bytestreams/helper",
79
62
  "lib/xmpp4r/bytestreams/helper/filetransfer.rb",
80
- "lib/xmpp4r/bytestreams/helper/ibb",
81
63
  "lib/xmpp4r/bytestreams/helper/ibb/base.rb",
82
64
  "lib/xmpp4r/bytestreams/helper/ibb/initiator.rb",
83
65
  "lib/xmpp4r/bytestreams/helper/ibb/target.rb",
84
- "lib/xmpp4r/bytestreams/helper/socks5bytestreams",
85
66
  "lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb",
86
67
  "lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb",
87
68
  "lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb",
88
69
  "lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb",
89
70
  "lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb",
90
- "lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb.orig",
91
- "lib/xmpp4r/bytestreams/iq",
92
71
  "lib/xmpp4r/bytestreams/iq/bytestreams.rb",
93
72
  "lib/xmpp4r/bytestreams/iq/si.rb",
94
73
  "lib/xmpp4r/callbacks.rb",
95
- "lib/xmpp4r/caps",
96
74
  "lib/xmpp4r/caps.rb",
97
75
  "lib/xmpp4r/caps/c.rb",
98
- "lib/xmpp4r/caps/helper",
99
76
  "lib/xmpp4r/caps/helper/generator.rb",
100
77
  "lib/xmpp4r/caps/helper/helper.rb",
101
78
  "lib/xmpp4r/client.rb",
102
- "lib/xmpp4r/command",
103
- "lib/xmpp4r/command/helper",
104
79
  "lib/xmpp4r/command/helper/responder.rb",
105
- "lib/xmpp4r/command/iq",
106
80
  "lib/xmpp4r/command/iq/command.rb",
107
81
  "lib/xmpp4r/component.rb",
108
82
  "lib/xmpp4r/connection.rb",
109
- "lib/xmpp4r/dataforms",
110
83
  "lib/xmpp4r/dataforms.rb",
111
- "lib/xmpp4r/dataforms/x",
112
84
  "lib/xmpp4r/dataforms/x/data.rb",
113
85
  "lib/xmpp4r/debuglog.rb",
114
- "lib/xmpp4r/delay",
115
86
  "lib/xmpp4r/delay.rb",
116
- "lib/xmpp4r/delay/x",
117
87
  "lib/xmpp4r/delay/x/delay.rb",
118
- "lib/xmpp4r/discovery",
119
88
  "lib/xmpp4r/discovery.rb",
120
- "lib/xmpp4r/discovery/helper",
89
+ "lib/xmpp4r/discovery/helper/helper.rb",
121
90
  "lib/xmpp4r/discovery/helper/responder.rb",
122
- "lib/xmpp4r/discovery/iq",
123
91
  "lib/xmpp4r/discovery/iq/discoinfo.rb",
124
92
  "lib/xmpp4r/discovery/iq/discoitems.rb",
125
93
  "lib/xmpp4r/errors.rb",
126
- "lib/xmpp4r/feature_negotiation",
127
94
  "lib/xmpp4r/feature_negotiation.rb",
128
- "lib/xmpp4r/feature_negotiation/iq",
129
95
  "lib/xmpp4r/feature_negotiation/iq/feature.rb",
130
- "lib/xmpp4r/framework",
131
96
  "lib/xmpp4r/framework/base.rb",
132
97
  "lib/xmpp4r/framework/bot.rb",
133
- "lib/xmpp4r/httpbinding",
134
98
  "lib/xmpp4r/httpbinding.rb",
135
99
  "lib/xmpp4r/httpbinding/client.rb",
136
100
  "lib/xmpp4r/idgenerator.rb",
137
101
  "lib/xmpp4r/iq.rb",
138
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",
139
109
  "lib/xmpp4r/message.rb",
140
- "lib/xmpp4r/muc",
141
110
  "lib/xmpp4r/muc.rb",
142
- "lib/xmpp4r/muc/helper",
143
111
  "lib/xmpp4r/muc/helper/mucbrowser.rb",
144
112
  "lib/xmpp4r/muc/helper/mucclient.rb",
145
113
  "lib/xmpp4r/muc/helper/simplemucclient.rb",
146
- "lib/xmpp4r/muc/iq",
147
114
  "lib/xmpp4r/muc/iq/mucadmin.rb",
148
115
  "lib/xmpp4r/muc/iq/mucadminitem.rb",
149
116
  "lib/xmpp4r/muc/iq/mucowner.rb",
150
117
  "lib/xmpp4r/muc/item.rb",
151
- "lib/xmpp4r/muc/x",
152
118
  "lib/xmpp4r/muc/x/muc.rb",
153
119
  "lib/xmpp4r/muc/x/mucuserinvite.rb",
154
120
  "lib/xmpp4r/muc/x/mucuseritem.rb",
155
121
  "lib/xmpp4r/presence.rb",
156
- "lib/xmpp4r/pubsub",
157
122
  "lib/xmpp4r/pubsub.rb",
158
- "lib/xmpp4r/pubsub/children",
159
123
  "lib/xmpp4r/pubsub/children/configuration.rb",
160
124
  "lib/xmpp4r/pubsub/children/event.rb",
161
125
  "lib/xmpp4r/pubsub/children/item.rb",
162
126
  "lib/xmpp4r/pubsub/children/items.rb",
163
127
  "lib/xmpp4r/pubsub/children/node_config.rb",
164
128
  "lib/xmpp4r/pubsub/children/publish.rb",
129
+ "lib/xmpp4r/pubsub/children/retract.rb",
165
130
  "lib/xmpp4r/pubsub/children/subscription.rb",
166
131
  "lib/xmpp4r/pubsub/children/subscription_config.rb",
167
132
  "lib/xmpp4r/pubsub/children/unsubscribe.rb",
168
- "lib/xmpp4r/pubsub/helper",
169
133
  "lib/xmpp4r/pubsub/helper/nodebrowser.rb",
170
134
  "lib/xmpp4r/pubsub/helper/nodehelper.rb",
135
+ "lib/xmpp4r/pubsub/helper/oauth_service_helper.rb",
171
136
  "lib/xmpp4r/pubsub/helper/servicehelper.rb",
172
- "lib/xmpp4r/pubsub/iq",
173
137
  "lib/xmpp4r/pubsub/iq/pubsub.rb",
174
138
  "lib/xmpp4r/query.rb",
139
+ "lib/xmpp4r/reliable.rb",
175
140
  "lib/xmpp4r/rexmladdons.rb",
176
- "lib/xmpp4r/roster",
177
141
  "lib/xmpp4r/roster.rb",
178
- "lib/xmpp4r/roster/helper",
179
142
  "lib/xmpp4r/roster/helper/roster.rb",
180
- "lib/xmpp4r/roster/iq",
181
143
  "lib/xmpp4r/roster/iq/roster.rb",
182
- "lib/xmpp4r/roster/x",
183
144
  "lib/xmpp4r/roster/x/roster.rb",
184
- "lib/xmpp4r/rpc",
185
145
  "lib/xmpp4r/rpc.rb",
186
- "lib/xmpp4r/rpc/helper",
187
146
  "lib/xmpp4r/rpc/helper/client.rb",
188
147
  "lib/xmpp4r/rpc/helper/server.rb",
189
148
  "lib/xmpp4r/rpc/helper/xmlrpcaddons.rb",
190
- "lib/xmpp4r/rpc/iq",
191
149
  "lib/xmpp4r/rpc/iq/rpc.rb",
192
150
  "lib/xmpp4r/sasl.rb",
193
151
  "lib/xmpp4r/semaphore.rb",
194
152
  "lib/xmpp4r/stream.rb",
195
153
  "lib/xmpp4r/streamparser.rb",
196
- "lib/xmpp4r/tune",
154
+ "lib/xmpp4r/test/listener_mocker.rb",
197
155
  "lib/xmpp4r/tune.rb",
198
- "lib/xmpp4r/tune/helper",
199
156
  "lib/xmpp4r/tune/helper/helper.rb",
200
157
  "lib/xmpp4r/tune/tune.rb",
201
- "lib/xmpp4r/vcard",
202
158
  "lib/xmpp4r/vcard.rb",
203
- "lib/xmpp4r/vcard/helper",
204
159
  "lib/xmpp4r/vcard/helper/vcard.rb",
205
- "lib/xmpp4r/vcard/iq",
206
160
  "lib/xmpp4r/vcard/iq/vcard.rb",
207
- "lib/xmpp4r/version",
208
161
  "lib/xmpp4r/version.rb",
209
- "lib/xmpp4r/version/helper",
210
162
  "lib/xmpp4r/version/helper/responder.rb",
211
163
  "lib/xmpp4r/version/helper/simpleresponder.rb",
212
- "lib/xmpp4r/version/iq",
213
164
  "lib/xmpp4r/version/iq/version.rb",
214
165
  "lib/xmpp4r/x.rb",
215
- "lib/xmpp4r/xhtml",
216
166
  "lib/xmpp4r/xhtml.rb",
217
167
  "lib/xmpp4r/xhtml/html.rb",
218
168
  "lib/xmpp4r/xmpp4r.rb",
219
169
  "lib/xmpp4r/xmppelement.rb",
220
170
  "lib/xmpp4r/xmppstanza.rb",
221
171
  "setup.rb",
222
- "test/bytestreams",
223
172
  "test/bytestreams/tc_ibb.rb",
224
173
  "test/bytestreams/tc_socks5bytestreams.rb",
225
- "test/caps",
226
174
  "test/caps/tc_helper.rb",
227
- "test/dataforms",
228
175
  "test/dataforms/tc_data.rb",
229
- "test/delay",
230
176
  "test/delay/tc_xdelay.rb",
231
- "test/discovery",
232
177
  "test/discovery/tc_responder.rb",
233
- "test/lib",
178
+ "test/last/tc_helper.rb",
234
179
  "test/lib/assert_equal_xml.rb",
235
180
  "test/lib/clienttester.rb",
236
- "test/muc",
237
181
  "test/muc/tc_muc_mucclient.rb",
238
182
  "test/muc/tc_muc_simplemucclient.rb",
239
183
  "test/muc/tc_mucowner.rb",
240
- "test/pubsub",
241
184
  "test/pubsub/tc_helper.rb",
242
185
  "test/pubsub/tc_nodeconfig.rb",
243
186
  "test/pubsub/tc_subscriptionconfig.rb",
244
- "test/roster",
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",
245
191
  "test/roster/tc_helper.rb",
246
192
  "test/roster/tc_iqqueryroster.rb",
247
193
  "test/roster/tc_xroster.rb",
248
- "test/rpc",
249
194
  "test/rpc/tc_helper.rb",
250
195
  "test/tc_callbacks.rb",
251
196
  "test/tc_class_names.rb",
@@ -265,27 +210,29 @@ Gem::Specification.new do |s|
265
210
  "test/tc_streamparser.rb",
266
211
  "test/tc_xmppstanza.rb",
267
212
  "test/ts_xmpp4r.rb",
268
- "test/tune",
269
213
  "test/tune/tc_helper_recv.rb",
270
214
  "test/tune/tc_helper_send.rb",
271
215
  "test/tune/tc_tune.rb",
272
- "test/vcard",
273
216
  "test/vcard/tc_helper.rb",
274
217
  "test/vcard/tc_iqvcard.rb",
275
- "test/version",
276
218
  "test/version/tc_helper.rb",
277
219
  "test/version/tc_iqqueryversion.rb",
278
- "test/xhtml",
279
220
  "test/xhtml/tc_html.rb",
280
221
  "tools/gen_requires.bash",
281
222
  "tools/xmpp4r-gemspec-test.rb",
282
223
  "xmpp4r.gemspec"]
283
- s.required_rubygems_version = ">= 0"
284
224
  s.has_rdoc = true
285
- s.specification_version = "2"
286
- s.email = "xmpp4r-devel@gna.org"
287
- s.version = "0.4"
225
+ s.homepage = "http://home.gna.org/xmpp4r/"
226
+ s.loaded = false
227
+ s.name = "xmpp4r"
228
+ s.platform = "ruby"
288
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"]
289
231
  s.required_ruby_version = ">= 1.8.4"
290
- s.bindir = "bin"
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"
291
238
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xmpp4r
3
3
  version: !ruby/object:Gem::Version
4
- version: "0.4"
4
+ version: "0.5"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lucas Nussbaum
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2008-08-05 00:00:00 +02:00
14
+ date: 2009-07-15 00:00:00 -04:00
15
15
  default_executable:
16
16
  dependencies: []
17
17
 
@@ -22,281 +22,230 @@ executables: []
22
22
  extensions: []
23
23
 
24
24
  extra_rdoc_files:
25
- - README.rdoc
26
- - README_ruby19.txt
27
25
  - CHANGELOG
28
- - LICENSE
29
26
  - COPYING
30
- files:
31
- - Rakefile
32
- - setup.rb
33
- - xmpp4r.gemspec
27
+ - LICENSE
34
28
  - README.rdoc
35
29
  - README_ruby19.txt
30
+ files:
36
31
  - CHANGELOG
37
- - LICENSE
38
32
  - COPYING
39
- - lib/xmpp4r
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
40
81
  - lib/xmpp4r/base64.rb
41
82
  - lib/xmpp4r/bytestreams.rb
42
- - lib/xmpp4r/bytestreams
43
- - lib/xmpp4r/bytestreams/helper
44
- - lib/xmpp4r/bytestreams/helper/ibb
45
- - lib/xmpp4r/bytestreams/helper/ibb/target.rb
83
+ - lib/xmpp4r/bytestreams/helper/filetransfer.rb
46
84
  - lib/xmpp4r/bytestreams/helper/ibb/base.rb
47
85
  - lib/xmpp4r/bytestreams/helper/ibb/initiator.rb
48
- - lib/xmpp4r/bytestreams/helper/socks5bytestreams
49
- - lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb
86
+ - lib/xmpp4r/bytestreams/helper/ibb/target.rb
50
87
  - lib/xmpp4r/bytestreams/helper/socks5bytestreams/base.rb
51
88
  - lib/xmpp4r/bytestreams/helper/socks5bytestreams/initiator.rb
89
+ - lib/xmpp4r/bytestreams/helper/socks5bytestreams/server.rb
52
90
  - lib/xmpp4r/bytestreams/helper/socks5bytestreams/socks5.rb
53
- - lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb.orig
54
91
  - lib/xmpp4r/bytestreams/helper/socks5bytestreams/target.rb
55
- - lib/xmpp4r/bytestreams/helper/filetransfer.rb
56
- - lib/xmpp4r/bytestreams/iq
57
92
  - lib/xmpp4r/bytestreams/iq/bytestreams.rb
58
93
  - lib/xmpp4r/bytestreams/iq/si.rb
59
- - lib/xmpp4r/caps
94
+ - lib/xmpp4r/callbacks.rb
95
+ - lib/xmpp4r/caps.rb
60
96
  - lib/xmpp4r/caps/c.rb
61
- - lib/xmpp4r/caps/helper
62
97
  - lib/xmpp4r/caps/helper/generator.rb
63
98
  - lib/xmpp4r/caps/helper/helper.rb
64
- - lib/xmpp4r/command
65
- - lib/xmpp4r/command/helper
99
+ - lib/xmpp4r/client.rb
66
100
  - lib/xmpp4r/command/helper/responder.rb
67
- - lib/xmpp4r/command/iq
68
101
  - lib/xmpp4r/command/iq/command.rb
102
+ - lib/xmpp4r/component.rb
103
+ - lib/xmpp4r/connection.rb
69
104
  - lib/xmpp4r/dataforms.rb
70
- - lib/xmpp4r/dataforms
71
- - lib/xmpp4r/dataforms/x
72
105
  - lib/xmpp4r/dataforms/x/data.rb
106
+ - lib/xmpp4r/debuglog.rb
73
107
  - lib/xmpp4r/delay.rb
74
- - lib/xmpp4r/delay
75
- - lib/xmpp4r/delay/x
76
108
  - lib/xmpp4r/delay/x/delay.rb
77
109
  - lib/xmpp4r/discovery.rb
78
- - lib/xmpp4r/discovery
79
- - lib/xmpp4r/discovery/helper
110
+ - lib/xmpp4r/discovery/helper/helper.rb
80
111
  - lib/xmpp4r/discovery/helper/responder.rb
81
- - lib/xmpp4r/discovery/iq
82
112
  - lib/xmpp4r/discovery/iq/discoinfo.rb
83
113
  - lib/xmpp4r/discovery/iq/discoitems.rb
114
+ - lib/xmpp4r/errors.rb
84
115
  - lib/xmpp4r/feature_negotiation.rb
85
- - lib/xmpp4r/feature_negotiation
86
- - lib/xmpp4r/feature_negotiation/iq
87
116
  - lib/xmpp4r/feature_negotiation/iq/feature.rb
88
- - lib/xmpp4r/framework
89
117
  - lib/xmpp4r/framework/base.rb
90
118
  - lib/xmpp4r/framework/bot.rb
91
119
  - lib/xmpp4r/httpbinding.rb
92
- - lib/xmpp4r/httpbinding
93
120
  - lib/xmpp4r/httpbinding/client.rb
94
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
95
131
  - lib/xmpp4r/muc.rb
96
- - lib/xmpp4r/muc
97
- - lib/xmpp4r/muc/helper
98
132
  - lib/xmpp4r/muc/helper/mucbrowser.rb
99
- - lib/xmpp4r/muc/helper/simplemucclient.rb
100
133
  - lib/xmpp4r/muc/helper/mucclient.rb
101
- - lib/xmpp4r/muc/iq
134
+ - lib/xmpp4r/muc/helper/simplemucclient.rb
102
135
  - lib/xmpp4r/muc/iq/mucadmin.rb
103
136
  - lib/xmpp4r/muc/iq/mucadminitem.rb
104
137
  - lib/xmpp4r/muc/iq/mucowner.rb
105
- - lib/xmpp4r/muc/x
138
+ - lib/xmpp4r/muc/item.rb
106
139
  - lib/xmpp4r/muc/x/muc.rb
107
- - lib/xmpp4r/muc/x/mucuseritem.rb
108
140
  - lib/xmpp4r/muc/x/mucuserinvite.rb
109
- - lib/xmpp4r/muc/item.rb
141
+ - lib/xmpp4r/muc/x/mucuseritem.rb
110
142
  - lib/xmpp4r/presence.rb
111
- - lib/xmpp4r/pubsub
112
- - lib/xmpp4r/pubsub/helper
113
- - lib/xmpp4r/pubsub/helper/nodebrowser.rb
114
- - lib/xmpp4r/pubsub/helper/nodehelper.rb
115
- - lib/xmpp4r/pubsub/helper/servicehelper.rb
116
- - lib/xmpp4r/pubsub/iq
117
- - lib/xmpp4r/pubsub/iq/pubsub.rb
118
- - lib/xmpp4r/pubsub/children
143
+ - lib/xmpp4r/pubsub.rb
119
144
  - lib/xmpp4r/pubsub/children/configuration.rb
120
145
  - lib/xmpp4r/pubsub/children/event.rb
121
146
  - lib/xmpp4r/pubsub/children/item.rb
122
147
  - lib/xmpp4r/pubsub/children/items.rb
123
148
  - lib/xmpp4r/pubsub/children/node_config.rb
124
149
  - lib/xmpp4r/pubsub/children/publish.rb
150
+ - lib/xmpp4r/pubsub/children/retract.rb
125
151
  - lib/xmpp4r/pubsub/children/subscription.rb
126
- - lib/xmpp4r/pubsub/children/unsubscribe.rb
127
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
128
159
  - lib/xmpp4r/query.rb
160
+ - lib/xmpp4r/reliable.rb
161
+ - lib/xmpp4r/rexmladdons.rb
129
162
  - lib/xmpp4r/roster.rb
130
- - lib/xmpp4r/roster
131
- - lib/xmpp4r/roster/helper
132
163
  - lib/xmpp4r/roster/helper/roster.rb
133
- - lib/xmpp4r/roster/iq
134
164
  - lib/xmpp4r/roster/iq/roster.rb
135
- - lib/xmpp4r/roster/x
136
165
  - lib/xmpp4r/roster/x/roster.rb
137
166
  - lib/xmpp4r/rpc.rb
138
- - lib/xmpp4r/rpc
139
- - lib/xmpp4r/rpc/helper
140
167
  - lib/xmpp4r/rpc/helper/client.rb
141
- - lib/xmpp4r/rpc/helper/xmlrpcaddons.rb
142
168
  - lib/xmpp4r/rpc/helper/server.rb
143
- - lib/xmpp4r/rpc/iq
169
+ - lib/xmpp4r/rpc/helper/xmlrpcaddons.rb
144
170
  - lib/xmpp4r/rpc/iq/rpc.rb
171
+ - lib/xmpp4r/sasl.rb
145
172
  - lib/xmpp4r/semaphore.rb
173
+ - lib/xmpp4r/stream.rb
174
+ - lib/xmpp4r/streamparser.rb
175
+ - lib/xmpp4r/test/listener_mocker.rb
146
176
  - lib/xmpp4r/tune.rb
147
- - lib/xmpp4r/tune
148
- - lib/xmpp4r/tune/helper
149
177
  - lib/xmpp4r/tune/helper/helper.rb
150
178
  - lib/xmpp4r/tune/tune.rb
151
179
  - lib/xmpp4r/vcard.rb
152
- - lib/xmpp4r/vcard
153
- - lib/xmpp4r/vcard/helper
154
180
  - lib/xmpp4r/vcard/helper/vcard.rb
155
- - lib/xmpp4r/vcard/iq
156
181
  - lib/xmpp4r/vcard/iq/vcard.rb
157
182
  - lib/xmpp4r/version.rb
158
- - lib/xmpp4r/version
159
- - lib/xmpp4r/version/helper
160
183
  - lib/xmpp4r/version/helper/responder.rb
161
184
  - lib/xmpp4r/version/helper/simpleresponder.rb
162
- - lib/xmpp4r/version/iq
163
185
  - lib/xmpp4r/version/iq/version.rb
164
186
  - lib/xmpp4r/x.rb
165
187
  - lib/xmpp4r/xhtml.rb
166
- - lib/xmpp4r/xhtml
167
188
  - lib/xmpp4r/xhtml/html.rb
168
- - lib/xmpp4r/callbacks.rb
169
- - lib/xmpp4r/component.rb
170
- - lib/xmpp4r/connection.rb
171
- - lib/xmpp4r/errors.rb
172
- - lib/xmpp4r/iq.rb
173
- - lib/xmpp4r/jid.rb
174
- - lib/xmpp4r/message.rb
175
- - lib/xmpp4r/pubsub.rb
176
- - lib/xmpp4r/rexmladdons.rb
177
- - lib/xmpp4r/sasl.rb
178
- - lib/xmpp4r/stream.rb
179
- - lib/xmpp4r/streamparser.rb
189
+ - lib/xmpp4r/xmpp4r.rb
180
190
  - lib/xmpp4r/xmppelement.rb
181
191
  - lib/xmpp4r/xmppstanza.rb
182
- - lib/xmpp4r/caps.rb
183
- - lib/xmpp4r/debuglog.rb
184
- - lib/xmpp4r/xmpp4r.rb
185
- - lib/xmpp4r/client.rb
186
- - lib/xmpp4r.rb
187
- - test/bytestreams
192
+ - setup.rb
188
193
  - test/bytestreams/tc_ibb.rb
189
194
  - test/bytestreams/tc_socks5bytestreams.rb
190
- - test/caps
191
195
  - test/caps/tc_helper.rb
192
- - test/dataforms
193
196
  - test/dataforms/tc_data.rb
194
- - test/delay
195
197
  - test/delay/tc_xdelay.rb
196
- - test/discovery
197
198
  - test/discovery/tc_responder.rb
198
- - test/lib
199
- - test/lib/clienttester.rb
199
+ - test/last/tc_helper.rb
200
200
  - test/lib/assert_equal_xml.rb
201
- - test/muc
201
+ - test/lib/clienttester.rb
202
202
  - test/muc/tc_muc_mucclient.rb
203
203
  - test/muc/tc_muc_simplemucclient.rb
204
204
  - test/muc/tc_mucowner.rb
205
- - test/pubsub
205
+ - test/pubsub/tc_helper.rb
206
206
  - test/pubsub/tc_nodeconfig.rb
207
207
  - test/pubsub/tc_subscriptionconfig.rb
208
- - test/pubsub/tc_helper.rb
209
- - test/roster
210
- - test/roster/tc_xroster.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
211
212
  - test/roster/tc_helper.rb
212
213
  - test/roster/tc_iqqueryroster.rb
213
- - test/rpc
214
+ - test/roster/tc_xroster.rb
214
215
  - test/rpc/tc_helper.rb
215
- - test/tc_idgenerator.rb
216
- - test/tune
217
- - test/tune/tc_helper_recv.rb
218
- - test/tune/tc_helper_send.rb
219
- - test/tune/tc_tune.rb
220
- - test/vcard
221
- - test/vcard/tc_iqvcard.rb
222
- - test/vcard/tc_helper.rb
223
- - test/version
224
- - test/version/tc_helper.rb
225
- - test/version/tc_iqqueryversion.rb
226
- - test/xhtml
227
- - test/xhtml/tc_html.rb
228
- - test/tc_rexml.rb
229
216
  - test/tc_callbacks.rb
230
217
  - test/tc_class_names.rb
231
218
  - test/tc_client.rb
232
219
  - test/tc_errors.rb
220
+ - test/tc_idgenerator.rb
233
221
  - test/tc_iq.rb
234
222
  - test/tc_iqquery.rb
235
223
  - test/tc_jid.rb
236
224
  - test/tc_message.rb
237
225
  - test/tc_presence.rb
226
+ - test/tc_rexml.rb
238
227
  - test/tc_stream.rb
239
228
  - test/tc_streamComponent.rb
240
229
  - test/tc_streamError.rb
241
230
  - test/tc_streamSend.rb
242
- - test/tc_xmppstanza.rb
243
231
  - test/tc_streamparser.rb
232
+ - test/tc_xmppstanza.rb
244
233
  - test/ts_xmpp4r.rb
245
- - data/doc
246
- - data/doc/xmpp4r
247
- - data/doc/xmpp4r/examples
248
- - data/doc/xmpp4r/examples/advanced
249
- - data/doc/xmpp4r/examples/advanced/adventure
250
- - data/doc/xmpp4r/examples/advanced/adventure/README
251
- - data/doc/xmpp4r/examples/advanced/adventure/cube.xml
252
- - data/doc/xmpp4r/examples/advanced/adventure/tower.xml
253
- - data/doc/xmpp4r/examples/advanced/adventure/adventure.rb
254
- - data/doc/xmpp4r/examples/advanced/adventure/adventuremuc.rb
255
- - data/doc/xmpp4r/examples/advanced/adventure/world.rb
256
- - data/doc/xmpp4r/examples/advanced/fileserve.conf
257
- - data/doc/xmpp4r/examples/advanced/fileserve.rb
258
- - data/doc/xmpp4r/examples/advanced/gtkmucclient.rb
259
- - data/doc/xmpp4r/examples/advanced/pep-aggregator
260
- - data/doc/xmpp4r/examples/advanced/pep-aggregator/index.xsl
261
- - data/doc/xmpp4r/examples/advanced/pep-aggregator/pep-aggregator.rb
262
- - data/doc/xmpp4r/examples/advanced/recvfile.rb
263
- - data/doc/xmpp4r/examples/advanced/rosterdiscovery.rb
264
- - data/doc/xmpp4r/examples/advanced/sendfile.conf
265
- - data/doc/xmpp4r/examples/advanced/sendfile.rb
266
- - data/doc/xmpp4r/examples/advanced/shellmgr
267
- - data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr.rb
268
- - data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_jabber.rb
269
- - data/doc/xmpp4r/examples/advanced/shellmgr/shellmgr_test.rb
270
- - data/doc/xmpp4r/examples/advanced/xmppingrc.sample
271
- - data/doc/xmpp4r/examples/advanced/minimuc.rb
272
- - data/doc/xmpp4r/examples/advanced/xmpping.rb
273
- - data/doc/xmpp4r/examples/advanced/getonline.rb
274
- - data/doc/xmpp4r/examples/advanced/migrate.rb
275
- - data/doc/xmpp4r/examples/advanced/versionpoll.rb
276
- - data/doc/xmpp4r/examples/basic
277
- - data/doc/xmpp4r/examples/basic/muc_owner_config.rb
278
- - data/doc/xmpp4r/examples/basic/mucsimplebot.rb
279
- - data/doc/xmpp4r/examples/basic/remove_registration.rb
280
- - data/doc/xmpp4r/examples/basic/rosterprint.rb
281
- - data/doc/xmpp4r/examples/basic/rosterwatch.rb
282
- - data/doc/xmpp4r/examples/basic/versionbot.rb
283
- - data/doc/xmpp4r/examples/basic/change_password.rb
284
- - data/doc/xmpp4r/examples/basic/component.rb
285
- - data/doc/xmpp4r/examples/basic/register.rb
286
- - data/doc/xmpp4r/examples/basic/rosterrename.rb
287
- - data/doc/xmpp4r/examples/basic/send_vcard.rb
288
- - data/doc/xmpp4r/examples/basic/client.rb
289
- - data/doc/xmpp4r/examples/basic/echo.rb
290
- - data/doc/xmpp4r/examples/basic/jabbersend.rb
291
- - data/doc/xmpp4r/examples/basic/mass_sender.rb
292
- - data/doc/xmpp4r/examples/basic/mucinfo.rb
293
- - data/doc/xmpp4r/examples/basic/roster.rb
294
- - data/doc/xmpp4r/examples/basic/tune_client.rb
295
- - data/doc/xmpp4r/examples/basic/tune_server.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
296
242
  - tools/gen_requires.bash
297
243
  - tools/xmpp4r-gemspec-test.rb
244
+ - xmpp4r.gemspec
298
245
  has_rdoc: true
299
246
  homepage: http://home.gna.org/xmpp4r/
247
+ licenses: []
248
+
300
249
  post_install_message:
301
250
  rdoc_options:
302
251
  - --quiet
@@ -325,9 +274,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
325
274
  requirements: []
326
275
 
327
276
  rubyforge_project: xmpp4r
328
- rubygems_version: 1.2.0
277
+ rubygems_version: 1.3.4
329
278
  signing_key:
330
- specification_version: 2
279
+ specification_version: 3
331
280
  summary: XMPP4R is an XMPP/Jabber library for Ruby.
332
281
  test_files: []
333
282