blather 0.5.7 → 0.5.8
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +4 -0
- data/Gemfile +1 -8
- data/Rakefile +15 -12
- data/blather.gemspec +27 -2
- data/lib/blather/jid.rb +1 -4
- data/lib/blather/version.rb +1 -1
- metadata +370 -342
data/CHANGELOG
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
v0.5.8
|
2
|
+
Bugfix(benlangfeld): JIDs now maintain case, but still compare case insensitively
|
3
|
+
Bugfix(jmazzi): Development dependencies now resolve correctly on JRuby and Rubinius
|
4
|
+
|
1
5
|
v0.5.7
|
2
6
|
Bugfix(benlangfeld): Don't install BlueCloth as a development dependency when on JRuby
|
3
7
|
|
data/Gemfile
CHANGED
@@ -1,11 +1,4 @@
|
|
1
1
|
source "http://rubygems.org"
|
2
2
|
|
3
|
-
# Specify your gem's dependencies in
|
3
|
+
# Specify your gem's dependencies in blather.gemspec
|
4
4
|
gemspec
|
5
|
-
|
6
|
-
if RUBY_PLATFORM =~ /darwin/
|
7
|
-
gem 'growl_notify'
|
8
|
-
gem 'rb-fsevent'
|
9
|
-
end
|
10
|
-
|
11
|
-
gem 'bluecloth' unless RUBY_PLATFORM =~ /java/
|
data/Rakefile
CHANGED
@@ -11,20 +11,23 @@ Rake::TestTask.new(:test) do |test|
|
|
11
11
|
test.verbose = true
|
12
12
|
end
|
13
13
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
14
|
+
begin
|
15
|
+
require 'rcov/rcovtask'
|
16
|
+
Rcov::RcovTask.new do |test|
|
17
|
+
test.libs << 'spec'
|
18
|
+
test.pattern = 'spec/**/*_spec.rb'
|
19
|
+
test.rcov_opts += ['--exclude \/Library\/Ruby,spec\/', '--xrefs']
|
20
|
+
test.verbose = true
|
21
|
+
end
|
21
22
|
|
22
|
-
require 'yard'
|
23
|
-
YARD::Tags::Library.define_tag 'Blather handler', :handler, :with_name
|
24
|
-
YARD::Templates::Engine.register_template_path 'yard/templates'
|
23
|
+
require 'yard'
|
24
|
+
YARD::Tags::Library.define_tag 'Blather handler', :handler, :with_name
|
25
|
+
YARD::Templates::Engine.register_template_path 'yard/templates'
|
25
26
|
|
26
|
-
YARD::Rake::YardocTask.new(:doc) do |t|
|
27
|
-
|
27
|
+
YARD::Rake::YardocTask.new(:doc) do |t|
|
28
|
+
t.options = ['--no-private', '-m', 'markdown', '-o', './doc/public/yard']
|
29
|
+
end
|
30
|
+
rescue LoadError
|
28
31
|
end
|
29
32
|
|
30
33
|
task :default => :test
|
data/blather.gemspec
CHANGED
@@ -2,6 +2,19 @@
|
|
2
2
|
$:.push File.expand_path("../lib", __FILE__)
|
3
3
|
require "blather/version"
|
4
4
|
|
5
|
+
module RubyVersion
|
6
|
+
def rbx?
|
7
|
+
defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
|
8
|
+
end
|
9
|
+
|
10
|
+
def jruby?
|
11
|
+
RUBY_PLATFORM =~ /java/
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
include RubyVersion
|
16
|
+
Gem::Specification.extend RubyVersion
|
17
|
+
|
5
18
|
Gem::Specification.new do |s|
|
6
19
|
s.name = "blather"
|
7
20
|
s.version = Blather::VERSION
|
@@ -28,8 +41,20 @@ Gem::Specification.new do |s|
|
|
28
41
|
s.add_development_dependency "minitest", ["~> 1.7.1"]
|
29
42
|
s.add_development_dependency "mocha", ["~> 0.9.12"]
|
30
43
|
s.add_development_dependency "bundler", ["~> 1.0.0"]
|
31
|
-
|
32
|
-
|
44
|
+
unless rbx?
|
45
|
+
s.add_development_dependency "rcov", ["~> 0.9.9"]
|
46
|
+
s.add_development_dependency "yard", ["~> 0.6.1"]
|
47
|
+
end
|
48
|
+
s.add_development_dependency "jruby-openssl", ["~> 0.7.4"] if jruby?
|
33
49
|
s.add_development_dependency "rake"
|
34
50
|
s.add_development_dependency "guard-minitest"
|
51
|
+
|
52
|
+
unless jruby? || rbx?
|
53
|
+
s.add_development_dependency 'bluecloth'
|
54
|
+
end
|
55
|
+
|
56
|
+
if RUBY_PLATFORM =~ /darwin/ && !rbx?
|
57
|
+
s.add_development_dependency 'growl_notify'
|
58
|
+
s.add_development_dependency 'rb-fsevent'
|
59
|
+
end
|
35
60
|
end
|
data/lib/blather/jid.rb
CHANGED
@@ -83,9 +83,6 @@ module Blather
|
|
83
83
|
@node, @domain, @resource = @node.to_s.scan(PATTERN).first
|
84
84
|
end
|
85
85
|
|
86
|
-
@node.downcase! if @node
|
87
|
-
@domain.downcase! if @domain
|
88
|
-
|
89
86
|
raise ArgumentError, 'Node too long' if (@node || '').length > 1023
|
90
87
|
raise ArgumentError, 'Domain too long' if (@domain || '').length > 1023
|
91
88
|
raise ArgumentError, 'Resource too long' if (@resource || '').length > 1023
|
@@ -129,7 +126,7 @@ module Blather
|
|
129
126
|
# @param [#to_s] other a JID to comare against
|
130
127
|
# @return [Fixnum<-1, 0, 1>]
|
131
128
|
def <=>(other)
|
132
|
-
to_s <=> other.to_s
|
129
|
+
to_s.downcase <=> other.to_s.downcase
|
133
130
|
end
|
134
131
|
alias_method :eql?, :==
|
135
132
|
|
data/lib/blather/version.rb
CHANGED
metadata
CHANGED
@@ -1,364 +1,392 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: blather
|
3
|
-
version: !ruby/object:Gem::Version
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.5.8
|
4
5
|
prerelease:
|
5
|
-
version: 0.5.7
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
8
|
-
|
7
|
+
authors:
|
8
|
+
- Jeff Smick
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
13
|
-
date: 2011-09-28 00:00:00 +01:00
|
12
|
+
date: 2011-10-11 00:00:00.000000000 -07:00
|
14
13
|
default_executable:
|
15
|
-
dependencies:
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: eventmachine
|
17
|
+
requirement: &2156628380 !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: *2156628380
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: nokogiri
|
28
|
+
requirement: &2156627780 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.4.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: *2156627780
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: niceogiri
|
39
|
+
requirement: &2156627280 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ! '>='
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: 0.0.4
|
45
|
+
type: :runtime
|
46
|
+
prerelease: false
|
47
|
+
version_requirements: *2156627280
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: activesupport
|
50
|
+
requirement: &2156626720 !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ! '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 3.0.7
|
56
|
+
type: :runtime
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: *2156626720
|
59
|
+
- !ruby/object:Gem::Dependency
|
60
|
+
name: minitest
|
61
|
+
requirement: &2156626180 !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ~>
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 1.7.1
|
67
|
+
type: :development
|
68
|
+
prerelease: false
|
69
|
+
version_requirements: *2156626180
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: mocha
|
72
|
+
requirement: &2156625680 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 0.9.12
|
78
|
+
type: :development
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: *2156625680
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: bundler
|
83
|
+
requirement: &2156625120 !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
85
|
+
requirements:
|
86
|
+
- - ~>
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: 1.0.0
|
89
|
+
type: :development
|
90
|
+
prerelease: false
|
91
|
+
version_requirements: *2156625120
|
92
|
+
- !ruby/object:Gem::Dependency
|
93
|
+
name: rcov
|
94
|
+
requirement: &2156624600 !ruby/object:Gem::Requirement
|
95
|
+
none: false
|
96
|
+
requirements:
|
97
|
+
- - ~>
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: 0.9.9
|
100
|
+
type: :development
|
101
|
+
prerelease: false
|
102
|
+
version_requirements: *2156624600
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
name: yard
|
105
|
+
requirement: &2156624040 !ruby/object:Gem::Requirement
|
106
|
+
none: false
|
107
|
+
requirements:
|
108
|
+
- - ~>
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 0.6.1
|
111
|
+
type: :development
|
112
|
+
prerelease: false
|
113
|
+
version_requirements: *2156624040
|
114
|
+
- !ruby/object:Gem::Dependency
|
115
|
+
name: rake
|
116
|
+
requirement: &2156623580 !ruby/object:Gem::Requirement
|
117
|
+
none: false
|
118
|
+
requirements:
|
119
|
+
- - ! '>='
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
type: :development
|
123
|
+
prerelease: false
|
124
|
+
version_requirements: *2156623580
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: guard-minitest
|
127
|
+
requirement: &2156623080 !ruby/object:Gem::Requirement
|
128
|
+
none: false
|
129
|
+
requirements:
|
130
|
+
- - ! '>='
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '0'
|
133
|
+
type: :development
|
134
|
+
prerelease: false
|
135
|
+
version_requirements: *2156623080
|
136
|
+
- !ruby/object:Gem::Dependency
|
137
|
+
name: bluecloth
|
138
|
+
requirement: &2156622540 !ruby/object:Gem::Requirement
|
139
|
+
none: false
|
140
|
+
requirements:
|
141
|
+
- - ! '>='
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: '0'
|
144
|
+
type: :development
|
145
|
+
prerelease: false
|
146
|
+
version_requirements: *2156622540
|
147
|
+
- !ruby/object:Gem::Dependency
|
148
|
+
name: growl_notify
|
149
|
+
requirement: &2156621940 !ruby/object:Gem::Requirement
|
150
|
+
none: false
|
151
|
+
requirements:
|
152
|
+
- - ! '>='
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
version: '0'
|
155
|
+
type: :development
|
156
|
+
prerelease: false
|
157
|
+
version_requirements: *2156621940
|
158
|
+
- !ruby/object:Gem::Dependency
|
159
|
+
name: rb-fsevent
|
160
|
+
requirement: &2156621480 !ruby/object:Gem::Requirement
|
161
|
+
none: false
|
162
|
+
requirements:
|
163
|
+
- - ! '>='
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: '0'
|
166
|
+
type: :development
|
167
|
+
prerelease: false
|
168
|
+
version_requirements: *2156621480
|
137
169
|
description: An XMPP DSL for Ruby written on top of EventMachine and Nokogiri
|
138
170
|
email: sprsquish@gmail.com
|
139
171
|
executables: []
|
140
|
-
|
141
172
|
extensions: []
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
- yard/templates/default/class/text/handlers.erb
|
173
|
+
extra_rdoc_files:
|
174
|
+
- LICENSE
|
175
|
+
- README.md
|
176
|
+
files:
|
177
|
+
- .autotest
|
178
|
+
- .gemtest
|
179
|
+
- .gitignore
|
180
|
+
- .travis.yml
|
181
|
+
- CHANGELOG
|
182
|
+
- Gemfile
|
183
|
+
- Guardfile
|
184
|
+
- LICENSE
|
185
|
+
- README.md
|
186
|
+
- Rakefile
|
187
|
+
- TODO.md
|
188
|
+
- blather.gemspec
|
189
|
+
- examples/certs/README
|
190
|
+
- examples/certs/ca-bundle.crt
|
191
|
+
- examples/echo.rb
|
192
|
+
- examples/execute.rb
|
193
|
+
- examples/ping_pong.rb
|
194
|
+
- examples/print_hierarchy.rb
|
195
|
+
- examples/rosterprint.rb
|
196
|
+
- examples/stream_only.rb
|
197
|
+
- examples/trusted_echo.rb
|
198
|
+
- examples/xmpp4r/echo.rb
|
199
|
+
- lib/blather.rb
|
200
|
+
- lib/blather/cert_store.rb
|
201
|
+
- lib/blather/client.rb
|
202
|
+
- lib/blather/client/client.rb
|
203
|
+
- lib/blather/client/dsl.rb
|
204
|
+
- lib/blather/client/dsl/pubsub.rb
|
205
|
+
- lib/blather/core_ext/eventmachine.rb
|
206
|
+
- lib/blather/core_ext/ipaddr.rb
|
207
|
+
- lib/blather/errors.rb
|
208
|
+
- lib/blather/errors/sasl_error.rb
|
209
|
+
- lib/blather/errors/stanza_error.rb
|
210
|
+
- lib/blather/errors/stream_error.rb
|
211
|
+
- lib/blather/file_transfer.rb
|
212
|
+
- lib/blather/file_transfer/ibb.rb
|
213
|
+
- lib/blather/file_transfer/s5b.rb
|
214
|
+
- lib/blather/jid.rb
|
215
|
+
- lib/blather/roster.rb
|
216
|
+
- lib/blather/roster_item.rb
|
217
|
+
- lib/blather/stanza.rb
|
218
|
+
- lib/blather/stanza/disco.rb
|
219
|
+
- lib/blather/stanza/disco/capabilities.rb
|
220
|
+
- lib/blather/stanza/disco/disco_info.rb
|
221
|
+
- lib/blather/stanza/disco/disco_items.rb
|
222
|
+
- lib/blather/stanza/iq.rb
|
223
|
+
- lib/blather/stanza/iq/command.rb
|
224
|
+
- lib/blather/stanza/iq/ibb.rb
|
225
|
+
- lib/blather/stanza/iq/ping.rb
|
226
|
+
- lib/blather/stanza/iq/query.rb
|
227
|
+
- lib/blather/stanza/iq/roster.rb
|
228
|
+
- lib/blather/stanza/iq/s5b.rb
|
229
|
+
- lib/blather/stanza/iq/si.rb
|
230
|
+
- lib/blather/stanza/iq/vcard.rb
|
231
|
+
- lib/blather/stanza/message.rb
|
232
|
+
- lib/blather/stanza/presence.rb
|
233
|
+
- lib/blather/stanza/presence/c.rb
|
234
|
+
- lib/blather/stanza/presence/status.rb
|
235
|
+
- lib/blather/stanza/presence/subscription.rb
|
236
|
+
- lib/blather/stanza/pubsub.rb
|
237
|
+
- lib/blather/stanza/pubsub/affiliations.rb
|
238
|
+
- lib/blather/stanza/pubsub/create.rb
|
239
|
+
- lib/blather/stanza/pubsub/errors.rb
|
240
|
+
- lib/blather/stanza/pubsub/event.rb
|
241
|
+
- lib/blather/stanza/pubsub/items.rb
|
242
|
+
- lib/blather/stanza/pubsub/publish.rb
|
243
|
+
- lib/blather/stanza/pubsub/retract.rb
|
244
|
+
- lib/blather/stanza/pubsub/subscribe.rb
|
245
|
+
- lib/blather/stanza/pubsub/subscription.rb
|
246
|
+
- lib/blather/stanza/pubsub/subscriptions.rb
|
247
|
+
- lib/blather/stanza/pubsub/unsubscribe.rb
|
248
|
+
- lib/blather/stanza/pubsub_owner.rb
|
249
|
+
- lib/blather/stanza/pubsub_owner/delete.rb
|
250
|
+
- lib/blather/stanza/pubsub_owner/purge.rb
|
251
|
+
- lib/blather/stanza/x.rb
|
252
|
+
- lib/blather/stream.rb
|
253
|
+
- lib/blather/stream/client.rb
|
254
|
+
- lib/blather/stream/component.rb
|
255
|
+
- lib/blather/stream/features.rb
|
256
|
+
- lib/blather/stream/features/resource.rb
|
257
|
+
- lib/blather/stream/features/sasl.rb
|
258
|
+
- lib/blather/stream/features/session.rb
|
259
|
+
- lib/blather/stream/features/tls.rb
|
260
|
+
- lib/blather/stream/parser.rb
|
261
|
+
- lib/blather/version.rb
|
262
|
+
- lib/blather/xmpp_node.rb
|
263
|
+
- spec/blather/client/client_spec.rb
|
264
|
+
- spec/blather/client/dsl/pubsub_spec.rb
|
265
|
+
- spec/blather/client/dsl_spec.rb
|
266
|
+
- spec/blather/errors/sasl_error_spec.rb
|
267
|
+
- spec/blather/errors/stanza_error_spec.rb
|
268
|
+
- spec/blather/errors/stream_error_spec.rb
|
269
|
+
- spec/blather/errors_spec.rb
|
270
|
+
- spec/blather/file_transfer_spec.rb
|
271
|
+
- spec/blather/jid_spec.rb
|
272
|
+
- spec/blather/roster_item_spec.rb
|
273
|
+
- spec/blather/roster_spec.rb
|
274
|
+
- spec/blather/stanza/discos/disco_info_spec.rb
|
275
|
+
- spec/blather/stanza/discos/disco_items_spec.rb
|
276
|
+
- spec/blather/stanza/iq/command_spec.rb
|
277
|
+
- spec/blather/stanza/iq/ibb_spec.rb
|
278
|
+
- spec/blather/stanza/iq/ping_spec.rb
|
279
|
+
- spec/blather/stanza/iq/query_spec.rb
|
280
|
+
- spec/blather/stanza/iq/roster_spec.rb
|
281
|
+
- spec/blather/stanza/iq/s5b_spec.rb
|
282
|
+
- spec/blather/stanza/iq/si_spec.rb
|
283
|
+
- spec/blather/stanza/iq/vcard_spec.rb
|
284
|
+
- spec/blather/stanza/iq_spec.rb
|
285
|
+
- spec/blather/stanza/message_spec.rb
|
286
|
+
- spec/blather/stanza/presence/c_spec.rb
|
287
|
+
- spec/blather/stanza/presence/status_spec.rb
|
288
|
+
- spec/blather/stanza/presence/subscription_spec.rb
|
289
|
+
- spec/blather/stanza/presence_spec.rb
|
290
|
+
- spec/blather/stanza/pubsub/affiliations_spec.rb
|
291
|
+
- spec/blather/stanza/pubsub/create_spec.rb
|
292
|
+
- spec/blather/stanza/pubsub/event_spec.rb
|
293
|
+
- spec/blather/stanza/pubsub/items_spec.rb
|
294
|
+
- spec/blather/stanza/pubsub/publish_spec.rb
|
295
|
+
- spec/blather/stanza/pubsub/retract_spec.rb
|
296
|
+
- spec/blather/stanza/pubsub/subscribe_spec.rb
|
297
|
+
- spec/blather/stanza/pubsub/subscription_spec.rb
|
298
|
+
- spec/blather/stanza/pubsub/subscriptions_spec.rb
|
299
|
+
- spec/blather/stanza/pubsub/unsubscribe_spec.rb
|
300
|
+
- spec/blather/stanza/pubsub_owner/delete_spec.rb
|
301
|
+
- spec/blather/stanza/pubsub_owner/purge_spec.rb
|
302
|
+
- spec/blather/stanza/pubsub_owner_spec.rb
|
303
|
+
- spec/blather/stanza/pubsub_spec.rb
|
304
|
+
- spec/blather/stanza/x_spec.rb
|
305
|
+
- spec/blather/stanza_spec.rb
|
306
|
+
- spec/blather/stream/client_spec.rb
|
307
|
+
- spec/blather/stream/component_spec.rb
|
308
|
+
- spec/blather/stream/parser_spec.rb
|
309
|
+
- spec/blather/stream/ssl_spec.rb
|
310
|
+
- spec/blather/xmpp_node_spec.rb
|
311
|
+
- spec/fixtures/pubsub.rb
|
312
|
+
- spec/spec_helper.rb
|
313
|
+
- yard/templates/default/class/html/handlers.erb
|
314
|
+
- yard/templates/default/class/setup.rb
|
315
|
+
- yard/templates/default/class/text/handlers.erb
|
286
316
|
has_rdoc: true
|
287
317
|
homepage: http://github.com/sprsquish/blather
|
288
318
|
licenses: []
|
289
|
-
|
290
319
|
post_install_message:
|
291
|
-
rdoc_options:
|
292
|
-
|
293
|
-
require_paths:
|
294
|
-
|
295
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
320
|
+
rdoc_options:
|
321
|
+
- --charset=UTF-8
|
322
|
+
require_paths:
|
323
|
+
- lib
|
324
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
296
325
|
none: false
|
297
|
-
requirements:
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
326
|
+
requirements:
|
327
|
+
- - ! '>='
|
328
|
+
- !ruby/object:Gem::Version
|
329
|
+
version: '0'
|
330
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
302
331
|
none: false
|
303
|
-
requirements:
|
304
|
-
|
305
|
-
|
306
|
-
|
332
|
+
requirements:
|
333
|
+
- - ! '>='
|
334
|
+
- !ruby/object:Gem::Version
|
335
|
+
version: '0'
|
307
336
|
requirements: []
|
308
|
-
|
309
337
|
rubyforge_project:
|
310
|
-
rubygems_version: 1.
|
338
|
+
rubygems_version: 1.6.2
|
311
339
|
signing_key:
|
312
340
|
specification_version: 3
|
313
341
|
summary: Simpler XMPP built for speed
|
314
|
-
test_files:
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
342
|
+
test_files:
|
343
|
+
- spec/blather/client/client_spec.rb
|
344
|
+
- spec/blather/client/dsl/pubsub_spec.rb
|
345
|
+
- spec/blather/client/dsl_spec.rb
|
346
|
+
- spec/blather/errors/sasl_error_spec.rb
|
347
|
+
- spec/blather/errors/stanza_error_spec.rb
|
348
|
+
- spec/blather/errors/stream_error_spec.rb
|
349
|
+
- spec/blather/errors_spec.rb
|
350
|
+
- spec/blather/file_transfer_spec.rb
|
351
|
+
- spec/blather/jid_spec.rb
|
352
|
+
- spec/blather/roster_item_spec.rb
|
353
|
+
- spec/blather/roster_spec.rb
|
354
|
+
- spec/blather/stanza/discos/disco_info_spec.rb
|
355
|
+
- spec/blather/stanza/discos/disco_items_spec.rb
|
356
|
+
- spec/blather/stanza/iq/command_spec.rb
|
357
|
+
- spec/blather/stanza/iq/ibb_spec.rb
|
358
|
+
- spec/blather/stanza/iq/ping_spec.rb
|
359
|
+
- spec/blather/stanza/iq/query_spec.rb
|
360
|
+
- spec/blather/stanza/iq/roster_spec.rb
|
361
|
+
- spec/blather/stanza/iq/s5b_spec.rb
|
362
|
+
- spec/blather/stanza/iq/si_spec.rb
|
363
|
+
- spec/blather/stanza/iq/vcard_spec.rb
|
364
|
+
- spec/blather/stanza/iq_spec.rb
|
365
|
+
- spec/blather/stanza/message_spec.rb
|
366
|
+
- spec/blather/stanza/presence/c_spec.rb
|
367
|
+
- spec/blather/stanza/presence/status_spec.rb
|
368
|
+
- spec/blather/stanza/presence/subscription_spec.rb
|
369
|
+
- spec/blather/stanza/presence_spec.rb
|
370
|
+
- spec/blather/stanza/pubsub/affiliations_spec.rb
|
371
|
+
- spec/blather/stanza/pubsub/create_spec.rb
|
372
|
+
- spec/blather/stanza/pubsub/event_spec.rb
|
373
|
+
- spec/blather/stanza/pubsub/items_spec.rb
|
374
|
+
- spec/blather/stanza/pubsub/publish_spec.rb
|
375
|
+
- spec/blather/stanza/pubsub/retract_spec.rb
|
376
|
+
- spec/blather/stanza/pubsub/subscribe_spec.rb
|
377
|
+
- spec/blather/stanza/pubsub/subscription_spec.rb
|
378
|
+
- spec/blather/stanza/pubsub/subscriptions_spec.rb
|
379
|
+
- spec/blather/stanza/pubsub/unsubscribe_spec.rb
|
380
|
+
- spec/blather/stanza/pubsub_owner/delete_spec.rb
|
381
|
+
- spec/blather/stanza/pubsub_owner/purge_spec.rb
|
382
|
+
- spec/blather/stanza/pubsub_owner_spec.rb
|
383
|
+
- spec/blather/stanza/pubsub_spec.rb
|
384
|
+
- spec/blather/stanza/x_spec.rb
|
385
|
+
- spec/blather/stanza_spec.rb
|
386
|
+
- spec/blather/stream/client_spec.rb
|
387
|
+
- spec/blather/stream/component_spec.rb
|
388
|
+
- spec/blather/stream/parser_spec.rb
|
389
|
+
- spec/blather/stream/ssl_spec.rb
|
390
|
+
- spec/blather/xmpp_node_spec.rb
|
391
|
+
- spec/fixtures/pubsub.rb
|
392
|
+
- spec/spec_helper.rb
|