tp-blather 0.8.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (150) hide show
  1. data/.autotest +13 -0
  2. data/.gemtest +0 -0
  3. data/.gitignore +19 -0
  4. data/.rspec +3 -0
  5. data/.travis.yml +8 -0
  6. data/CHANGELOG.md +249 -0
  7. data/Gemfile +4 -0
  8. data/Guardfile +5 -0
  9. data/LICENSE +22 -0
  10. data/README.md +413 -0
  11. data/Rakefile +20 -0
  12. data/TODO.md +2 -0
  13. data/blather.gemspec +51 -0
  14. data/examples/certs/README +20 -0
  15. data/examples/certs/ca-bundle.crt +3987 -0
  16. data/examples/echo.rb +19 -0
  17. data/examples/execute.rb +17 -0
  18. data/examples/ping_pong.rb +38 -0
  19. data/examples/print_hierarchy.rb +77 -0
  20. data/examples/rosterprint.rb +15 -0
  21. data/examples/stream_only.rb +28 -0
  22. data/examples/trusted_echo.rb +21 -0
  23. data/examples/xmpp4r/echo.rb +36 -0
  24. data/lib/blather.rb +112 -0
  25. data/lib/blather/cert_store.rb +53 -0
  26. data/lib/blather/client.rb +95 -0
  27. data/lib/blather/client/client.rb +345 -0
  28. data/lib/blather/client/dsl.rb +320 -0
  29. data/lib/blather/client/dsl/pubsub.rb +174 -0
  30. data/lib/blather/core_ext/eventmachine.rb +125 -0
  31. data/lib/blather/core_ext/ipaddr.rb +20 -0
  32. data/lib/blather/errors.rb +69 -0
  33. data/lib/blather/errors/sasl_error.rb +44 -0
  34. data/lib/blather/errors/stanza_error.rb +110 -0
  35. data/lib/blather/errors/stream_error.rb +84 -0
  36. data/lib/blather/file_transfer.rb +107 -0
  37. data/lib/blather/file_transfer/ibb.rb +68 -0
  38. data/lib/blather/file_transfer/s5b.rb +114 -0
  39. data/lib/blather/jid.rb +141 -0
  40. data/lib/blather/roster.rb +118 -0
  41. data/lib/blather/roster_item.rb +146 -0
  42. data/lib/blather/stanza.rb +167 -0
  43. data/lib/blather/stanza/disco.rb +32 -0
  44. data/lib/blather/stanza/disco/capabilities.rb +161 -0
  45. data/lib/blather/stanza/disco/disco_info.rb +205 -0
  46. data/lib/blather/stanza/disco/disco_items.rb +134 -0
  47. data/lib/blather/stanza/iq.rb +144 -0
  48. data/lib/blather/stanza/iq/command.rb +339 -0
  49. data/lib/blather/stanza/iq/ibb.rb +86 -0
  50. data/lib/blather/stanza/iq/ping.rb +50 -0
  51. data/lib/blather/stanza/iq/query.rb +53 -0
  52. data/lib/blather/stanza/iq/roster.rb +185 -0
  53. data/lib/blather/stanza/iq/s5b.rb +208 -0
  54. data/lib/blather/stanza/iq/si.rb +415 -0
  55. data/lib/blather/stanza/iq/vcard.rb +149 -0
  56. data/lib/blather/stanza/message.rb +428 -0
  57. data/lib/blather/stanza/message/muc_user.rb +119 -0
  58. data/lib/blather/stanza/muc/muc_user_base.rb +54 -0
  59. data/lib/blather/stanza/presence.rb +172 -0
  60. data/lib/blather/stanza/presence/c.rb +100 -0
  61. data/lib/blather/stanza/presence/muc.rb +35 -0
  62. data/lib/blather/stanza/presence/muc_user.rb +147 -0
  63. data/lib/blather/stanza/presence/status.rb +218 -0
  64. data/lib/blather/stanza/presence/subscription.rb +100 -0
  65. data/lib/blather/stanza/pubsub.rb +119 -0
  66. data/lib/blather/stanza/pubsub/affiliations.rb +79 -0
  67. data/lib/blather/stanza/pubsub/create.rb +65 -0
  68. data/lib/blather/stanza/pubsub/errors.rb +18 -0
  69. data/lib/blather/stanza/pubsub/event.rb +139 -0
  70. data/lib/blather/stanza/pubsub/items.rb +103 -0
  71. data/lib/blather/stanza/pubsub/publish.rb +103 -0
  72. data/lib/blather/stanza/pubsub/retract.rb +92 -0
  73. data/lib/blather/stanza/pubsub/subscribe.rb +68 -0
  74. data/lib/blather/stanza/pubsub/subscription.rb +135 -0
  75. data/lib/blather/stanza/pubsub/subscriptions.rb +83 -0
  76. data/lib/blather/stanza/pubsub/unsubscribe.rb +84 -0
  77. data/lib/blather/stanza/pubsub_owner.rb +51 -0
  78. data/lib/blather/stanza/pubsub_owner/delete.rb +52 -0
  79. data/lib/blather/stanza/pubsub_owner/purge.rb +52 -0
  80. data/lib/blather/stanza/x.rb +416 -0
  81. data/lib/blather/stream.rb +266 -0
  82. data/lib/blather/stream/client.rb +32 -0
  83. data/lib/blather/stream/component.rb +39 -0
  84. data/lib/blather/stream/features.rb +70 -0
  85. data/lib/blather/stream/features/register.rb +38 -0
  86. data/lib/blather/stream/features/resource.rb +63 -0
  87. data/lib/blather/stream/features/sasl.rb +190 -0
  88. data/lib/blather/stream/features/session.rb +45 -0
  89. data/lib/blather/stream/features/tls.rb +29 -0
  90. data/lib/blather/stream/parser.rb +102 -0
  91. data/lib/blather/version.rb +3 -0
  92. data/lib/blather/xmpp_node.rb +94 -0
  93. data/spec/blather/client/client_spec.rb +687 -0
  94. data/spec/blather/client/dsl/pubsub_spec.rb +492 -0
  95. data/spec/blather/client/dsl_spec.rb +266 -0
  96. data/spec/blather/errors/sasl_error_spec.rb +33 -0
  97. data/spec/blather/errors/stanza_error_spec.rb +129 -0
  98. data/spec/blather/errors/stream_error_spec.rb +108 -0
  99. data/spec/blather/errors_spec.rb +33 -0
  100. data/spec/blather/file_transfer_spec.rb +135 -0
  101. data/spec/blather/jid_spec.rb +87 -0
  102. data/spec/blather/roster_item_spec.rb +134 -0
  103. data/spec/blather/roster_spec.rb +107 -0
  104. data/spec/blather/stanza/discos/disco_info_spec.rb +247 -0
  105. data/spec/blather/stanza/discos/disco_items_spec.rb +154 -0
  106. data/spec/blather/stanza/iq/command_spec.rb +206 -0
  107. data/spec/blather/stanza/iq/ibb_spec.rb +124 -0
  108. data/spec/blather/stanza/iq/ping_spec.rb +45 -0
  109. data/spec/blather/stanza/iq/query_spec.rb +64 -0
  110. data/spec/blather/stanza/iq/roster_spec.rb +139 -0
  111. data/spec/blather/stanza/iq/s5b_spec.rb +57 -0
  112. data/spec/blather/stanza/iq/si_spec.rb +98 -0
  113. data/spec/blather/stanza/iq/vcard_spec.rb +93 -0
  114. data/spec/blather/stanza/iq_spec.rb +61 -0
  115. data/spec/blather/stanza/message/muc_user_spec.rb +152 -0
  116. data/spec/blather/stanza/message_spec.rb +282 -0
  117. data/spec/blather/stanza/presence/c_spec.rb +56 -0
  118. data/spec/blather/stanza/presence/muc_spec.rb +37 -0
  119. data/spec/blather/stanza/presence/muc_user_spec.rb +83 -0
  120. data/spec/blather/stanza/presence/status_spec.rb +144 -0
  121. data/spec/blather/stanza/presence/subscription_spec.rb +102 -0
  122. data/spec/blather/stanza/presence_spec.rb +125 -0
  123. data/spec/blather/stanza/pubsub/affiliations_spec.rb +57 -0
  124. data/spec/blather/stanza/pubsub/create_spec.rb +56 -0
  125. data/spec/blather/stanza/pubsub/event_spec.rb +98 -0
  126. data/spec/blather/stanza/pubsub/items_spec.rb +79 -0
  127. data/spec/blather/stanza/pubsub/publish_spec.rb +83 -0
  128. data/spec/blather/stanza/pubsub/retract_spec.rb +75 -0
  129. data/spec/blather/stanza/pubsub/subscribe_spec.rb +61 -0
  130. data/spec/blather/stanza/pubsub/subscription_spec.rb +97 -0
  131. data/spec/blather/stanza/pubsub/subscriptions_spec.rb +59 -0
  132. data/spec/blather/stanza/pubsub/unsubscribe_spec.rb +74 -0
  133. data/spec/blather/stanza/pubsub_owner/delete_spec.rb +50 -0
  134. data/spec/blather/stanza/pubsub_owner/purge_spec.rb +50 -0
  135. data/spec/blather/stanza/pubsub_owner_spec.rb +27 -0
  136. data/spec/blather/stanza/pubsub_spec.rb +68 -0
  137. data/spec/blather/stanza/x_spec.rb +231 -0
  138. data/spec/blather/stanza_spec.rb +134 -0
  139. data/spec/blather/stream/client_spec.rb +1090 -0
  140. data/spec/blather/stream/component_spec.rb +108 -0
  141. data/spec/blather/stream/parser_spec.rb +152 -0
  142. data/spec/blather/stream/ssl_spec.rb +32 -0
  143. data/spec/blather/xmpp_node_spec.rb +47 -0
  144. data/spec/blather_spec.rb +34 -0
  145. data/spec/fixtures/pubsub.rb +311 -0
  146. data/spec/spec_helper.rb +17 -0
  147. data/yard/templates/default/class/html/handlers.erb +18 -0
  148. data/yard/templates/default/class/setup.rb +10 -0
  149. data/yard/templates/default/class/text/handlers.erb +1 -0
  150. metadata +459 -0
