blather 0.4.15 → 0.4.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. data/.autotest +13 -0
  2. data/.gitignore +18 -0
  3. data/CHANGELOG +150 -0
  4. data/Gemfile +4 -0
  5. data/Rakefile +32 -0
  6. data/TODO.md +2 -0
  7. data/blather.gemspec +49 -0
  8. data/lib/blather.rb +3 -0
  9. data/lib/blather/client/client.rb +139 -1
  10. data/lib/blather/client/dsl.rb +16 -0
  11. data/lib/blather/core_ext/active_support.rb +1 -1
  12. data/lib/blather/core_ext/ipaddr.rb +19 -0
  13. data/lib/blather/file_transfer/s5b.rb +8 -0
  14. data/lib/blather/roster_item.rb +5 -2
  15. data/lib/blather/stanza/disco.rb +7 -0
  16. data/lib/blather/stanza/disco/disco_info.rb +13 -19
  17. data/lib/blather/stanza/disco/disco_items.rb +5 -11
  18. data/lib/blather/stanza/presence.rb +15 -5
  19. data/lib/blather/stanza/presence/c.rb +103 -0
  20. data/lib/blather/stanza/x.rb +2 -4
  21. data/lib/blather/version.rb +3 -0
  22. data/lib/blather/xmpp_node.rb +8 -0
  23. data/spec/blather/client/client_spec.rb +87 -1
  24. data/spec/blather/client/dsl/pubsub_spec.rb +2 -2
  25. data/spec/blather/client/dsl_spec.rb +85 -5
  26. data/spec/blather/core_ext/nokogiri_spec.rb +1 -1
  27. data/spec/blather/errors/sasl_error_spec.rb +1 -1
  28. data/spec/blather/errors/stanza_error_spec.rb +2 -2
  29. data/spec/blather/errors/stream_error_spec.rb +2 -2
  30. data/spec/blather/errors_spec.rb +1 -1
  31. data/spec/blather/file_transfer_spec.rb +2 -2
  32. data/spec/blather/jid_spec.rb +1 -1
  33. data/spec/blather/roster_item_spec.rb +1 -1
  34. data/spec/blather/roster_spec.rb +1 -1
  35. data/spec/blather/stanza/discos/disco_info_spec.rb +1 -11
  36. data/spec/blather/stanza/discos/disco_items_spec.rb +1 -6
  37. data/spec/blather/stanza/iq/command_spec.rb +3 -3
  38. data/spec/blather/stanza/iq/ibb_spec.rb +2 -2
  39. data/spec/blather/stanza/iq/query_spec.rb +1 -1
  40. data/spec/blather/stanza/iq/roster_spec.rb +1 -1
  41. data/spec/blather/stanza/iq/s5b_spec.rb +2 -2
  42. data/spec/blather/stanza/iq/si_spec.rb +2 -2
  43. data/spec/blather/stanza/iq/vcard_spec.rb +3 -3
  44. data/spec/blather/stanza/iq_spec.rb +1 -1
  45. data/spec/blather/stanza/message_spec.rb +2 -2
  46. data/spec/blather/stanza/presence/c_spec.rb +46 -0
  47. data/spec/blather/stanza/presence/status_spec.rb +1 -1
  48. data/spec/blather/stanza/presence/subscription_spec.rb +1 -1
  49. data/spec/blather/stanza/presence_spec.rb +1 -1
  50. data/spec/blather/stanza/pubsub/affiliations_spec.rb +2 -2
  51. data/spec/blather/stanza/pubsub/create_spec.rb +3 -3
  52. data/spec/blather/stanza/pubsub/event_spec.rb +2 -2
  53. data/spec/blather/stanza/pubsub/items_spec.rb +2 -2
  54. data/spec/blather/stanza/pubsub/publish_spec.rb +2 -2
  55. data/spec/blather/stanza/pubsub/retract_spec.rb +2 -2
  56. data/spec/blather/stanza/pubsub/subscribe_spec.rb +2 -2
  57. data/spec/blather/stanza/pubsub/subscription_spec.rb +3 -3
  58. data/spec/blather/stanza/pubsub/subscriptions_spec.rb +2 -2
  59. data/spec/blather/stanza/pubsub/unsubscribe_spec.rb +2 -2
  60. data/spec/blather/stanza/pubsub_owner/delete_spec.rb +2 -2
  61. data/spec/blather/stanza/pubsub_owner/purge_spec.rb +3 -3
  62. data/spec/blather/stanza/pubsub_owner_spec.rb +2 -2
  63. data/spec/blather/stanza/pubsub_spec.rb +2 -8
  64. data/spec/blather/stanza/x_spec.rb +1 -6
  65. data/spec/blather/stanza_spec.rb +1 -1
  66. data/spec/blather/stream/client_spec.rb +3 -3
  67. data/spec/blather/stream/component_spec.rb +1 -1
  68. data/spec/blather/stream/parser_spec.rb +1 -1
  69. data/spec/blather/xmpp_node_spec.rb +1 -1
  70. data/spec/spec_helper.rb +5 -12
  71. data/yard/templates/default/class/html/handlers.erb +18 -0
  72. data/yard/templates/default/class/setup.rb +10 -0
  73. data/yard/templates/default/class/text/handlers.erb +1 -0
  74. metadata +123 -13
  75. data/lib/test.rb +0 -55
