amq-client 0.8.5 → 0.8.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
 
21
21
  # Dependencies
22
22
  s.add_dependency "eventmachine"
23
- s.add_dependency "amq-protocol", ">= 0.8.0"
23
+ s.add_dependency "amq-protocol", ">= 0.8.4"
24
24
 
25
25
 
26
26
  # RubyForge
@@ -87,7 +87,7 @@ module AMQ
87
87
  #
88
88
 
89
89
  def initialize(settings)
90
- super("AMQP broker closed TCP connection before authentication succeeded: this usually means authentication failure due to misconfiguration. Settings are #{settings.inspect}")
90
+ super("AMQP broker closed TCP connection before authentication succeeded: this usually means authentication failure due to misconfiguration or that RabbitMQ version does not support AMQP 0.9.1. Please see http://bit.ly/amqp-gem-080-and-rabbitmq-versions and check your configuration. Settings are #{settings.inspect}.")
91
91
  end # initialize(settings)
92
92
  end # PossibleAuthenticationFailureError
93
93
 
@@ -24,9 +24,3 @@ module AMQ
24
24
  end # Framing
25
25
  end # Client
26
26
  end # AMQ
27
-
28
- class AMQ::Protocol::Frame
29
- def final?
30
- true ####### HACK for testing, implement & move to amq-protocol!
31
- end
32
- end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module AMQ
4
4
  module Client
5
- VERSION = "0.8.5"
5
+ VERSION = "0.8.6"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amq-client
3
3
  version: !ruby/object:Gem::Version
4
- hash: 53
4
+ hash: 51
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 8
9
- - 5
10
- version: 0.8.5
9
+ - 6
10
+ version: 0.8.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jakub Stastny
@@ -18,7 +18,7 @@ autorequire:
18
18
  bindir: bin
19
19
  cert_chain: []
20
20
 
21
- date: 2011-10-28 00:00:00 Z
21
+ date: 2011-11-09 00:00:00 Z
22
22
  dependencies:
23
23
  - !ruby/object:Gem::Dependency
24
24
  name: eventmachine
@@ -42,12 +42,12 @@ dependencies:
42
42
  requirements:
43
43
  - - ">="
44
44
  - !ruby/object:Gem::Version
45
- hash: 63
45
+ hash: 55
46
46
  segments:
47
47
  - 0
48
48
  - 8
49
- - 0
50
- version: 0.8.0
49
+ - 4
50
+ version: 0.8.4
51
51
  type: :runtime
52
52
  version_requirements: *id002
53
53
  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