lygneo-vines 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (174) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +3 -0
  3. data/LICENSE +19 -0
  4. data/README.md +7 -0
  5. data/Rakefile +23 -0
  6. data/bin/vines +4 -0
  7. data/conf/certs/README +39 -0
  8. data/conf/certs/ca-bundle.crt +3895 -0
  9. data/conf/config.rb +42 -0
  10. data/lib/vines/cli.rb +132 -0
  11. data/lib/vines/cluster/connection.rb +26 -0
  12. data/lib/vines/cluster/publisher.rb +55 -0
  13. data/lib/vines/cluster/pubsub.rb +92 -0
  14. data/lib/vines/cluster/sessions.rb +125 -0
  15. data/lib/vines/cluster/subscriber.rb +108 -0
  16. data/lib/vines/cluster.rb +246 -0
  17. data/lib/vines/command/bcrypt.rb +12 -0
  18. data/lib/vines/command/cert.rb +50 -0
  19. data/lib/vines/command/init.rb +68 -0
  20. data/lib/vines/command/ldap.rb +38 -0
  21. data/lib/vines/command/restart.rb +12 -0
  22. data/lib/vines/command/schema.rb +24 -0
  23. data/lib/vines/command/start.rb +28 -0
  24. data/lib/vines/command/stop.rb +18 -0
  25. data/lib/vines/config/host.rb +125 -0
  26. data/lib/vines/config/port.rb +132 -0
  27. data/lib/vines/config/pubsub.rb +108 -0
  28. data/lib/vines/config.rb +223 -0
  29. data/lib/vines/daemon.rb +78 -0
  30. data/lib/vines/error.rb +150 -0
  31. data/lib/vines/follower.rb +111 -0
  32. data/lib/vines/jid.rb +95 -0
  33. data/lib/vines/kit.rb +23 -0
  34. data/lib/vines/log.rb +24 -0
  35. data/lib/vines/router.rb +179 -0
  36. data/lib/vines/stanza/iq/auth.rb +18 -0
  37. data/lib/vines/stanza/iq/disco_info.rb +45 -0
  38. data/lib/vines/stanza/iq/disco_items.rb +29 -0
  39. data/lib/vines/stanza/iq/error.rb +16 -0
  40. data/lib/vines/stanza/iq/ping.rb +16 -0
  41. data/lib/vines/stanza/iq/private_storage.rb +83 -0
  42. data/lib/vines/stanza/iq/query.rb +10 -0
  43. data/lib/vines/stanza/iq/result.rb +16 -0
  44. data/lib/vines/stanza/iq/roster.rb +140 -0
  45. data/lib/vines/stanza/iq/session.rb +17 -0
  46. data/lib/vines/stanza/iq/vcard.rb +56 -0
  47. data/lib/vines/stanza/iq/version.rb +25 -0
  48. data/lib/vines/stanza/iq.rb +48 -0
  49. data/lib/vines/stanza/message.rb +40 -0
  50. data/lib/vines/stanza/presence/error.rb +23 -0
  51. data/lib/vines/stanza/presence/probe.rb +37 -0
  52. data/lib/vines/stanza/presence/subscribe.rb +42 -0
  53. data/lib/vines/stanza/presence/subscribed.rb +51 -0
  54. data/lib/vines/stanza/presence/unavailable.rb +15 -0
  55. data/lib/vines/stanza/presence/unsubscribe.rb +38 -0
  56. data/lib/vines/stanza/presence/unsubscribed.rb +38 -0
  57. data/lib/vines/stanza/presence.rb +141 -0
  58. data/lib/vines/stanza/pubsub/create.rb +39 -0
  59. data/lib/vines/stanza/pubsub/delete.rb +41 -0
  60. data/lib/vines/stanza/pubsub/publish.rb +66 -0
  61. data/lib/vines/stanza/pubsub/subscribe.rb +44 -0
  62. data/lib/vines/stanza/pubsub/unsubscribe.rb +30 -0
  63. data/lib/vines/stanza/pubsub.rb +22 -0
  64. data/lib/vines/stanza.rb +175 -0
  65. data/lib/vines/storage/ldap.rb +71 -0
  66. data/lib/vines/storage/local.rb +139 -0
  67. data/lib/vines/storage/null.rb +39 -0
  68. data/lib/vines/storage/sql.rb +138 -0
  69. data/lib/vines/storage.rb +239 -0
  70. data/lib/vines/store.rb +110 -0
  71. data/lib/vines/stream/client/auth.rb +74 -0
  72. data/lib/vines/stream/client/auth_restart.rb +29 -0
  73. data/lib/vines/stream/client/bind.rb +72 -0
  74. data/lib/vines/stream/client/bind_restart.rb +24 -0
  75. data/lib/vines/stream/client/closed.rb +13 -0
  76. data/lib/vines/stream/client/ready.rb +17 -0
  77. data/lib/vines/stream/client/session.rb +210 -0
  78. data/lib/vines/stream/client/start.rb +27 -0
  79. data/lib/vines/stream/client/tls.rb +38 -0
  80. data/lib/vines/stream/client.rb +84 -0
  81. data/lib/vines/stream/component/handshake.rb +26 -0
  82. data/lib/vines/stream/component/ready.rb +23 -0
  83. data/lib/vines/stream/component/start.rb +19 -0
  84. data/lib/vines/stream/component.rb +58 -0
  85. data/lib/vines/stream/http/auth.rb +22 -0
  86. data/lib/vines/stream/http/bind.rb +32 -0
  87. data/lib/vines/stream/http/bind_restart.rb +37 -0
  88. data/lib/vines/stream/http/ready.rb +29 -0
  89. data/lib/vines/stream/http/request.rb +172 -0
  90. data/lib/vines/stream/http/session.rb +120 -0
  91. data/lib/vines/stream/http/sessions.rb +65 -0
  92. data/lib/vines/stream/http/start.rb +23 -0
  93. data/lib/vines/stream/http.rb +157 -0
  94. data/lib/vines/stream/parser.rb +79 -0
  95. data/lib/vines/stream/sasl.rb +128 -0
  96. data/lib/vines/stream/server/auth.rb +13 -0
  97. data/lib/vines/stream/server/auth_restart.rb +13 -0
  98. data/lib/vines/stream/server/final_restart.rb +21 -0
  99. data/lib/vines/stream/server/outbound/auth.rb +31 -0
  100. data/lib/vines/stream/server/outbound/auth_restart.rb +20 -0
  101. data/lib/vines/stream/server/outbound/auth_result.rb +32 -0
  102. data/lib/vines/stream/server/outbound/final_features.rb +28 -0
  103. data/lib/vines/stream/server/outbound/final_restart.rb +20 -0
  104. data/lib/vines/stream/server/outbound/start.rb +20 -0
  105. data/lib/vines/stream/server/outbound/tls.rb +30 -0
  106. data/lib/vines/stream/server/outbound/tls_result.rb +34 -0
  107. data/lib/vines/stream/server/ready.rb +24 -0
  108. data/lib/vines/stream/server/start.rb +13 -0
  109. data/lib/vines/stream/server/tls.rb +13 -0
  110. data/lib/vines/stream/server.rb +150 -0
  111. data/lib/vines/stream/state.rb +60 -0
  112. data/lib/vines/stream.rb +247 -0
  113. data/lib/vines/token_bucket.rb +55 -0
  114. data/lib/vines/user.rb +123 -0
  115. data/lib/vines/version.rb +6 -0
  116. data/lib/vines/xmpp_server.rb +25 -0
  117. data/lib/vines.rb +203 -0
  118. data/test/cluster/publisher_test.rb +57 -0
  119. data/test/cluster/sessions_test.rb +47 -0
  120. data/test/cluster/subscriber_test.rb +109 -0
  121. data/test/config/host_test.rb +369 -0
  122. data/test/config/pubsub_test.rb +187 -0
  123. data/test/config_test.rb +732 -0
  124. data/test/error_test.rb +58 -0
  125. data/test/ext/nokogiri.rb +14 -0
  126. data/test/follower_test.rb +102 -0
  127. data/test/jid_test.rb +147 -0
  128. data/test/kit_test.rb +31 -0
  129. data/test/router_test.rb +243 -0
  130. data/test/stanza/iq/disco_info_test.rb +78 -0
  131. data/test/stanza/iq/disco_items_test.rb +49 -0
  132. data/test/stanza/iq/private_storage_test.rb +184 -0
  133. data/test/stanza/iq/roster_test.rb +229 -0
  134. data/test/stanza/iq/session_test.rb +25 -0
  135. data/test/stanza/iq/vcard_test.rb +146 -0
  136. data/test/stanza/iq/version_test.rb +64 -0
  137. data/test/stanza/iq_test.rb +70 -0
  138. data/test/stanza/message_test.rb +126 -0
  139. data/test/stanza/presence/probe_test.rb +50 -0
  140. data/test/stanza/presence/subscribe_test.rb +83 -0
  141. data/test/stanza/pubsub/create_test.rb +116 -0
  142. data/test/stanza/pubsub/delete_test.rb +169 -0
  143. data/test/stanza/pubsub/publish_test.rb +309 -0
  144. data/test/stanza/pubsub/subscribe_test.rb +205 -0
  145. data/test/stanza/pubsub/unsubscribe_test.rb +148 -0
  146. data/test/stanza_test.rb +85 -0
  147. data/test/storage/ldap_test.rb +201 -0
  148. data/test/storage/local_test.rb +59 -0
  149. data/test/storage/mock_redis.rb +97 -0
  150. data/test/storage/null_test.rb +29 -0
  151. data/test/storage/storage_tests.rb +182 -0
  152. data/test/storage_test.rb +85 -0
  153. data/test/store_test.rb +130 -0
  154. data/test/stream/client/auth_test.rb +137 -0
  155. data/test/stream/client/ready_test.rb +47 -0
  156. data/test/stream/client/session_test.rb +27 -0
  157. data/test/stream/component/handshake_test.rb +52 -0
  158. data/test/stream/component/ready_test.rb +103 -0
  159. data/test/stream/component/start_test.rb +39 -0
  160. data/test/stream/http/auth_test.rb +70 -0
  161. data/test/stream/http/ready_test.rb +86 -0
  162. data/test/stream/http/request_test.rb +209 -0
  163. data/test/stream/http/sessions_test.rb +49 -0
  164. data/test/stream/http/start_test.rb +50 -0
  165. data/test/stream/parser_test.rb +122 -0
  166. data/test/stream/sasl_test.rb +195 -0
  167. data/test/stream/server/auth_test.rb +61 -0
  168. data/test/stream/server/outbound/auth_test.rb +75 -0
  169. data/test/stream/server/ready_test.rb +98 -0
  170. data/test/test_helper.rb +42 -0
  171. data/test/token_bucket_test.rb +44 -0
  172. data/test/user_test.rb +96 -0
  173. data/vines.gemspec +30 -0
  174. metadata +387 -0
