amq-client 0.7.0.alpha33 → 0.7.0.alpha34

Sign up to get free protection for your applications and to get access to all the features.
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 supports multiple networking adapters (EventMachine, TCP sockets, cool.io) and supposed to back more opinionated AMQP clients (such as amqp gem, bunny, et cetera) or be used directly in cases when access to more advanced AMQP 0.9.1 features is more important that convenient APIs"
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\// }
@@ -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.dup.freeze
405
- @server_capabilities = @server_properties["capabilities"].dup.freeze
404
+ @server_properties = connection_start.server_properties
405
+ @server_capabilities = @server_properties["capabilities"]
406
406
 
407
- @server_authentication_mechanisms = connection_start.mechanisms.split(" ").freeze
408
- @server_locales = Array(connection_start.locales).freeze
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]
@@ -1,5 +1,5 @@
1
1
  module AMQ
2
2
  module Client
3
- VERSION = "0.7.0.alpha33"
3
+ VERSION = "0.7.0.alpha34"
4
4
  end
5
5
  end
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: -3702664338
4
+ hash: -3702664344
5
5
  prerelease: 6
6
6
  segments:
7
7
  - 0
8
8
  - 7
9
9
  - 0
10
10
  - alpha
11
- - 33
12
- version: 0.7.0.alpha33
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 supports multiple networking adapters (EventMachine, TCP sockets, cool.io) and supposed to back more opinionated AMQP clients (such as amqp gem, bunny, et cetera) or be used directly in cases when access to more advanced AMQP 0.9.1 features is more important that convenient APIs
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