@@ -1,5 +1,5 @@
1
- require File.expand_path "../../../../spec_helper", __FILE__
2
- require File.expand_path "../../../../fixtures/pubsub", __FILE__
1
+ require 'spec_helper'
2
+ require 'fixtures/pubsub'
3
3
 
4
4
  def control_affiliations
5
5
  { :owner => ['node1', 'node2'],
@@ -1,5 +1,5 @@
1
- require File.expand_path "../../../../spec_helper", __FILE__
2
- require File.expand_path "../../../../fixtures/pubsub", __FILE__
1
+ require 'spec_helper'
2
+ require 'fixtures/pubsub'
3
3
 
4
4
  describe Blather::Stanza::PubSub::Create do
5
5
  it 'registers itself' do
@@ -53,4 +53,4 @@ describe Blather::Stanza::PubSub::Create do
53
53
  create = Blather::Stanza::PubSub::Create.new :set, 'host', 'node-name'
54
54
  create.node.must_equal 'node-name'
55
55
  end
56
- end
56
+ end
@@ -1,5 +1,5 @@
1
- require File.expand_path "../../../../spec_helper", __FILE__
2
- require File.expand_path "../../../../fixtures/pubsub", __FILE__
1
+ require 'spec_helper'
2
+ require 'fixtures/pubsub'
3
3
 
4
4
  describe Blather::Stanza::PubSub::Event do
5
5
  it 'registers itself' do
@@ -1,5 +1,5 @@
1
- require File.expand_path "../../../../spec_helper", __FILE__
2
- require File.expand_path "../../../../fixtures/pubsub", __FILE__
1
+ require 'spec_helper'
2
+ require 'fixtures/pubsub'
3
3
 
4
4
  describe Blather::Stanza::PubSub::Items do
5
5
  it 'registers itself' do
@@ -1,5 +1,5 @@
1
- require File.expand_path "../../../../spec_helper", __FILE__
2
- require File.expand_path "../../../../fixtures/pubsub", __FILE__
1
+ require 'spec_helper'
2
+ require 'fixtures/pubsub'
3
3
 
4
4
  describe Blather::Stanza::PubSub::Publish do
5
5
  it 'registers itself' do
@@ -1,5 +1,5 @@
1
- require File.expand_path "../../../../spec_helper", __FILE__
2
- require File.expand_path "../../../../fixtures/pubsub", __FILE__
1
+ require 'spec_helper'
2
+ require 'fixtures/pubsub'
3
3
 
4
4
  describe Blather::Stanza::PubSub::Retract do
5
5
  it 'registers itself' do
@@ -1,5 +1,5 @@
1
- require File.expand_path "../../../../spec_helper", __FILE__
2
- require File.expand_path "../../../../fixtures/pubsub", __FILE__
1
+ require 'spec_helper'
2
+ require 'fixtures/pubsub'
3
3
 
4
4
  describe Blather::Stanza::PubSub::Subscribe do
5
5
  it 'registers itself' do
@@ -1,5 +1,5 @@
1
- require File.expand_path "../../../../spec_helper", __FILE__
2
- require File.expand_path "../../../../fixtures/pubsub", __FILE__
1
+ require 'spec_helper'
2
+ require 'fixtures/pubsub'
3
3
 
4
4
  describe Blather::Stanza::PubSub::Subscription do
5
5
  it 'registers itself' do
@@ -93,5 +93,5 @@ describe Blather::Stanza::PubSub::Subscription do
93
93
  Blather::Stanza::PubSub::Subscription.new.must_respond_to :"#{valid_type}?"
94
94
  end
95
95
  end
96
-
96
+
97
97
  end
@@ -1,5 +1,5 @@
1
- require File.expand_path "../../../../spec_helper", __FILE__
2
- require File.expand_path "../../../../fixtures/pubsub", __FILE__
1
+ require 'spec_helper'
2
+ require 'fixtures/pubsub'
3
3
 
4
4
  def control_subscriptions
5
5
  { :subscribed => [{:node => 'node1', :jid => 'francisco@denmark.lit', :subid => 'fd8237yr872h3f289j2'}, {:node => 'node2', :jid => 'francisco@denmark.lit', :subid => 'h8394hf8923ju'}],
@@ -1,5 +1,5 @@
1
- require File.expand_path "../../../../spec_helper", __FILE__
2
- require File.expand_path "../../../../fixtures/pubsub", __FILE__
1
+ require 'spec_helper'
2
+ require 'fixtures/pubsub'
3
3
 
4
4
  describe Blather::Stanza::PubSub::Unsubscribe do
5
5
  it 'registers itself' do
@@ -1,5 +1,5 @@
1
- require File.expand_path "../../../../spec_helper", __FILE__
2
- require File.expand_path "../../../../fixtures/pubsub", __FILE__
1
+ require 'spec_helper'
2
+ require 'fixtures/pubsub'
3
3
 
4
4
  describe Blather::Stanza::PubSubOwner::Delete do
5
5
  it 'registers itself' do
@@ -1,5 +1,5 @@
1
- require File.expand_path "../../../../spec_helper", __FILE__
2
- require File.expand_path "../../../../fixtures/pubsub", __FILE__
1
+ require 'spec_helper'
2
+ require 'fixtures/pubsub'
3
3
 
4
4
  describe Blather::Stanza::PubSubOwner::Purge do
5
5
  it 'registers itself' do
@@ -47,4 +47,4 @@ describe Blather::Stanza::PubSubOwner::Purge do
47
47
  purge = Blather::Stanza::PubSubOwner::Purge.new :set, 'host', 'node-name'
48
48
  purge.node.must_equal 'node-name'
49
49
  end
50
- end
50
+ end
@@ -1,5 +1,5 @@
1
- require File.expand_path "../../../spec_helper", __FILE__
2
- require File.expand_path "../../../fixtures/pubsub", __FILE__
1
+ require 'spec_helper'
2
+ require 'fixtures/pubsub'
3
3
 
4
4
  describe Blather::Stanza::PubSubOwner do
5
5
  it 'registers itself' do
@@ -1,5 +1,5 @@
1
- require File.expand_path "../../../spec_helper", __FILE__
2
- require File.expand_path "../../../fixtures/pubsub", __FILE__
1
+ require 'spec_helper'
2
+ require 'fixtures/pubsub'
3
3
 
4
4
  describe Blather::Stanza::PubSub do
5
5
  it 'registers itself' do
@@ -65,10 +65,4 @@ describe Blather::Stanza::PubSub::PubSubItem do
65
65
  item = Blather::Stanza::PubSub::Items::PubSubItem.new 'bar', payload
66
66
  item.payload.must_equal payload.to_s
67
67
  end
68
-
69
- it 'makes payloads readable as node' do
70
- payload = Blather::XMPPNode.new 'foo'
71
- item = Blather::Stanza::PubSub::Items::PubSubItem.new 'bar', payload
72
- item.payload_node.must_equal payload
73
- end
74
68
  end
@@ -1,4 +1,4 @@
1
- require File.expand_path "../../../spec_helper", __FILE__
1
+ require 'spec_helper'
2
2
 
3
3
  def x_xml
4
4
  <<-XML
@@ -203,11 +203,6 @@ describe Blather::Stanza::X::Field do
203
203
  di.options.size.must_equal 2
204
204
  end
205
205
 
206
- it 'raises an error when compared against a non X::Field' do
207
- a = Blather::Stanza::X::Field.new('secret_message', 'hidden')
208
- lambda { a == 'test' }.must_raise RuntimeError
209
- end
210
-
211
206
  it 'can determine equality' do
212
207
  a = Blather::Stanza::X::Field.new('subject', 'text-single')
213
208
  a.must_equal Blather::Stanza::X::Field.new('subject', 'text-single')
@@ -1,4 +1,4 @@
1
- require File.expand_path "../../spec_helper", __FILE__
1
+ require 'spec_helper'
2
2
 
3
3
  describe Blather::Stanza do
4
4
  it 'provides .next_id helper for generating new IDs' do
@@ -1,5 +1,5 @@
1
1
  require 'resolv'
2
- require File.expand_path "../../../spec_helper", __FILE__
2
+ require 'spec_helper'
3
3
 
4
4
  describe Blather::Stream::Client do
5
5
  class MockServer; end
@@ -1008,12 +1008,12 @@ describe Blather::Stream::Client do
1008
1008
  comp.expects(:send_data).with { |s| s.wont_match(/^<message[^>]*from=/); true }
1009
1009
  comp.send msg
1010
1010
  end
1011
-
1011
+
1012
1012
  it 'sends xml without formatting' do
1013
1013
  client = mock()
1014
1014
  client.stubs(:jid)
1015
1015
  client.stubs(:jid=)
1016
-
1016
+
1017
1017
  msg = Blather::Stanza::Message.new 'to@jid.com', 'body'
1018
1018
  msg.xhtml = '<i>xhtml</i> body'
1019
1019
 
@@ -1,4 +1,4 @@
1
- require File.expand_path "../../../spec_helper", __FILE__
1
+ require 'spec_helper'
2
2
 
3
3
  describe Blather::Stream::Component do
4
4
  class MockServer; end
@@ -1,4 +1,4 @@
1
- require File.expand_path "../../../spec_helper", __FILE__
1
+ require 'spec_helper'
2
2
 
3
3
  describe Blather::Stream::Parser do
4
4
  before do
@@ -1,4 +1,4 @@
1
- require File.expand_path "../../spec_helper", __FILE__
1
+ require 'spec_helper'
2
2
 
3
3
  describe Blather::XMPPNode do
4
4
  before { @doc = Nokogiri::XML::Document.new }
data/spec/spec_helper.rb CHANGED
@@ -1,9 +1,6 @@
1
- $:.unshift File.expand_path(File.join(File.dirname(__FILE__), '..'))
2
- $:.unshift File.expand_path(File.join(File.dirname(__FILE__), *%w[.. lib]))
1
+ $:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
3
2
 
4
3
  require 'blather'
5
- require 'rubygems'
6
- gem 'minitest', '>=1.7.1'
7
4
  require 'minitest/spec'
8
5
  require 'mocha'
9
6
  require 'mocha/expectation_error'
@@ -22,22 +19,18 @@ module MiniTest
22
19
  m
23
20
  }.call
24
21
 
25
- init_val = eval(stmt)
22
+ init_val = eval stmt
26
23
  yield
27
- new_val = eval(stmt)
24
+ new_val = eval stmt
28
25
 
29
26
  assert_equal(args[:by], (new_val - init_val), msg) if args[:by]
30
27
  assert_equal([args[:from], args[:to]], [(init_val if args[:from]), new_val], msg) if args[:to]
31
28
  refute_equal(init_val, new_val, msg) if args.empty?
32
29
  end
33
-
30
+
34
31
  def assert_nothing_raised(*args)
35
32
  self._assertions += 1
36
- if Module === args.last
37
- msg = nil
38
- else
39
- msg = args.pop
40
- end
33
+ msg = Module === args.last ? nil : args.pop
41
34
  begin
42
35
  line = __LINE__; yield
43
36
  rescue Exception => e
@@ -0,0 +1,18 @@
1
+ <!-- <dl class="box">
2
+ <dt class="r0 last">Handler Stack:</dt>
3
+ <dd class="r0 last">
4
+ <span class="inheritName"><%= @handler_stack.first %></span>
5
+ <ul class="fullTree">
6
+ <li><%= @handler_stack.first %></li>
7
+ <% @handler_stack[1..-1].each do |handler| %>
8
+ <li class="next"><%= handler %></li>
9
+ <% end %>
10
+ </ul>
11
+ <a href="#" class="inheritanceTree">show all</a>
12
+ </dd>
13
+ </dl>
14
+ <div class="clear"></div> -->
15
+ <p class="note notetag">
16
+ <strong>Handler Stack:</strong>
17
+ [<%= @handler_stack * ', ' %>]
18
+ </p>
@@ -0,0 +1,10 @@
1
+ def init
2
+ super
3
+ sections.place(:handlers).after(:box_info)
4
+ end
5
+
6
+ def handlers
7
+ @handler_stack = object.inheritance_tree.map { |o| o.tag(:handler).name if (o.respond_to?(:tag) && o.tag(:handler)) }.compact
8
+ return if @handler_stack.empty?
9
+ erb(:handlers)
10
+ end
@@ -0,0 +1 @@
1
+ <%= indent(wrap("Handler Stack: #{@handler_stack * ', '}")) %>]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blather
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
5
- prerelease: false
4
+ hash: 47
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
- - 15
10
- version: 0.4.15
9
+ - 16
10
+ version: 0.4.16
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jeff Smick
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-01-09 00:00:00 +05:00
18
+ date: 2010-09-02 00:00:00 -07:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -24,7 +24,7 @@ dependencies:
24
24
  requirement: &id001 !ruby/object:Gem::Requirement
