blather 0.5.7 → 0.5.8

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.
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 testgem.gemspec
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
- require 'rcov/rcovtask'
15
- Rcov::RcovTask.new do |test|
16
- test.libs << 'spec'
17
- test.pattern = 'spec/**/*_spec.rb'
18
- test.rcov_opts += ['--exclude \/Library\/Ruby,spec\/', '--xrefs']
19
- test.verbose = true
20
- end
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
- t.options = ['--no-private', '-m', 'markdown', '-o', './doc/public/yard']
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
@@ -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
- s.add_development_dependency "rcov", ["~> 0.9.9"]
32
- s.add_development_dependency "yard", ["~> 0.6.1"]
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
@@ -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
 
@@ -1,4 +1,4 @@
1
1
  module Blather
2
2
  # Blather version number
3
- VERSION = '0.5.7'
3
+ VERSION = '0.5.8'
4
4
  end
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
- - Jeff Smick
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
- - !ruby/object:Gem::Dependency
17
- name: eventmachine
18
- prerelease: false
19
- requirement: &id001 !ruby/object:Gem::Requirement
20
- none: false
21
- requirements:
22
- - - ~>
23
- - !ruby/object:Gem::Version
24
- version: 0.12.6
25
- type: :runtime
26
- version_requirements: *id001
27
- - !ruby/object:Gem::Dependency
28
- name: nokogiri
29
- prerelease: false
30
- requirement: &id002 !ruby/object:Gem::Requirement
31
- none: false
32
- requirements:
33
- - - ~>
34
- - !ruby/object:Gem::Version
35
- version: 1.4.0
36
- type: :runtime
37
- version_requirements: *id002
38
- - !ruby/object:Gem::Dependency
39
- name: niceogiri
40
- prerelease: false
41
- requirement: &id003 !ruby/object:Gem::Requirement
42
- none: false
43
- requirements:
44
- - - ">="
45
- - !ruby/object:Gem::Version
46
- version: 0.0.4
47
- type: :runtime
48
- version_requirements: *id003
49
- - !ruby/object:Gem::Dependency
50
- name: activesupport
51
- prerelease: false
52
- requirement: &id004 !ruby/object:Gem::Requirement
53
- none: false
54
- requirements:
55
- - - ">="
56
- - !ruby/object:Gem::Version
57
- version: 3.0.7
58
- type: :runtime
59
- version_requirements: *id004
60
- - !ruby/object:Gem::Dependency
61
- name: minitest
62
- prerelease: false
63
- requirement: &id005 !ruby/object:Gem::Requirement
64
- none: false
65
- requirements:
66
- - - ~>
67
- - !ruby/object:Gem::Version
68
- version: 1.7.1
69
- type: :development
70
- version_requirements: *id005
71
- - !ruby/object:Gem::Dependency
72
- name: mocha
73
- prerelease: false
74
- requirement: &id006 !ruby/object:Gem::Requirement
75
- none: false
76
- requirements:
77
- - - ~>
78
- - !ruby/object:Gem::Version
79
- version: 0.9.12
80
- type: :development
81
- version_requirements: *id006
82
- - !ruby/object:Gem::Dependency
83
- name: bundler
84
- prerelease: false
85
- requirement: &id007 !ruby/object:Gem::Requirement
86
- none: false
87
- requirements:
88
- - - ~>
89
- - !ruby/object:Gem::Version
90
- version: 1.0.0
91
- type: :development
92
- version_requirements: *id007
93
- - !ruby/object:Gem::Dependency
94
- name: rcov
95
- prerelease: false
96
- requirement: &id008 !ruby/object:Gem::Requirement
97
- none: false
98
- requirements:
99
- - - ~>
100
- - !ruby/object:Gem::Version
101
- version: 0.9.9
102
- type: :development
103
- version_requirements: *id008
104
- - !ruby/object:Gem::Dependency
105
- name: yard
106
- prerelease: false
107
- requirement: &id009 !ruby/object:Gem::Requirement
108
- none: false
109
- requirements:
110
- - - ~>
111
- - !ruby/object:Gem::Version
112
- version: 0.6.1
113
- type: :development
114
- version_requirements: *id009
115
- - !ruby/object:Gem::Dependency
116
- name: rake
117
- prerelease: false
118
- requirement: &id010 !ruby/object:Gem::Requirement
119
- none: false
120
- requirements:
121
- - - ">="
122
- - !ruby/object:Gem::Version
123
- version: "0"
124
- type: :development
125
- version_requirements: *id010
126
- - !ruby/object:Gem::Dependency
127
- name: guard-minitest
128
- prerelease: false
129
- requirement: &id011 !ruby/object:Gem::Requirement
130
- none: false
131
- requirements:
132
- - - ">="
133
- - !ruby/object:Gem::Version
134
- version: "0"
135
- type: :development
136
- version_requirements: *id011
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
- extra_rdoc_files:
144
- - LICENSE
145
- - README.md
146
- files:
147
- - .autotest
148
- - .gemtest
149
- - .gitignore
150
- - .travis.yml
151
- - CHANGELOG
152
- - Gemfile
153
- - Guardfile
154
- - LICENSE
155
- - README.md
156
- - Rakefile
157
- - TODO.md
158
- - blather.gemspec
159
- - examples/certs/README
160
- - examples/certs/ca-bundle.crt
161
- - examples/echo.rb
162
- - examples/execute.rb
163
- - examples/ping_pong.rb
164
- - examples/print_hierarchy.rb
165
- - examples/rosterprint.rb
166
- - examples/stream_only.rb
167
- - examples/trusted_echo.rb
168
- - examples/xmpp4r/echo.rb
169
- - lib/blather.rb
170
- - lib/blather/cert_store.rb
171
- - lib/blather/client.rb
172
- - lib/blather/client/client.rb
173
- - lib/blather/client/dsl.rb
174
- - lib/blather/client/dsl/pubsub.rb
175
- - lib/blather/core_ext/eventmachine.rb
176
- - lib/blather/core_ext/ipaddr.rb
177
- - lib/blather/errors.rb
178
- - lib/blather/errors/sasl_error.rb
179
- - lib/blather/errors/stanza_error.rb
180
- - lib/blather/errors/stream_error.rb
181
- - lib/blather/file_transfer.rb
182
- - lib/blather/file_transfer/ibb.rb
183
- - lib/blather/file_transfer/s5b.rb
184
- - lib/blather/jid.rb
185
- - lib/blather/roster.rb
186
- - lib/blather/roster_item.rb
187
- - lib/blather/stanza.rb
188
- - lib/blather/stanza/disco.rb
189
- - lib/blather/stanza/disco/capabilities.rb
190
- - lib/blather/stanza/disco/disco_info.rb
191
- - lib/blather/stanza/disco/disco_items.rb
192
- - lib/blather/stanza/iq.rb
193
- - lib/blather/stanza/iq/command.rb
194
- - lib/blather/stanza/iq/ibb.rb
195
- - lib/blather/stanza/iq/ping.rb
196
- - lib/blather/stanza/iq/query.rb
197
- - lib/blather/stanza/iq/roster.rb
198
- - lib/blather/stanza/iq/s5b.rb
199
- - lib/blather/stanza/iq/si.rb
200
- - lib/blather/stanza/iq/vcard.rb
201
- - lib/blather/stanza/message.rb
202
- - lib/blather/stanza/presence.rb
203
- - lib/blather/stanza/presence/c.rb
204
- - lib/blather/stanza/presence/status.rb
205
- - lib/blather/stanza/presence/subscription.rb
206
- - lib/blather/stanza/pubsub.rb
207
- - lib/blather/stanza/pubsub/affiliations.rb
208
- - lib/blather/stanza/pubsub/create.rb
209
- - lib/blather/stanza/pubsub/errors.rb
210
- - lib/blather/stanza/pubsub/event.rb
211
- - lib/blather/stanza/pubsub/items.rb
212
- - lib/blather/stanza/pubsub/publish.rb
213
- - lib/blather/stanza/pubsub/retract.rb
214
- - lib/blather/stanza/pubsub/subscribe.rb
215
- - lib/blather/stanza/pubsub/subscription.rb
216
- - lib/blather/stanza/pubsub/subscriptions.rb
217
- - lib/blather/stanza/pubsub/unsubscribe.rb
218
- - lib/blather/stanza/pubsub_owner.rb
219
- - lib/blather/stanza/pubsub_owner/delete.rb
220
- - lib/blather/stanza/pubsub_owner/purge.rb
221
- - lib/blather/stanza/x.rb
222
- - lib/blather/stream.rb
223
- - lib/blather/stream/client.rb
224
- - lib/blather/stream/component.rb
225
- - lib/blather/stream/features.rb
226
- - lib/blather/stream/features/resource.rb
227
- - lib/blather/stream/features/sasl.rb
228
- - lib/blather/stream/features/session.rb
229
- - lib/blather/stream/features/tls.rb
230
- - lib/blather/stream/parser.rb
231
- - lib/blather/version.rb
232
- - lib/blather/xmpp_node.rb
233
- - spec/blather/client/client_spec.rb
234
- - spec/blather/client/dsl/pubsub_spec.rb
235
- - spec/blather/client/dsl_spec.rb
236
- - spec/blather/errors/sasl_error_spec.rb
237
- - spec/blather/errors/stanza_error_spec.rb
238
- - spec/blather/errors/stream_error_spec.rb
239
- - spec/blather/errors_spec.rb
240
- - spec/blather/file_transfer_spec.rb
241
- - spec/blather/jid_spec.rb
242
- - spec/blather/roster_item_spec.rb
243
- - spec/blather/roster_spec.rb
244
- - spec/blather/stanza/discos/disco_info_spec.rb
245
- - spec/blather/stanza/discos/disco_items_spec.rb
246
- - spec/blather/stanza/iq/command_spec.rb
247
- - spec/blather/stanza/iq/ibb_spec.rb
248
- - spec/blather/stanza/iq/ping_spec.rb
249
- - spec/blather/stanza/iq/query_spec.rb
250
- - spec/blather/stanza/iq/roster_spec.rb
251
- - spec/blather/stanza/iq/s5b_spec.rb
252
- - spec/blather/stanza/iq/si_spec.rb
253
- - spec/blather/stanza/iq/vcard_spec.rb
254
- - spec/blather/stanza/iq_spec.rb
255
- - spec/blather/stanza/message_spec.rb
256
- - spec/blather/stanza/presence/c_spec.rb
257
- - spec/blather/stanza/presence/status_spec.rb
258
- - spec/blather/stanza/presence/subscription_spec.rb
259
- - spec/blather/stanza/presence_spec.rb
260
- - spec/blather/stanza/pubsub/affiliations_spec.rb
261
- - spec/blather/stanza/pubsub/create_spec.rb
262
- - spec/blather/stanza/pubsub/event_spec.rb
263
- - spec/blather/stanza/pubsub/items_spec.rb
264
- - spec/blather/stanza/pubsub/publish_spec.rb
265
- - spec/blather/stanza/pubsub/retract_spec.rb
266
- - spec/blather/stanza/pubsub/subscribe_spec.rb
267
- - spec/blather/stanza/pubsub/subscription_spec.rb
268
- - spec/blather/stanza/pubsub/subscriptions_spec.rb
269
- - spec/blather/stanza/pubsub/unsubscribe_spec.rb
270
- - spec/blather/stanza/pubsub_owner/delete_spec.rb
271
- - spec/blather/stanza/pubsub_owner/purge_spec.rb
272
- - spec/blather/stanza/pubsub_owner_spec.rb
273
- - spec/blather/stanza/pubsub_spec.rb
274
- - spec/blather/stanza/x_spec.rb
275
- - spec/blather/stanza_spec.rb
276
- - spec/blather/stream/client_spec.rb
277
- - spec/blather/stream/component_spec.rb
278
- - spec/blather/stream/parser_spec.rb
279
- - spec/blather/stream/ssl_spec.rb
280
- - spec/blather/xmpp_node_spec.rb
281
- - spec/fixtures/pubsub.rb
282
- - spec/spec_helper.rb
283
- - yard/templates/default/class/html/handlers.erb
284
- - yard/templates/default/class/setup.rb
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
- - --charset=UTF-8
293
- require_paths:
294
- - lib
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
- - !ruby/object:Gem::Version
300
- version: "0"
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
- - !ruby/object:Gem::Version
306
- version: "0"
332
+ requirements:
333
+ - - ! '>='
334
+ - !ruby/object:Gem::Version
335
+ version: '0'
307
336
  requirements: []
