diaspora-vines 0.1.2
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.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/LICENSE +19 -0
- data/README.md +7 -0
- data/Rakefile +23 -0
- data/bin/vines +4 -0
- data/conf/certs/README +39 -0
- data/conf/certs/ca-bundle.crt +3895 -0
- data/conf/config.rb +42 -0
- data/lib/vines/cli.rb +132 -0
- data/lib/vines/cluster/connection.rb +26 -0
- data/lib/vines/cluster/publisher.rb +55 -0
- data/lib/vines/cluster/pubsub.rb +92 -0
- data/lib/vines/cluster/sessions.rb +125 -0
- data/lib/vines/cluster/subscriber.rb +108 -0
- data/lib/vines/cluster.rb +246 -0
- data/lib/vines/command/bcrypt.rb +12 -0
- data/lib/vines/command/cert.rb +50 -0
- data/lib/vines/command/init.rb +68 -0
- data/lib/vines/command/ldap.rb +38 -0
- data/lib/vines/command/restart.rb +12 -0
- data/lib/vines/command/schema.rb +24 -0
- data/lib/vines/command/start.rb +28 -0
- data/lib/vines/command/stop.rb +18 -0
- data/lib/vines/config/host.rb +125 -0
- data/lib/vines/config/port.rb +132 -0
- data/lib/vines/config/pubsub.rb +108 -0
- data/lib/vines/config.rb +223 -0
- data/lib/vines/contact.rb +111 -0
- data/lib/vines/daemon.rb +78 -0
- data/lib/vines/error.rb +150 -0
- data/lib/vines/jid.rb +95 -0
- data/lib/vines/kit.rb +23 -0
- data/lib/vines/log.rb +24 -0
- data/lib/vines/router.rb +179 -0
- data/lib/vines/stanza/iq/auth.rb +18 -0
- data/lib/vines/stanza/iq/disco_info.rb +45 -0
- data/lib/vines/stanza/iq/disco_items.rb +29 -0
- data/lib/vines/stanza/iq/error.rb +16 -0
- data/lib/vines/stanza/iq/ping.rb +16 -0
- data/lib/vines/stanza/iq/private_storage.rb +83 -0
- data/lib/vines/stanza/iq/query.rb +10 -0
- data/lib/vines/stanza/iq/result.rb +16 -0
- data/lib/vines/stanza/iq/roster.rb +140 -0
- data/lib/vines/stanza/iq/session.rb +17 -0
- data/lib/vines/stanza/iq/vcard.rb +56 -0
- data/lib/vines/stanza/iq/version.rb +25 -0
- data/lib/vines/stanza/iq.rb +48 -0
- data/lib/vines/stanza/message.rb +40 -0
- data/lib/vines/stanza/presence/error.rb +23 -0
- data/lib/vines/stanza/presence/probe.rb +37 -0
- data/lib/vines/stanza/presence/subscribe.rb +42 -0
- data/lib/vines/stanza/presence/subscribed.rb +51 -0
- data/lib/vines/stanza/presence/unavailable.rb +15 -0
- data/lib/vines/stanza/presence/unsubscribe.rb +38 -0
- data/lib/vines/stanza/presence/unsubscribed.rb +38 -0
- data/lib/vines/stanza/presence.rb +141 -0
- data/lib/vines/stanza/pubsub/create.rb +39 -0
- data/lib/vines/stanza/pubsub/delete.rb +41 -0
- data/lib/vines/stanza/pubsub/publish.rb +66 -0
- data/lib/vines/stanza/pubsub/subscribe.rb +44 -0
- data/lib/vines/stanza/pubsub/unsubscribe.rb +30 -0
- data/lib/vines/stanza/pubsub.rb +22 -0
- data/lib/vines/stanza.rb +175 -0
- data/lib/vines/storage/ldap.rb +71 -0
- data/lib/vines/storage/local.rb +139 -0
- data/lib/vines/storage/null.rb +39 -0
- data/lib/vines/storage/sql.rb +138 -0
- data/lib/vines/storage.rb +239 -0
- data/lib/vines/store.rb +110 -0
- data/lib/vines/stream/client/auth.rb +74 -0
- data/lib/vines/stream/client/auth_restart.rb +29 -0
- data/lib/vines/stream/client/bind.rb +72 -0
- data/lib/vines/stream/client/bind_restart.rb +24 -0
- data/lib/vines/stream/client/closed.rb +13 -0
- data/lib/vines/stream/client/ready.rb +17 -0
- data/lib/vines/stream/client/session.rb +210 -0
- data/lib/vines/stream/client/start.rb +27 -0
- data/lib/vines/stream/client/tls.rb +38 -0
- data/lib/vines/stream/client.rb +84 -0
- data/lib/vines/stream/component/handshake.rb +26 -0
- data/lib/vines/stream/component/ready.rb +23 -0
- data/lib/vines/stream/component/start.rb +19 -0
- data/lib/vines/stream/component.rb +58 -0
- data/lib/vines/stream/http/auth.rb +22 -0
- data/lib/vines/stream/http/bind.rb +32 -0
- data/lib/vines/stream/http/bind_restart.rb +37 -0
- data/lib/vines/stream/http/ready.rb +29 -0
- data/lib/vines/stream/http/request.rb +172 -0
- data/lib/vines/stream/http/session.rb +120 -0
- data/lib/vines/stream/http/sessions.rb +65 -0
- data/lib/vines/stream/http/start.rb +23 -0
- data/lib/vines/stream/http.rb +157 -0
- data/lib/vines/stream/parser.rb +79 -0
- data/lib/vines/stream/sasl.rb +128 -0
- data/lib/vines/stream/server/auth.rb +13 -0
- data/lib/vines/stream/server/auth_restart.rb +13 -0
- data/lib/vines/stream/server/final_restart.rb +21 -0
- data/lib/vines/stream/server/outbound/auth.rb +31 -0
- data/lib/vines/stream/server/outbound/auth_restart.rb +20 -0
- data/lib/vines/stream/server/outbound/auth_result.rb +32 -0
- data/lib/vines/stream/server/outbound/final_features.rb +28 -0
- data/lib/vines/stream/server/outbound/final_restart.rb +20 -0
- data/lib/vines/stream/server/outbound/start.rb +20 -0
- data/lib/vines/stream/server/outbound/tls.rb +30 -0
- data/lib/vines/stream/server/outbound/tls_result.rb +34 -0
- data/lib/vines/stream/server/ready.rb +24 -0
- data/lib/vines/stream/server/start.rb +13 -0
- data/lib/vines/stream/server/tls.rb +13 -0
- data/lib/vines/stream/server.rb +150 -0
- data/lib/vines/stream/state.rb +60 -0
- data/lib/vines/stream.rb +247 -0
- data/lib/vines/token_bucket.rb +55 -0
- data/lib/vines/user.rb +123 -0
- data/lib/vines/version.rb +6 -0
- data/lib/vines/xmpp_server.rb +25 -0
- data/lib/vines.rb +203 -0
- data/test/cluster/publisher_test.rb +57 -0
- data/test/cluster/sessions_test.rb +47 -0
- data/test/cluster/subscriber_test.rb +109 -0
- data/test/config/host_test.rb +369 -0
- data/test/config/pubsub_test.rb +187 -0
- data/test/config_test.rb +732 -0
- data/test/contact_test.rb +102 -0
- data/test/error_test.rb +58 -0
- data/test/ext/nokogiri.rb +14 -0
- data/test/jid_test.rb +147 -0
- data/test/kit_test.rb +31 -0
- data/test/router_test.rb +243 -0
- data/test/stanza/iq/disco_info_test.rb +78 -0
- data/test/stanza/iq/disco_items_test.rb +49 -0
- data/test/stanza/iq/private_storage_test.rb +184 -0
- data/test/stanza/iq/roster_test.rb +229 -0
- data/test/stanza/iq/session_test.rb +25 -0
- data/test/stanza/iq/vcard_test.rb +146 -0
- data/test/stanza/iq/version_test.rb +64 -0
- data/test/stanza/iq_test.rb +70 -0
- data/test/stanza/message_test.rb +126 -0
- data/test/stanza/presence/probe_test.rb +50 -0
- data/test/stanza/presence/subscribe_test.rb +83 -0
- data/test/stanza/pubsub/create_test.rb +116 -0
- data/test/stanza/pubsub/delete_test.rb +169 -0
- data/test/stanza/pubsub/publish_test.rb +309 -0
- data/test/stanza/pubsub/subscribe_test.rb +205 -0
- data/test/stanza/pubsub/unsubscribe_test.rb +148 -0
- data/test/stanza_test.rb +85 -0
- data/test/storage/ldap_test.rb +201 -0
- data/test/storage/local_test.rb +59 -0
- data/test/storage/mock_redis.rb +97 -0
- data/test/storage/null_test.rb +29 -0
- data/test/storage/storage_tests.rb +182 -0
- data/test/storage_test.rb +85 -0
- data/test/store_test.rb +130 -0
- data/test/stream/client/auth_test.rb +137 -0
- data/test/stream/client/ready_test.rb +47 -0
- data/test/stream/client/session_test.rb +27 -0
- data/test/stream/component/handshake_test.rb +52 -0
- data/test/stream/component/ready_test.rb +103 -0
- data/test/stream/component/start_test.rb +39 -0
- data/test/stream/http/auth_test.rb +70 -0
- data/test/stream/http/ready_test.rb +86 -0
- data/test/stream/http/request_test.rb +209 -0
- data/test/stream/http/sessions_test.rb +49 -0
- data/test/stream/http/start_test.rb +50 -0
- data/test/stream/parser_test.rb +122 -0
- data/test/stream/sasl_test.rb +195 -0
- data/test/stream/server/auth_test.rb +61 -0
- data/test/stream/server/outbound/auth_test.rb +75 -0
- data/test/stream/server/ready_test.rb +98 -0
- data/test/test_helper.rb +42 -0
- data/test/token_bucket_test.rb +44 -0
- data/test/user_test.rb +96 -0
- data/vines.gemspec +30 -0
- metadata +387 -0
metadata
ADDED
@@ -0,0 +1,387 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: diaspora-vines
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- David Graham
|
8
|
+
- Lukas Matt
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-07-29 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: Diaspora-vines is a Vines fork build for diaspora integration. DO NOT
|
127
|
+
use 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/contact.rb
|
165
|
+
- lib/vines/daemon.rb
|
166
|
+
- lib/vines/error.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/contact_test.rb
|
259
|
+
- test/error_test.rb
|
260
|
+
- test/ext/nokogiri.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://diasporafoundation.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.3.0
|
329
|
+
signing_key:
|
330
|
+
specification_version: 4
|
331
|
+
summary: Diaspora-vines is a Vines fork build for diaspora integration.
|
332
|
+
test_files:
|
333
|
+
- test/cluster/publisher_test.rb
|
334
|
+
- test/cluster/sessions_test.rb
|
335
|
+
- test/cluster/subscriber_test.rb
|
336
|
+
- test/ext/nokogiri.rb
|
337
|
+
- test/kit_test.rb
|
338
|
+
- test/contact_test.rb
|
339
|
+
- test/router_test.rb
|
340
|
+
- test/config/host_test.rb
|
341
|
+
- test/config/pubsub_test.rb
|
342
|
+
- test/jid_test.rb
|
343
|
+
- test/stanza/iq/vcard_test.rb
|
344
|
+
- test/stanza/iq/private_storage_test.rb
|
345
|
+
- test/stanza/iq/roster_test.rb
|
346
|
+
- test/stanza/iq/disco_info_test.rb
|
347
|
+
- test/stanza/iq/session_test.rb
|
348
|
+
- test/stanza/iq/disco_items_test.rb
|
349
|
+
- test/stanza/iq/version_test.rb
|
350
|
+
- test/stanza/presence/probe_test.rb
|
351
|
+
- test/stanza/presence/subscribe_test.rb
|
352
|
+
- test/stanza/message_test.rb
|
353
|
+
- test/stanza/iq_test.rb
|
354
|
+
- test/stanza/pubsub/publish_test.rb
|
355
|
+
- test/stanza/pubsub/create_test.rb
|
356
|
+
- test/stanza/pubsub/subscribe_test.rb
|
357
|
+
- test/stanza/pubsub/unsubscribe_test.rb
|
358
|
+
- test/stanza/pubsub/delete_test.rb
|
359
|
+
- test/token_bucket_test.rb
|
360
|
+
- test/storage_test.rb
|
361
|
+
- test/store_test.rb
|
362
|
+
- test/stanza_test.rb
|
363
|
+
- test/error_test.rb
|
364
|
+
- test/stream/parser_test.rb
|
365
|
+
- test/stream/client/auth_test.rb
|
366
|
+
- test/stream/client/session_test.rb
|
367
|
+
- test/stream/client/ready_test.rb
|
368
|
+
- test/stream/http/auth_test.rb
|
369
|
+
- test/stream/http/start_test.rb
|
370
|
+
- test/stream/http/sessions_test.rb
|
371
|
+
- test/stream/http/request_test.rb
|
372
|
+
- test/stream/http/ready_test.rb
|
373
|
+
- test/stream/server/outbound/auth_test.rb
|
374
|
+
- test/stream/server/auth_test.rb
|
375
|
+
- test/stream/server/ready_test.rb
|
376
|
+
- test/stream/sasl_test.rb
|
377
|
+
- test/stream/component/handshake_test.rb
|
378
|
+
- test/stream/component/start_test.rb
|
379
|
+
- test/stream/component/ready_test.rb
|
380
|
+
- test/user_test.rb
|
381
|
+
- test/config_test.rb
|
382
|
+
- test/test_helper.rb
|
383
|
+
- test/storage/storage_tests.rb
|
384
|
+
- test/storage/null_test.rb
|
385
|
+
- test/storage/mock_redis.rb
|
386
|
+
- test/storage/ldap_test.rb
|
387
|
+
- test/storage/local_test.rb
|