25
25
  none: false
26
26
  requirements:
27
- - - ">="
27
+ - - ~>
28
28
  - !ruby/object:Gem::Version
29
29
  hash: 35
30
30
  segments:
@@ -40,7 +40,7 @@ dependencies:
40
40
  requirement: &id002 !ruby/object:Gem::Requirement
41
41
  none: false
42
42
  requirements:
43
- - - ">="
43
+ - - ~>
44
44
  - !ruby/object:Gem::Version
45
45
  hash: 7
46
46
  segments:
@@ -56,7 +56,7 @@ dependencies:
56
56
  requirement: &id003 !ruby/object:Gem::Requirement
57
57
  none: false
58
58
  requirements:
59
- - - ">="
59
+ - - ~>
60
60
  - !ruby/object:Gem::Version
61
61
  hash: 9
62
62
  segments:
@@ -66,6 +66,100 @@ dependencies:
66
66
  version: 1.7.1
67
67
  type: :development
68
68
  version_requirements: *id003
69
+ - !ruby/object:Gem::Dependency
70
+ name: mocha
71
+ prerelease: false
72
+ requirement: &id004 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ hash: 35
78
+ segments:
79
+ - 0
80
+ - 9
81
+ - 12
82
+ version: 0.9.12
83
+ type: :development
84
+ version_requirements: *id004
85
+ - !ruby/object:Gem::Dependency
86
+ name: bundler
87
+ prerelease: false
88
+ requirement: &id005 !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ~>
92
+ - !ruby/object:Gem::Version
93
+ hash: 23
94
+ segments:
95
+ - 1
96
+ - 0
97
+ - 0
98
+ version: 1.0.0
99
+ type: :development
100
+ version_requirements: *id005
101
+ - !ruby/object:Gem::Dependency
102
+ name: rcov
103
+ prerelease: false
104
+ requirement: &id006 !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ~>
108
+ - !ruby/object:Gem::Version
109
+ hash: 41
110
+ segments:
111
+ - 0
112
+ - 9
113
+ - 9
114
+ version: 0.9.9
115
+ type: :development
116
+ version_requirements: *id006
117
+ - !ruby/object:Gem::Dependency
118
+ name: yard
119
+ prerelease: false
120
+ requirement: &id007 !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ hash: 5
126
+ segments:
127
+ - 0
128
+ - 6
129
+ - 1
130
+ version: 0.6.1
131
+ type: :development
132
+ version_requirements: *id007
133
+ - !ruby/object:Gem::Dependency
134
+ name: bluecloth
135
+ prerelease: false
136
+ requirement: &id008 !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ~>
140
+ - !ruby/object:Gem::Version
141
+ hash: 11
142
+ segments:
143
+ - 2
144
+ - 1
145
+ - 0
146
+ version: 2.1.0
147
+ type: :development
148
+ version_requirements: *id008
149
+ - !ruby/object:Gem::Dependency
150
+ name: rake
151
+ prerelease: false
152
+ requirement: &id009 !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ">="
156
+ - !ruby/object:Gem::Version
157
+ hash: 3
158
+ segments:
159
+ - 0
160
+ version: "0"
161
+ type: :development
162
+ version_requirements: *id009
69
163
  description: An XMPP DSL for Ruby written on top of EventMachine and Nokogiri