@@ -0,0 +1,17 @@
1
+ require 'blather'
2
+ require 'mocha'
3
+ require 'countdownlatch'
4
+
5
+ Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each {|f| require f}
6
+
7
+ RSpec.configure do |config|
8
+ config.mock_with :mocha
9
+ config.filter_run :focus => true
10
+ config.run_all_when_everything_filtered = true
11
+
12
+ config.before(:each) { GirlFriday::WorkQueue.immediate! }
13
+ end
14
+
15
+ def parse_stanza(xml)
16
+ Nokogiri::XML.parse xml
17
+ end
@@ -0,0 +1,18 @@
1
+ <!-- <dl class="box">
2
+ <dt class="r0 last">Handler Stack:</dt>
3
+ <dd class="r0 last">
4
+ <span class="inheritName"><%= @handler_stack.first %></span>
5
+ <ul class="fullTree">
6
+ <li><%= @handler_stack.first %></li>
7
+ <% @handler_stack[1..-1].each do |handler| %>
8
+ <li class="next"><%= handler %></li>
9
+ <% end %>
10
+ </ul>
11
+ <a href="#" class="inheritanceTree">show all</a>
12
+ </dd>
13
+ </dl>
14
+ <div class="clear"></div> -->
15
+ <p class="note notetag">
16
+ <strong>Handler Stack:</strong>
17
+ [<%= @handler_stack * ', ' %>]
18
+ </p>
@@ -0,0 +1,10 @@
1
+ def init
2
+ super
3
+ sections.place(:handlers).after(:box_info)
4
+ end
5
+
6
+ def handlers
7
+ @handler_stack = object.inheritance_tree.map { |o| o.tag(:handler).name if (o.respond_to?(:tag) && o.tag(:handler)) }.compact
8
+ return if @handler_stack.empty?
9
+ erb(:handlers)
10
+ end
@@ -0,0 +1 @@
1
+ <%= indent(wrap("Handler Stack: #{@handler_stack * ', '}")) %>]
metadata ADDED
@@ -0,0 +1,459 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tp-blather
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.8.2
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Jeff Smick
9
+ - Ben Langfeld
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2012-10-14 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: eventmachine
17
+ requirement: !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: 0.12.6
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ! '>='
29
+ - !ruby/object:Gem::Version
30
+ version: 0.12.6
31
+ - !ruby/object:Gem::Dependency
32
+ name: nokogiri
33
+ requirement: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ~>
37
+ - !ruby/object:Gem::Version
38
+ version: 1.5.5
39
+ type: :runtime
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ~>
45
+ - !ruby/object:Gem::Version
46
+ version: 1.5.5
47
+ - !ruby/object:Gem::Dependency
48
+ name: niceogiri
49
+ requirement: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '1.0'
55
+ type: :runtime
56
+ prerelease: false
57
+ version_requirements: !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ~>
61
+ - !ruby/object:Gem::Version
62
+ version: '1.0'
63
+ - !ruby/object:Gem::Dependency
64
+ name: activesupport
65
+ requirement: !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ! '>='
69
+ - !ruby/object:Gem::Version
70
+ version: 2.3.11
71
+ type: :runtime
72
+ prerelease: false
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ! '>='
77
+ - !ruby/object:Gem::Version
78
+ version: 2.3.11
79
+ - !ruby/object:Gem::Dependency
80
+ name: girl_friday
81
+ requirement: !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ! '>='
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ type: :runtime
88
+ prerelease: false
89
+ version_requirements: !ruby/object:Gem::Requirement
90
+ none: false
91
+ requirements:
92
+ - - ! '>='
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ - !ruby/object:Gem::Dependency
96
+ name: bundler
97
+ requirement: !ruby/object:Gem::Requirement
98
+ none: false
99
+ requirements:
100
+ - - ~>
101
+ - !ruby/object:Gem::Version
102
+ version: '1.0'
103
+ type: :development
104
+ prerelease: false
105
+ version_requirements: !ruby/object:Gem::Requirement
106
+ none: false
107
+ requirements:
108
+ - - ~>
109
+ - !ruby/object:Gem::Version
110
+ version: '1.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rake
113
+ requirement: !ruby/object:Gem::Requirement
114
+ none: false
115
+ requirements:
116
+ - - ! '>='
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ type: :development
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ none: false
123
+ requirements:
124
+ - - ! '>='
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ - !ruby/object:Gem::Dependency
128
+ name: rspec
129
+ requirement: !ruby/object:Gem::Requirement
130
+ none: false
131
+ requirements:
132
+ - - ~>
133
+ - !ruby/object:Gem::Version
134
+ version: '2.7'
135
+ type: :development
136
+ prerelease: false
137
+ version_requirements: !ruby/object:Gem::Requirement
138
+ none: false
139
+ requirements:
140
+ - - ~>
141
+ - !ruby/object:Gem::Version
142
+ version: '2.7'
143
+ - !ruby/object:Gem::Dependency
144
+ name: mocha
145
+ requirement: !ruby/object:Gem::Requirement
146
+ none: false
147
+ requirements:
148
+ - - ~>
149
+ - !ruby/object:Gem::Version
150
+ version: 0.9.12
151
+ type: :development
152
+ prerelease: false
153
+ version_requirements: !ruby/object:Gem::Requirement
154
+ none: false
155
+ requirements:
156
+ - - ~>
157
+ - !ruby/object:Gem::Version
158
+ version: 0.9.12
159
+ - !ruby/object:Gem::Dependency
160
+ name: guard-rspec
161
+ requirement: !ruby/object:Gem::Requirement
162
+ none: false
163
+ requirements:
164
+ - - ! '>='
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ type: :development
168
+ prerelease: false
169
+ version_requirements: !ruby/object:Gem::Requirement
170
+ none: false
171
+ requirements:
172
+ - - ! '>='
173
+ - !ruby/object:Gem::Version
174
+ version: '0'
175
+ - !ruby/object:Gem::Dependency
176
+ name: yard
177
+ requirement: !ruby/object:Gem::Requirement
178
+ none: false
179
+ requirements:
180
+ - - ~>
181
+ - !ruby/object:Gem::Version
182
+ version: 0.6.1
183
+ type: :development
184
+ prerelease: false
185
+ version_requirements: !ruby/object:Gem::Requirement
186
+ none: false
187
+ requirements:
188
+ - - ~>
189
+ - !ruby/object:Gem::Version
190
+ version: 0.6.1
191
+ - !ruby/object:Gem::Dependency
192
+ name: bluecloth
193
+ requirement: !ruby/object:Gem::Requirement
194
+ none: false
195
+ requirements:
196
+ - - ! '>='
197
+ - !ruby/object:Gem::Version
198
+ version: '0'
199
+ type: :development
200
+ prerelease: false
201
+ version_requirements: !ruby/object:Gem::Requirement
202
+ none: false
203
+ requirements:
204
+ - - ! '>='
205
+ - !ruby/object:Gem::Version
206
+ version: '0'
207
+ - !ruby/object:Gem::Dependency
208
+ name: countdownlatch
209
+ requirement: !ruby/object:Gem::Requirement
210
+ none: false
211
+ requirements:
212
+ - - ! '>='
213
+ - !ruby/object:Gem::Version
214
+ version: '0'
215
+ type: :development
216
+ prerelease: false
217
+ version_requirements: !ruby/object:Gem::Requirement
218
+ none: false
219
+ requirements:
220
+ - - ! '>='
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
223
+ description: An XMPP DSL for Ruby written on top of EventMachine and Nokogiri
224
+ email: blather@adhearsion.com
225
+ executables: []
226
+ extensions: []
227
+ extra_rdoc_files:
228
+ - LICENSE
229
+ - README.md
230
+ files:
231
+ - .autotest
232
+ - .gemtest
233
+ - .gitignore
234
+ - .rspec
235
+ - .travis.yml
236
+ - CHANGELOG.md
237
+ - Gemfile
238
+ - Guardfile
239
+ - LICENSE
240
+ - README.md
241
+ - Rakefile
242
+ - TODO.md
243
+ - blather.gemspec
244
+ - examples/certs/README
245
+ - examples/certs/ca-bundle.crt
246
+ - examples/echo.rb
247
+ - examples/execute.rb
248
+ - examples/ping_pong.rb
249
+ - examples/print_hierarchy.rb
250
+ - examples/rosterprint.rb
251
+ - examples/stream_only.rb
252
+ - examples/trusted_echo.rb
253
+ - examples/xmpp4r/echo.rb
254
+ - lib/blather.rb
255
+ - lib/blather/cert_store.rb
256
+ - lib/blather/client.rb
257
+ - lib/blather/client/client.rb
258
+ - lib/blather/client/dsl.rb
259
+ - lib/blather/client/dsl/pubsub.rb
260
+ - lib/blather/core_ext/eventmachine.rb
261
+ - lib/blather/core_ext/ipaddr.rb
262
+ - lib/blather/errors.rb
263
+ - lib/blather/errors/sasl_error.rb
264
+ - lib/blather/errors/stanza_error.rb
265
+ - lib/blather/errors/stream_error.rb
266
+ - lib/blather/file_transfer.rb
267
+ - lib/blather/file_transfer/ibb.rb
268
+ - lib/blather/file_transfer/s5b.rb
269
+ - lib/blather/jid.rb
270
+ - lib/blather/roster.rb
271
+ - lib/blather/roster_item.rb
272
+ - lib/blather/stanza.rb
273
+ - lib/blather/stanza/disco.rb
274
+ - lib/blather/stanza/disco/capabilities.rb
275
+ - lib/blather/stanza/disco/disco_info.rb
276
+ - lib/blather/stanza/disco/disco_items.rb
277
+ - lib/blather/stanza/iq.rb
278
+ - lib/blather/stanza/iq/command.rb
279
+ - lib/blather/stanza/iq/ibb.rb
280
+ - lib/blather/stanza/iq/ping.rb
281
+ - lib/blather/stanza/iq/query.rb
282
+ - lib/blather/stanza/iq/roster.rb
283
+ - lib/blather/stanza/iq/s5b.rb
284
+ - lib/blather/stanza/iq/si.rb
285
+ - lib/blather/stanza/iq/vcard.rb
286
+ - lib/blather/stanza/message.rb
287
+ - lib/blather/stanza/message/muc_user.rb
288
+ - lib/blather/stanza/muc/muc_user_base.rb
289
+ - lib/blather/stanza/presence.rb
290
+ - lib/blather/stanza/presence/c.rb
291
+ - lib/blather/stanza/presence/muc.rb
292
+ - lib/blather/stanza/presence/muc_user.rb
293
+ - lib/blather/stanza/presence/status.rb
294
+ - lib/blather/stanza/presence/subscription.rb
295
+ - lib/blather/stanza/pubsub.rb
296
+ - lib/blather/stanza/pubsub/affiliations.rb
297
+ - lib/blather/stanza/pubsub/create.rb
298
+ - lib/blather/stanza/pubsub/errors.rb
299
+ - lib/blather/stanza/pubsub/event.rb
300
+ - lib/blather/stanza/pubsub/items.rb
301
+ - lib/blather/stanza/pubsub/publish.rb
302
+ - lib/blather/stanza/pubsub/retract.rb
303
+ - lib/blather/stanza/pubsub/subscribe.rb
304
+ - lib/blather/stanza/pubsub/subscription.rb
305
+ - lib/blather/stanza/pubsub/subscriptions.rb
306
+ - lib/blather/stanza/pubsub/unsubscribe.rb
307
+ - lib/blather/stanza/pubsub_owner.rb
308
+ - lib/blather/stanza/pubsub_owner/delete.rb
309
+ - lib/blather/stanza/pubsub_owner/purge.rb
310
+ - lib/blather/stanza/x.rb
311
+ - lib/blather/stream.rb
312
+ - lib/blather/stream/client.rb
313
+ - lib/blather/stream/component.rb
314
+ - lib/blather/stream/features.rb
315
+ - lib/blather/stream/features/register.rb
316
+ - lib/blather/stream/features/resource.rb
317
+ - lib/blather/stream/features/sasl.rb
318
+ - lib/blather/stream/features/session.rb
319
+ - lib/blather/stream/features/tls.rb
320
+ - lib/blather/stream/parser.rb
321
+ - lib/blather/version.rb
322
+ - lib/blather/xmpp_node.rb
323
+ - spec/blather/client/client_spec.rb
324
+ - spec/blather/client/dsl/pubsub_spec.rb
325
+ - spec/blather/client/dsl_spec.rb
326
+ - spec/blather/errors/sasl_error_spec.rb
327
+ - spec/blather/errors/stanza_error_spec.rb
328
+ - spec/blather/errors/stream_error_spec.rb
329
+ - spec/blather/errors_spec.rb
330
+ - spec/blather/file_transfer_spec.rb
331
+ - spec/blather/jid_spec.rb
332
+ - spec/blather/roster_item_spec.rb
333
+ - spec/blather/roster_spec.rb
334
+ - spec/blather/stanza/discos/disco_info_spec.rb
335
+ - spec/blather/stanza/discos/disco_items_spec.rb
336
+ - spec/blather/stanza/iq/command_spec.rb
337
+ - spec/blather/stanza/iq/ibb_spec.rb
338
+ - spec/blather/stanza/iq/ping_spec.rb
339
+ - spec/blather/stanza/iq/query_spec.rb
340
+ - spec/blather/stanza/iq/roster_spec.rb
341
+ - spec/blather/stanza/iq/s5b_spec.rb
342
+ - spec/blather/stanza/iq/si_spec.rb
343
+ - spec/blather/stanza/iq/vcard_spec.rb
344
+ - spec/blather/stanza/iq_spec.rb
345
+ - spec/blather/stanza/message/muc_user_spec.rb
346
+ - spec/blather/stanza/message_spec.rb
347
+ - spec/blather/stanza/presence/c_spec.rb
348
+ - spec/blather/stanza/presence/muc_spec.rb
349
+ - spec/blather/stanza/presence/muc_user_spec.rb
350
+ - spec/blather/stanza/presence/status_spec.rb
351
+ - spec/blather/stanza/presence/subscription_spec.rb
352
+ - spec/blather/stanza/presence_spec.rb
353
+ - spec/blather/stanza/pubsub/affiliations_spec.rb
354
+ - spec/blather/stanza/pubsub/create_spec.rb
355
+ - spec/blather/stanza/pubsub/event_spec.rb
356
+ - spec/blather/stanza/pubsub/items_spec.rb
357
+ - spec/blather/stanza/pubsub/publish_spec.rb
358
+ - spec/blather/stanza/pubsub/retract_spec.rb
359
+ - spec/blather/stanza/pubsub/subscribe_spec.rb
360
+ - spec/blather/stanza/pubsub/subscription_spec.rb
361
+ - spec/blather/stanza/pubsub/subscriptions_spec.rb
362
+ - spec/blather/stanza/pubsub/unsubscribe_spec.rb
363
+ - spec/blather/stanza/pubsub_owner/delete_spec.rb
364
+ - spec/blather/stanza/pubsub_owner/purge_spec.rb
365
+ - spec/blather/stanza/pubsub_owner_spec.rb
366
+ - spec/blather/stanza/pubsub_spec.rb
367
+ - spec/blather/stanza/x_spec.rb
368
+ - spec/blather/stanza_spec.rb
369
+ - spec/blather/stream/client_spec.rb
370
+ - spec/blather/stream/component_spec.rb
371
+ - spec/blather/stream/parser_spec.rb
372
+ - spec/blather/stream/ssl_spec.rb
373
+ - spec/blather/xmpp_node_spec.rb
374
+ - spec/blather_spec.rb
375
+ - spec/fixtures/pubsub.rb
376
+ - spec/spec_helper.rb
377
+ - yard/templates/default/class/html/handlers.erb
378
+ - yard/templates/default/class/setup.rb
379
+ - yard/templates/default/class/text/handlers.erb
380
+ homepage: http://adhearsion.com/blather
381
+ licenses: []
382
+ post_install_message:
383
+ rdoc_options:
384
+ - --charset=UTF-8
385
+ require_paths:
386
+ - lib
387
+ required_ruby_version: !ruby/object:Gem::Requirement
388
+ none: false
389
+ requirements:
390
+ - - ! '>='
391
+ - !ruby/object:Gem::Version
392
+ version: '0'
393
+ required_rubygems_version: !ruby/object:Gem::Requirement
394
+ none: false
395
+ requirements:
396
+ - - ! '>='
397
+ - !ruby/object:Gem::Version
398
+ version: '0'
399
+ requirements: []
400
+ rubyforge_project:
401
+ rubygems_version: 1.8.24
402
+ signing_key:
403
+ specification_version: 3
404
+ summary: Simpler XMPP built for speed
405
+ test_files:
406
+ - spec/blather/client/client_spec.rb
407
+ - spec/blather/client/dsl/pubsub_spec.rb
408
+ - spec/blather/client/dsl_spec.rb
409
+ - spec/blather/errors/sasl_error_spec.rb
410
+ - spec/blather/errors/stanza_error_spec.rb
411
+ - spec/blather/errors/stream_error_spec.rb
412
+ - spec/blather/errors_spec.rb
413
+ - spec/blather/file_transfer_spec.rb
414
+ - spec/blather/jid_spec.rb
415
+ - spec/blather/roster_item_spec.rb
416
+ - spec/blather/roster_spec.rb
417
+ - spec/blather/stanza/discos/disco_info_spec.rb
418
+ - spec/blather/stanza/discos/disco_items_spec.rb
419
+ - spec/blather/stanza/iq/command_spec.rb
420
+ - spec/blather/stanza/iq/ibb_spec.rb
421
+ - spec/blather/stanza/iq/ping_spec.rb
422
+ - spec/blather/stanza/iq/query_spec.rb
423
+ - spec/blather/stanza/iq/roster_spec.rb
424
+ - spec/blather/stanza/iq/s5b_spec.rb
425
+ - spec/blather/stanza/iq/si_spec.rb
426
+ - spec/blather/stanza/iq/vcard_spec.rb
427
+ - spec/blather/stanza/iq_spec.rb
428
+ - spec/blather/stanza/message/muc_user_spec.rb
429
+ - spec/blather/stanza/message_spec.rb
430
+ - spec/blather/stanza/presence/c_spec.rb
431
+ - spec/blather/stanza/presence/muc_spec.rb
432
+ - spec/blather/stanza/presence/muc_user_spec.rb
433
+ - spec/blather/stanza/presence/status_spec.rb
434
+ - spec/blather/stanza/presence/subscription_spec.rb
435
+ - spec/blather/stanza/presence_spec.rb
436
+ - spec/blather/stanza/pubsub/affiliations_spec.rb
437
+ - spec/blather/stanza/pubsub/create_spec.rb
438
+ - spec/blather/stanza/pubsub/event_spec.rb
439
+ - spec/blather/stanza/pubsub/items_spec.rb
440
+ - spec/blather/stanza/pubsub/publish_spec.rb
441
+ - spec/blather/stanza/pubsub/retract_spec.rb
442
+ - spec/blather/stanza/pubsub/subscribe_spec.rb
443
+ - spec/blather/stanza/pubsub/subscription_spec.rb
444
+ - spec/blather/stanza/pubsub/subscriptions_spec.rb
445
+ - spec/blather/stanza/pubsub/unsubscribe_spec.rb
446
+ - spec/blather/stanza/pubsub_owner/delete_spec.rb
447
+ - spec/blather/stanza/pubsub_owner/purge_spec.rb
448
+ - spec/blather/stanza/pubsub_owner_spec.rb
449
+ - spec/blather/stanza/pubsub_spec.rb
450
+ - spec/blather/stanza/x_spec.rb
451
+ - spec/blather/stanza_spec.rb
452
+ - spec/blather/stream/client_spec.rb
453
+ - spec/blather/stream/component_spec.rb
454
+ - spec/blather/stream/parser_spec.rb
455
+ - spec/blather/stream/ssl_spec.rb
456
+ - spec/blather/xmpp_node_spec.rb
457
+ - spec/blather_spec.rb
458
+ - spec/fixtures/pubsub.rb
459
+ - spec/spec_helper.rb