bunny 2.0.0 → 2.0.1
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 +4 -4
- data/ChangeLog.md +17 -0
- data/bunny.gemspec +1 -0
- data/lib/bunny/jruby/socket.rb +2 -1
- data/lib/bunny/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f393384482cb5e911c71c192c961adbef6c48a8b
|
|
4
|
+
data.tar.gz: 1ddb4e29292650bc3d1bff25b53b938cda35c44b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 634808e10988e3211a875a6851886b4c33a191ea81d796193eecefe1b9603cdd2996f90ea55d7e156498cca3c35077606334abc788af2b2cec03755b77fe2b41
|
|
7
|
+
data.tar.gz: 45ea52f14a6f5e1ded3418dadb897684c3052040d76ca1fed6a1680b9d5f3439cdd66063ac77e073304633ac2afb33648e00e39c0719559345b472ec685e068c
|
data/ChangeLog.md
CHANGED
|
@@ -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
|
data/bunny.gemspec
CHANGED
|
@@ -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 = [
|
data/lib/bunny/jruby/socket.rb
CHANGED
|
@@ -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
|
-
|
|
8
|
+
module Socket
|
|
9
|
+
include Bunny::Socket
|
|
9
10
|
|
|
10
11
|
# Reads given number of bytes with an optional timeout
|
|
11
12
|
#
|
data/lib/bunny/version.rb
CHANGED
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.
|
|
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
|
|
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
|
- - ">="
|