70
164
  email: sprsquish@gmail.com
71
165
  executables: []
@@ -76,6 +170,16 @@ extra_rdoc_files:
76
170
  - LICENSE
77
171
  - README.md
78
172
  files:
173
+ - .autotest
174
+ - .gitignore
175
+ - CHANGELOG
176
+ - Gemfile
177
+ - Gemfile.lock
178
+ - LICENSE
179
+ - README.md
180
+ - Rakefile
181
+ - TODO.md
182
+ - blather.gemspec
79
183
  - examples/echo.rb
80
184
  - examples/execute.rb
81
185
  - examples/ping_pong.rb
@@ -83,6 +187,7 @@ files:
83
187
  - examples/rosterprint.rb
84
188
  - examples/stream_only.rb
85
189
  - examples/xmpp4r/echo.rb
190
+ - lib/.DS_Store
86
191
  - lib/blather.rb
87
192
  - lib/blather/client.rb
88
193
  - lib/blather/client/client.rb
@@ -91,6 +196,7 @@ files:
91
196
  - lib/blather/core_ext/active_support.rb
92
197
  - lib/blather/core_ext/active_support/inheritable_attributes.rb
93
198
  - lib/blather/core_ext/eventmachine.rb
199
+ - lib/blather/core_ext/ipaddr.rb
94
200
  - lib/blather/core_ext/nokogiri.rb
