blather 1.1.3 → 1.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3137c11a3e6735f111d82968f29b5d07b2a02cf3
4
- data.tar.gz: 3f0232a347324f3b097a18f7f15bb476b9760df3
3
+ metadata.gz: a85d8fb5a9772eeec0acbfa01a8209eca2e75444
4
+ data.tar.gz: 45ddd3d5a7f0cadb2dc77092d60ddc126e7edc8f
5
5
  SHA512:
6
- metadata.gz: 47e1df9552305d30fd4c4f0be02fd847f5928203e8f46f7e6669f632e3c51bc412713dc7a000b1b505194cca8d9fc2b52b6cc8cc7f4fc82cf5f4561814140ff7
7
- data.tar.gz: 4ff663ad2a25105bc3d36ac9080319d9750a12b2d41660ae2369c27e31475b3c5224b694f7bba24a877d2b9e2477a0c9abe0ba68f7c3947b78a49c7004c3f09d
6
+ metadata.gz: dc515219630366c9c16ea6dca0df9760bd3a524cc3af1e7548b915ff32acadc85b5b691404c0da258093bf7bfe414b01b4b263e9a6d42af585ffbd6fcebc0141
7
+ data.tar.gz: c099266674663efada77e9daf5b1884633b2bf5f5b8cb2a2419003d1f6d2652d945d67e507b16497f24a5bb942159cae4f154aa6c51aaf1e54415944a5d1507c
@@ -1,5 +1,9 @@
1
1
  # [develop](https://github.com/adhearsion/blather/compare/master...develop)
2
2
 
3
+ # [v1.1.4](https://github.com/adhearsion/blather/compare/v1.1.4...v1.1.4) - [2015-06-12](https://rubygems.org/gems/blather/versions/1.1.4)
4
+ * Bugfix: Typo in passing through connection options
5
+ * Today was a very dark day. I am ashamed of myself.
6
+
3
7
  # [v1.1.3](https://github.com/adhearsion/blather/compare/v1.1.2...v1.1.3) - [2015-06-12](https://rubygems.org/gems/blather/versions/1.1.3)
4
8
  * Bugfix: Expose alternative authentication ID in DSL (correct default)
5
9
 
@@ -221,7 +221,7 @@ module Blather
221
221
  @setup << port
222
222
  @setup << certs
223
223
  @setup << connect_timeout
224
- @setup << options[:authcid]
224
+ @setup << options
225
225
  @queue_size = options[:workqueue_count] || 5
226
226
  self
227
227
  end
@@ -1,3 +1,3 @@
1
1
  module Blather
2
- VERSION = '1.1.3'
2
+ VERSION = '1.1.4'
3
3
  end
@@ -52,14 +52,14 @@ describe Blather::Client do
52
52
  it 'starts up a Component connection when setup without a node' do
53
53
  setup = 'pubsub.jabber.local', 'secret'
54
54
  subject.setup *setup
55
- Blather::Stream::Component.expects(:start).with subject, *setup + [nil, nil, nil, nil, nil]
55
+ Blather::Stream::Component.expects(:start).with subject, *setup + [nil, nil, nil, nil, {}]
56
56
  subject.run
57
57
  end
58
58
 
59
59
  it 'starts up a Client connection when setup with a node' do
60
60
  setup = 'test@jabber.local', 'secret'
61
61
  subject.setup *setup
62
- Blather::Stream::Client.expects(:start).with subject, *setup + [nil, nil, nil, nil, nil]
62
+ Blather::Stream::Client.expects(:start).with subject, *setup + [nil, nil, nil, nil, {}]
63
63
  subject.run
64
64
  end
65
65
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blather
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Smick