308
-
309
337
  rubyforge_project:
310
- rubygems_version: 1.5.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
- - spec/blather/client/client_spec.rb
316
- - spec/blather/client/dsl/pubsub_spec.rb
317
- - spec/blather/client/dsl_spec.rb
318
- - spec/blather/errors/sasl_error_spec.rb
319
- - spec/blather/errors/stanza_error_spec.rb
320
- - spec/blather/errors/stream_error_spec.rb
321
- - spec/blather/errors_spec.rb
322
- - spec/blather/file_transfer_spec.rb
323
- - spec/blather/jid_spec.rb
324
- - spec/blather/roster_item_spec.rb
325
- - spec/blather/roster_spec.rb
326
- - spec/blather/stanza/discos/disco_info_spec.rb
327
- - spec/blather/stanza/discos/disco_items_spec.rb
328
- - spec/blather/stanza/iq/command_spec.rb
329
- - spec/blather/stanza/iq/ibb_spec.rb
330
- - spec/blather/stanza/iq/ping_spec.rb
331
- - spec/blather/stanza/iq/query_spec.rb
332
- - spec/blather/stanza/iq/roster_spec.rb
333
- - spec/blather/stanza/iq/s5b_spec.rb
334
- - spec/blather/stanza/iq/si_spec.rb
335
- - spec/blather/stanza/iq/vcard_spec.rb
336
- - spec/blather/stanza/iq_spec.rb
337
- - spec/blather/stanza/message_spec.rb
338
- - spec/blather/stanza/presence/c_spec.rb
339
- - spec/blather/stanza/presence/status_spec.rb
340
- - spec/blather/stanza/presence/subscription_spec.rb
341
- - spec/blather/stanza/presence_spec.rb
342
- - spec/blather/stanza/pubsub/affiliations_spec.rb
343
- - spec/blather/stanza/pubsub/create_spec.rb
344
- - spec/blather/stanza/pubsub/event_spec.rb
345
- - spec/blather/stanza/pubsub/items_spec.rb
346
- - spec/blather/stanza/pubsub/publish_spec.rb
347
- - spec/blather/stanza/pubsub/retract_spec.rb
348
- - spec/blather/stanza/pubsub/subscribe_spec.rb
349
- - spec/blather/stanza/pubsub/subscription_spec.rb
350
- - spec/blather/stanza/pubsub/subscriptions_spec.rb
351
- - spec/blather/stanza/pubsub/unsubscribe_spec.rb
352
- - spec/blather/stanza/pubsub_owner/delete_spec.rb
353
- - spec/blather/stanza/pubsub_owner/purge_spec.rb
354
- - spec/blather/stanza/pubsub_owner_spec.rb
355
- - spec/blather/stanza/pubsub_spec.rb
356
- - spec/blather/stanza/x_spec.rb
357
- - spec/blather/stanza_spec.rb
358
- - spec/blather/stream/client_spec.rb
359
- - spec/blather/stream/component_spec.rb
360
- - spec/blather/stream/parser_spec.rb
361
- - spec/blather/stream/ssl_spec.rb
362
- - spec/blather/xmpp_node_spec.rb
363
- - spec/fixtures/pubsub.rb
364
- - spec/spec_helper.rb
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