95
201
  - lib/blather/errors.rb
96
202
  - lib/blather/errors/sasl_error.rb
@@ -116,6 +222,7 @@ files:
116
222
  - lib/blather/stanza/iq/vcard.rb
117
223
  - lib/blather/stanza/message.rb
118
224
  - lib/blather/stanza/presence.rb
225
+ - lib/blather/stanza/presence/c.rb
119
226
  - lib/blather/stanza/presence/status.rb
120
227
  - lib/blather/stanza/presence/subscription.rb
121
228
  - lib/blather/stanza/pubsub.rb
@@ -143,10 +250,8 @@ files:
143
250
  - lib/blather/stream/features/session.rb
144
251
  - lib/blather/stream/features/tls.rb
145
252
  - lib/blather/stream/parser.rb
253
+ - lib/blather/version.rb
146
254
  - lib/blather/xmpp_node.rb
147
- - lib/test.rb
148
- - LICENSE
149
- - README.md
150
255
  - spec/blather/client/client_spec.rb
151
256
  - spec/blather/client/dsl/pubsub_spec.rb
152
257
  - spec/blather/client/dsl_spec.rb
@@ -170,6 +275,7 @@ files:
170
275
  - spec/blather/stanza/iq/vcard_spec.rb
171
276
  - spec/blather/stanza/iq_spec.rb
