amq-client 0.7.0.alpha33 → 0.7.0.alpha34
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/amq-client.gemspec +1 -1
- data/lib/amq/client/adapter.rb +4 -4
- data/lib/amq/client/version.rb +1 -1
- metadata +4 -4
data/amq-client.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.email = [Base64.decode64("c3Rhc3RueUAxMDFpZGVhcy5jeg==\n"), "michael@novemberain.com"]
|
12
12
|
s.homepage = "http://github.com/ruby-amqp/amq-client"
|
13
13
|
s.summary = "amq-client is a fully-featured, low-level AMQP 0.9.1 client"
|
14
|
-
s.description = "amq-client
|
14
|
+
s.description = "amq-client is a fully-featured, low-level AMQP 0.9.1 client with pluggable networking I/O adapters (EventMachine, cool.io, Eventpanda and so on) and supposed to back more opinionated AMQP clients (such as amqp gem) or be used directly in cases when access to more advanced AMQP 0.9.1 features is more important that convenient APIs"
|
15
15
|
|
16
16
|
# files
|
17
17
|
s.files = `git ls-files`.split("\n").reject { |file| file =~ /^vendor\// || file =~ /^gemfiles\// }
|
data/lib/amq/client/adapter.rb
CHANGED
@@ -401,11 +401,11 @@ module AMQ
|
|
401
401
|
# @api plugin
|
402
402
|
# @see http://bit.ly/htCzCX AMQP 0.9.1 protocol documentation (Section 1.4.2.1.)
|
403
403
|
def handle_start(connection_start)
|
404
|
-
@server_properties = connection_start.server_properties
|
405
|
-
@server_capabilities = @server_properties["capabilities"]
|
404
|
+
@server_properties = connection_start.server_properties
|
405
|
+
@server_capabilities = @server_properties["capabilities"]
|
406
406
|
|
407
|
-
@server_authentication_mechanisms = connection_start.mechanisms.split(" ")
|
408
|
-
@server_locales = Array(connection_start.locales)
|
407
|
+
@server_authentication_mechanisms = (connection_start.mechanisms || "").split(" ")
|
408
|
+
@server_locales = Array(connection_start.locales)
|
409
409
|
|
410
410
|
username = @settings[:user] || @settings[:username]
|
411
411
|
password = @settings[:pass] || @settings[:password]
|
data/lib/amq/client/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: amq-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: -
|
4
|
+
hash: -3702664344
|
5
5
|
prerelease: 6
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 7
|
9
9
|
- 0
|
10
10
|
- alpha
|
11
|
-
-
|
12
|
-
version: 0.7.0.
|
11
|
+
- 34
|
12
|
+
version: 0.7.0.alpha34
|
13
13
|
platform: ruby
|
14
14
|
authors:
|
15
15
|
- Jakub Stastny
|
@@ -54,7 +54,7 @@ dependencies:
|
|
54
54
|
version: 0.7.0.alpha6
|
55
55
|
type: :runtime
|
56
56
|
version_requirements: *id002
|
57
|
-
description: amq-client
|
57
|
+
description: amq-client is a fully-featured, low-level AMQP 0.9.1 client with pluggable networking I/O adapters (EventMachine, cool.io, Eventpanda and so on) and supposed to back more opinionated AMQP clients (such as amqp gem) or be used directly in cases when access to more advanced AMQP 0.9.1 features is more important that convenient APIs
|
58
58
|
email:
|
59
59
|
- stastny@101ideas.cz
|
60
60
|
- michael@novemberain.com
|