metadata ADDED
@@ -0,0 +1,387 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lygneo-vines
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - David Graham
8
+ - Lukas Matt
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2015-03-01 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bcrypt
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '3.1'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '3.1'
28
+ - !ruby/object:Gem::Dependency
29
+ name: em-hiredis
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: 0.1.1
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: 0.1.1
42
+ - !ruby/object:Gem::Dependency
43
+ name: eventmachine
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: 1.0.3
49
+ type: :runtime
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: 1.0.3
56
+ - !ruby/object:Gem::Dependency
57
+ name: http_parser.rb
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: 0.5.3
63
+ type: :runtime
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: 0.5.3
70
+ - !ruby/object:Gem::Dependency
71
+ name: net-ldap
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: 0.3.1
77
+ type: :runtime
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: 0.3.1
84
+ - !ruby/object:Gem::Dependency
85
+ name: nokogiri
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: 1.5.10
91
+ type: :runtime
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: 1.5.10
98
+ - !ruby/object:Gem::Dependency
99
+ name: minitest
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: '5.3'
105
+ type: :development
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - "~>"
110
+ - !ruby/object:Gem::Version
111
+ version: '5.3'
112
+ - !ruby/object:Gem::Dependency
113
+ name: rake
114
+ requirement: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - "~>"
117
+ - !ruby/object:Gem::Version
118
+ version: '10.3'
119
+ type: :development
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - "~>"
124
+ - !ruby/object:Gem::Version
125
+ version: '10.3'
126
+ description: Lygneo-vines is a Vines fork build for lygneo integration. DO NOT use
127
+ it unless you know what you are doing!
128
+ email:
129
+ - david@negativecode.com
130
+ - lukas@zauberstuhl.de
131
+ executables:
132
+ - vines
133
+ extensions: []
134
+ extra_rdoc_files: []
135
+ files:
136
+ - Gemfile
137
+ - LICENSE
138
+ - README.md
139
+ - Rakefile
140
+ - bin/vines
141
+ - conf/certs/README
142
+ - conf/certs/ca-bundle.crt
143
+ - conf/config.rb
144
+ - lib/vines.rb
145
+ - lib/vines/cli.rb
146
+ - lib/vines/cluster.rb
147
+ - lib/vines/cluster/connection.rb
148
+ - lib/vines/cluster/publisher.rb
149
+ - lib/vines/cluster/pubsub.rb
150
+ - lib/vines/cluster/sessions.rb
151
+ - lib/vines/cluster/subscriber.rb
152
+ - lib/vines/command/bcrypt.rb
153
+ - lib/vines/command/cert.rb
154
+ - lib/vines/command/init.rb
155
+ - lib/vines/command/ldap.rb
156
+ - lib/vines/command/restart.rb
157
+ - lib/vines/command/schema.rb
158
+ - lib/vines/command/start.rb
159
+ - lib/vines/command/stop.rb
160
+ - lib/vines/config.rb
161
+ - lib/vines/config/host.rb
162
+ - lib/vines/config/port.rb
163
+ - lib/vines/config/pubsub.rb
164
+ - lib/vines/daemon.rb
165
+ - lib/vines/error.rb
166
+ - lib/vines/follower.rb
167
+ - lib/vines/jid.rb
168
+ - lib/vines/kit.rb
169
+ - lib/vines/log.rb
170
+ - lib/vines/router.rb
171
+ - lib/vines/stanza.rb
172
+ - lib/vines/stanza/iq.rb
173
+ - lib/vines/stanza/iq/auth.rb
174
+ - lib/vines/stanza/iq/disco_info.rb
175
+ - lib/vines/stanza/iq/disco_items.rb
176
+ - lib/vines/stanza/iq/error.rb
177
+ - lib/vines/stanza/iq/ping.rb
178
+ - lib/vines/stanza/iq/private_storage.rb
179
+ - lib/vines/stanza/iq/query.rb
180
+ - lib/vines/stanza/iq/result.rb
181
+ - lib/vines/stanza/iq/roster.rb
182
+ - lib/vines/stanza/iq/session.rb
183
+ - lib/vines/stanza/iq/vcard.rb
184
+ - lib/vines/stanza/iq/version.rb
185
+ - lib/vines/stanza/message.rb
186
+ - lib/vines/stanza/presence.rb
187
+ - lib/vines/stanza/presence/error.rb
188
+ - lib/vines/stanza/presence/probe.rb
189
+ - lib/vines/stanza/presence/subscribe.rb
190
+ - lib/vines/stanza/presence/subscribed.rb
191
+ - lib/vines/stanza/presence/unavailable.rb
192
+ - lib/vines/stanza/presence/unsubscribe.rb
193
+ - lib/vines/stanza/presence/unsubscribed.rb
194
+ - lib/vines/stanza/pubsub.rb
195
+ - lib/vines/stanza/pubsub/create.rb
196
+ - lib/vines/stanza/pubsub/delete.rb
197
+ - lib/vines/stanza/pubsub/publish.rb
198
+ - lib/vines/stanza/pubsub/subscribe.rb
199
+ - lib/vines/stanza/pubsub/unsubscribe.rb
200
+ - lib/vines/storage.rb
201
+ - lib/vines/storage/ldap.rb
202
+ - lib/vines/storage/local.rb
203
+ - lib/vines/storage/null.rb
204
+ - lib/vines/storage/sql.rb
205
+ - lib/vines/store.rb
206
+ - lib/vines/stream.rb
207
+ - lib/vines/stream/client.rb
208
+ - lib/vines/stream/client/auth.rb
209
+ - lib/vines/stream/client/auth_restart.rb
210
+ - lib/vines/stream/client/bind.rb
211
+ - lib/vines/stream/client/bind_restart.rb
212
+ - lib/vines/stream/client/closed.rb
213
+ - lib/vines/stream/client/ready.rb
214
+ - lib/vines/stream/client/session.rb
215
+ - lib/vines/stream/client/start.rb
216
+ - lib/vines/stream/client/tls.rb
217
+ - lib/vines/stream/component.rb
218
+ - lib/vines/stream/component/handshake.rb
219
+ - lib/vines/stream/component/ready.rb
220
+ - lib/vines/stream/component/start.rb
221
+ - lib/vines/stream/http.rb
222
+ - lib/vines/stream/http/auth.rb
223
+ - lib/vines/stream/http/bind.rb
224
+ - lib/vines/stream/http/bind_restart.rb
225
+ - lib/vines/stream/http/ready.rb
226
+ - lib/vines/stream/http/request.rb
227
+ - lib/vines/stream/http/session.rb
228
+ - lib/vines/stream/http/sessions.rb
229
+ - lib/vines/stream/http/start.rb
230
+ - lib/vines/stream/parser.rb
231
+ - lib/vines/stream/sasl.rb
232
+ - lib/vines/stream/server.rb
233
+ - lib/vines/stream/server/auth.rb
234
+ - lib/vines/stream/server/auth_restart.rb
235
+ - lib/vines/stream/server/final_restart.rb
236
+ - lib/vines/stream/server/outbound/auth.rb
237
+ - lib/vines/stream/server/outbound/auth_restart.rb
238
+ - lib/vines/stream/server/outbound/auth_result.rb
239
+ - lib/vines/stream/server/outbound/final_features.rb
240
+ - lib/vines/stream/server/outbound/final_restart.rb
241
+ - lib/vines/stream/server/outbound/start.rb
242
+ - lib/vines/stream/server/outbound/tls.rb
243
+ - lib/vines/stream/server/outbound/tls_result.rb
244
+ - lib/vines/stream/server/ready.rb
245
+ - lib/vines/stream/server/start.rb
246
+ - lib/vines/stream/server/tls.rb
247
+ - lib/vines/stream/state.rb
248
+ - lib/vines/token_bucket.rb
249
+ - lib/vines/user.rb
250
+ - lib/vines/version.rb
251
+ - lib/vines/xmpp_server.rb
252
+ - test/cluster/publisher_test.rb
253
+ - test/cluster/sessions_test.rb
254
+ - test/cluster/subscriber_test.rb
255
+ - test/config/host_test.rb
256
+ - test/config/pubsub_test.rb
257
+ - test/config_test.rb
258
+ - test/error_test.rb
259
+ - test/ext/nokogiri.rb
260
+ - test/follower_test.rb
261
+ - test/jid_test.rb
262
+ - test/kit_test.rb
263
+ - test/router_test.rb
264
+ - test/stanza/iq/disco_info_test.rb
265
+ - test/stanza/iq/disco_items_test.rb
266
+ - test/stanza/iq/private_storage_test.rb
267
+ - test/stanza/iq/roster_test.rb
268
+ - test/stanza/iq/session_test.rb
269
+ - test/stanza/iq/vcard_test.rb
270
+ - test/stanza/iq/version_test.rb
271
+ - test/stanza/iq_test.rb
272
+ - test/stanza/message_test.rb
273
+ - test/stanza/presence/probe_test.rb
274
+ - test/stanza/presence/subscribe_test.rb
275
+ - test/stanza/pubsub/create_test.rb
276
+ - test/stanza/pubsub/delete_test.rb
277
+ - test/stanza/pubsub/publish_test.rb
278
+ - test/stanza/pubsub/subscribe_test.rb
279
+ - test/stanza/pubsub/unsubscribe_test.rb
280
+ - test/stanza_test.rb
281
+ - test/storage/ldap_test.rb
282
+ - test/storage/local_test.rb
283
+ - test/storage/mock_redis.rb
284
+ - test/storage/null_test.rb
285
+ - test/storage/storage_tests.rb
286
+ - test/storage_test.rb
287
+ - test/store_test.rb
288
+ - test/stream/client/auth_test.rb
289
+ - test/stream/client/ready_test.rb
290
+ - test/stream/client/session_test.rb
291
+ - test/stream/component/handshake_test.rb
292
+ - test/stream/component/ready_test.rb
293
+ - test/stream/component/start_test.rb
294
+ - test/stream/http/auth_test.rb
295
+ - test/stream/http/ready_test.rb
296
+ - test/stream/http/request_test.rb
297
+ - test/stream/http/sessions_test.rb
298
+ - test/stream/http/start_test.rb
299
+ - test/stream/parser_test.rb
300
+ - test/stream/sasl_test.rb
301
+ - test/stream/server/auth_test.rb
302
+ - test/stream/server/outbound/auth_test.rb
303
+ - test/stream/server/ready_test.rb
304
+ - test/test_helper.rb
305
+ - test/token_bucket_test.rb
306
+ - test/user_test.rb
307
+ - vines.gemspec
308
+ homepage: https://lygneofoundation.org
309
+ licenses:
310
+ - MIT
311
+ metadata: {}
312
+ post_install_message:
313
+ rdoc_options: []
314
+ require_paths:
315
+ - lib
316
+ required_ruby_version: !ruby/object:Gem::Requirement
317
+ requirements:
318
+ - - ">="
319
+ - !ruby/object:Gem::Version
320
+ version: 1.9.3
321
+ required_rubygems_version: !ruby/object:Gem::Requirement
322
+ requirements:
323
+ - - ">="
324
+ - !ruby/object:Gem::Version
325
+ version: '0'
326
+ requirements: []
327
+ rubyforge_project:
328
+ rubygems_version: 2.4.3
329
+ signing_key:
330
+ specification_version: 4
331
+ summary: Lygneo-vines is a Vines fork build for lygneo integration.
332
+ test_files:
333
+ - test/cluster/publisher_test.rb
334
+ - test/cluster/sessions_test.rb
335
+ - test/cluster/subscriber_test.rb
336
+ - test/config/host_test.rb
337
+ - test/config/pubsub_test.rb
338
+ - test/config_test.rb
339
+ - test/error_test.rb
340
+ - test/ext/nokogiri.rb
341
+ - test/follower_test.rb
342
+ - test/jid_test.rb
343
+ - test/kit_test.rb
344
+ - test/router_test.rb
345
+ - test/stanza/iq/disco_info_test.rb
346
+ - test/stanza/iq/disco_items_test.rb
347
+ - test/stanza/iq/private_storage_test.rb
348
+ - test/stanza/iq/roster_test.rb
349
+ - test/stanza/iq/session_test.rb
350
+ - test/stanza/iq/vcard_test.rb
351
+ - test/stanza/iq/version_test.rb
352
+ - test/stanza/iq_test.rb
353
+ - test/stanza/message_test.rb
354
+ - test/stanza/presence/probe_test.rb
355
+ - test/stanza/presence/subscribe_test.rb
356
+ - test/stanza/pubsub/create_test.rb
357
+ - test/stanza/pubsub/delete_test.rb
358
+ - test/stanza/pubsub/publish_test.rb
359
+ - test/stanza/pubsub/subscribe_test.rb
360
+ - test/stanza/pubsub/unsubscribe_test.rb
361
+ - test/stanza_test.rb
362
+ - test/storage/ldap_test.rb
363
+ - test/storage/local_test.rb
364
+ - test/storage/mock_redis.rb
365
+ - test/storage/null_test.rb
366
+ - test/storage/storage_tests.rb
367
+ - test/storage_test.rb
368
+ - test/store_test.rb
369
+ - test/stream/client/auth_test.rb
370
+ - test/stream/client/ready_test.rb
371
+ - test/stream/client/session_test.rb
372
+ - test/stream/component/handshake_test.rb
373
+ - test/stream/component/ready_test.rb
374
+ - test/stream/component/start_test.rb
375
+ - test/stream/http/auth_test.rb
376
+ - test/stream/http/ready_test.rb
377
+ - test/stream/http/request_test.rb
378
+ - test/stream/http/sessions_test.rb
379
+ - test/stream/http/start_test.rb
380
+ - test/stream/parser_test.rb
381
+ - test/stream/sasl_test.rb
382
+ - test/stream/server/auth_test.rb
383
+ - test/stream/server/outbound/auth_test.rb
384
+ - test/stream/server/ready_test.rb
385
+ - test/test_helper.rb
386
+ - test/token_bucket_test.rb
387
+ - test/user_test.rb