bunny 2.0.0 → 2.0.1

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: a03370c05bd0085362a6eb7776c5f8bac7baa228
4
- data.tar.gz: f23f3d9759ac91de7a9f43a17ca4681aa9da9192
3
+ metadata.gz: f393384482cb5e911c71c192c961adbef6c48a8b
4
+ data.tar.gz: 1ddb4e29292650bc3d1bff25b53b938cda35c44b
5
5
  SHA512:
6
- metadata.gz: 1beba2d8994c8d8a977a19085d62dc4afe5d319bf5768aad48b145636fe0217b6a7e3dacb5f2a0b0161609d291c4a6fc9bc5856dfbfbbe741f28eea5416d8ca0
7
- data.tar.gz: 3639354508b8bb3b0e637372a6c4b6295a7422d15b09354604c3c00af7db55a70d866d39170b4fac4f06ae1b82f7658749152e6b99d90f77db18e1dabb96f105
6
+ metadata.gz: 634808e10988e3211a875a6851886b4c33a191ea81d796193eecefe1b9603cdd2996f90ea55d7e156498cca3c35077606334abc788af2b2cec03755b77fe2b41
7
+ data.tar.gz: 45ea52f14a6f5e1ded3418dadb897684c3052040d76ca1fed6a1680b9d5f3439cdd66063ac77e073304633ac2afb33648e00e39c0719559345b472ec685e068c
@@ -1,3 +1,20 @@
1
+ ## Changes between Bunny 2.0.0 and 2.0.1
2
+
3
+ ### Explicit Ruby 2.0 Requirement
4
+
5
+ Bunny now requires Ruby 2.0 in the gemspec.
6
+
7
+ Contributed by Carl Hörberg.
8
+
9
+ ### JRuby Fix
10
+
11
+ Bunny runs again on JRuby. Note that
12
+ JRuby users are strongly advised to use March Hare instead.
13
+
14
+ Contributed by Teodor Pripoae.
15
+
16
+
17
+
1
18
  ## Changes between Bunny 1.7.0 and 2.0.0
2
19
 
3
20
  Bunny `2.0` doesn't have any breaking API changes
@@ -11,6 +11,7 @@ Gem::Specification.new do |s|
11
11
  s.summary = "Popular easy to use Ruby client for RabbitMQ"
12
12
  s.description = "Easy to use, feature complete Ruby client for RabbitMQ 3.3 and later versions."
13
13
  s.license = "MIT"
14
+ s.required_ruby_version = Gem::Requirement.new(">= 2.0")
14
15
 
15
16
  # Sorted alphabetically.
16
17
  s.authors = [
@@ -5,7 +5,8 @@ module Bunny
5
5
  # TCP socket extension that uses Socket#readpartial to avoid excessive CPU
6
6
  # burn after some time. See issue #165.
7
7
  # @private
8
- class Socket < Bunny::Socket
8
+ module Socket
9
+ include Bunny::Socket
9
10
 
10
11
  # Reads given number of bytes with an optional timeout
11
12
  #
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Bunny
4
4
  # @return [String] Version of the library
5
- VERSION = "2.0.0"
5
+ VERSION = "2.0.1"
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.0.0
4
+ version: 2.0.1
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: 2015-07-23 00:00:00.000000000 Z
15
+ date: 2015-08-07 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: amq-protocol
@@ -224,7 +224,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
224
224
  requirements:
225
225
  - - ">="
226
226
  - !ruby/object:Gem::Version
227
- version: '0'
227
+ version: '2.0'
228
228
  required_rubygems_version: !ruby/object:Gem::Requirement
229
229
  requirements:
230
230
  - - ">="