bunny 2.9.1 → 2.9.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5c2d922d9e09af55bfba8a9f96cdfe9fc8c0ea26
4
- data.tar.gz: 7117d9a0997d8ff3fe9eb17b8928b3f27eef7e02
3
+ metadata.gz: 10f9758e67c181d0b2066f29dae89a4eec11ca8f
4
+ data.tar.gz: 2f515bc91583877f6a13fa33085ed0069260fcdb
5
5
  SHA512:
6
- metadata.gz: 667febed56aace33bc555dcdb20309b12432fd88e6d55822f43ab41d6a1cffd3849d2843de22a991e8405e169644fedc33f25e784f7afa6b5de1ea9529d50c8c
7
- data.tar.gz: 3112ce586d32f5ebab2a9d3a7f98b11e9ccd116618f3b288ad0755e3e8a69c2ed0d7054170627763376ecb826e8086cd78db9e375af0f8104fbfa0c91cc48810
6
+ metadata.gz: 5ef6792e9f0d3ee42eeee11cac8dd0d758dc43f126fcbc1c8989d185c714bdce35120d6422c340f389acc4441a7f07a1fe53aacabf2f3eba23ccd43afffb7156
7
+ data.tar.gz: 83ca932cf5981a08e6c1fe561f6762b95c61a07968a6b60770f88a6124184d58692f8a13bf66c422734471c49b5bd6c35ec021eda5b87620cf13fdf3190ab2f3
data/README.md CHANGED
@@ -63,11 +63,18 @@ Bunny `1.5.0` and later versions only support RabbitMQ `3.3+`.
63
63
  Bunny `1.4.x` and earlier supports RabbitMQ 2.x and 3.x.
64
64
 
65
65
 
66
- ## Project Maturity
66
+ ## Change Log
67
67
 
68
68
  Bunny is a mature library (started in early 2009) with
69
69
  a stable public API.
70
70
 
71
+ Change logs per release series:
72
+
73
+ * [master](https://github.com/ruby-amqp/bunny/blob/master/ChangeLog.md)
74
+ * [2.9.x](https://github.com/ruby-amqp/bunny/blob/2.9.x-stable/ChangeLog.md)
75
+ * [2.8.x](https://github.com/ruby-amqp/bunny/blob/2.8.x-stable/ChangeLog.md)
76
+
77
+
71
78
 
72
79
  ## Installation & Bundler Dependency
73
80
 
@@ -341,7 +341,7 @@ module Bunny
341
341
  end
342
342
 
343
343
  def prepare_tls_context(opts)
344
- if (opts[:verify_ssl] || opts[:verify_peer] || opts[:verify]).nil?
344
+ if opts.values_at(:verify_ssl, :verify_peer, :verify).all?(&:nil?)
345
345
  opts[:verify_peer] = true
346
346
  end
347
347
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Bunny
4
4
  # @return [String] Version of the library
5
- VERSION = "2.9.1"
5
+ VERSION = "2.9.2"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bunny
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.1
4
+ version: 2.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Duncan
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2018-01-11 00:00:00.000000000 Z
15
+ date: 2018-02-22 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: amq-protocol
@@ -232,7 +232,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
232
232
  version: '0'
233
233
  requirements: []
234
234
  rubyforge_project:
235
- rubygems_version: 2.6.11
235
+ rubygems_version: 2.6.14
236
236
  signing_key:
237
237
  specification_version: 4
238
238
  summary: Popular easy to use Ruby client for RabbitMQ