172
277
  - spec/blather/stanza/message_spec.rb
278
+ - spec/blather/stanza/presence/c_spec.rb
173
279
  - spec/blather/stanza/presence/status_spec.rb
174
280
  - spec/blather/stanza/presence/subscription_spec.rb
175
281
  - spec/blather/stanza/presence_spec.rb
@@ -195,6 +301,9 @@ files:
195
301
  - spec/blather/xmpp_node_spec.rb
196
302
  - spec/fixtures/pubsub.rb
197
303
  - spec/spec_helper.rb
304
+ - yard/templates/default/class/html/handlers.erb
305
+ - yard/templates/default/class/setup.rb
306
+ - yard/templates/default/class/text/handlers.erb
198
307
  has_rdoc: true
199
308
  homepage: http://github.com/sprsquish/blather
200
309
  licenses: []
@@ -224,8 +333,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
224
333
  version: "0"
225
334
  requirements: []
226
335
 
227
- rubyforge_project: squishtech
228
- rubygems_version: 1.3.7
336
+ rubyforge_project:
337
+ rubygems_version: 1.6.2
229
338
  signing_key:
230
339
  specification_version: 3
231
340
  summary: Simpler XMPP built for speed
@@ -253,6 +362,7 @@ test_files:
253
362
  - spec/blather/stanza/iq/vcard_spec.rb
254
363
  - spec/blather/stanza/iq_spec.rb
255
364
  - spec/blather/stanza/message_spec.rb
365
+ - spec/blather/stanza/presence/c_spec.rb
256
366
  - spec/blather/stanza/presence/status_spec.rb
257
367
  - spec/blather/stanza/presence/subscription_spec.rb
258
368
  - spec/blather/stanza/presence_spec.rb