bunny 0.7.12 → 0.7.13
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/Gemfile +1 -1
- data/lib/bunny/version.rb +1 -1
- data/lib/qrack/client.rb +1 -1
- data/lib/qrack/transport/buffer08.rb +1 -1
- data/lib/qrack/transport/buffer09.rb +1 -1
- data/spec/spec_08/bunny_spec.rb +1 -1
- data/spec/spec_08/connection_spec.rb +1 -1
- data/spec/spec_08/exchange_spec.rb +6 -1
- data/spec/spec_08/queue_spec.rb +2 -2
- data/spec/spec_09/amqp_url_spec.rb +1 -1
- data/spec/spec_09/bunny_spec.rb +1 -1
- data/spec/spec_09/connection_spec.rb +1 -1
- data/spec/spec_09/exchange_spec.rb +6 -1
- data/spec/spec_09/queue_spec.rb +1 -1
- data/spec/spec_helper.rb +8 -0
- metadata +9 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57852c2972d82a8c8a9742026c86d08bf3c7eb62486720fdff700bf86bbd1a6d
|
4
|
+
data.tar.gz: 64698a92d4a10ef741d965d5688bb7c5ca8a719ef4372616f59b35e6625afd6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af605621674f7d907ae4b8ce550dd178d95b9337e53cd7d4b36285b2060ce1014ee923357f80e74e0986a337388e131d20f7b1702788a4c2bbd38efb0b0303d6
|
7
|
+
data.tar.gz: 96378e392f16a5429fd690b1f9ce4c6c996c1f573a77bc0cbedce701279cb80969bf049219970a6503ee98dcafc9c67dc584bac8c8a2f59e9e5c166b2aee155b
|
data/Gemfile
CHANGED
data/lib/bunny/version.rb
CHANGED
data/lib/qrack/client.rb
CHANGED
@@ -52,7 +52,7 @@ module Qrack
|
|
52
52
|
@verify_ssl = opts[:verify_ssl].nil? || opts[:verify_ssl]
|
53
53
|
@status = :not_connected
|
54
54
|
@frame_max = opts[:frame_max] || 131072
|
55
|
-
@channel_max = opts[:channel_max] ||
|
55
|
+
@channel_max = opts[:channel_max] || 2047
|
56
56
|
@heartbeat = opts[:heartbeat] || 0
|
57
57
|
@connect_timeout = opts[:connect_timeout] || CONNECT_TIMEOUT
|
58
58
|
@read_write_timeout = opts[:socket_timeout]
|
data/spec/spec_08/bunny_spec.rb
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
# If this is not the case, please change the 'Bunny.new' call below to include
|
9
9
|
# the relevant arguments e.g. @b = Bunny.new(:user => 'john', :pass => 'doe', :host => 'foobar')
|
10
10
|
|
11
|
-
|
11
|
+
require_relative "../spec_helper"
|
12
12
|
|
13
13
|
describe Bunny do
|
14
14
|
|
@@ -8,7 +8,7 @@
|
|
8
8
|
# If this is not the case, please change the 'Bunny.new' call below to include
|
9
9
|
# the relevant arguments e.g. @b = Bunny.new(:user => 'john', :pass => 'doe', :host => 'foobar')
|
10
10
|
|
11
|
-
|
11
|
+
require_relative "../spec_helper"
|
12
12
|
|
13
13
|
describe 'Exchange' do
|
14
14
|
|
@@ -135,6 +135,11 @@ describe 'Exchange' do
|
|
135
135
|
opts.should == {:key => 'a', :persistent => true}
|
136
136
|
end
|
137
137
|
|
138
|
+
it "should be able to publish a message with headers containing integer values" do
|
139
|
+
exch = @b.exchange('direct_exchange')
|
140
|
+
exch.publish('This is a published message', :headers => {:a => 1})
|
141
|
+
end
|
142
|
+
|
138
143
|
it "should be able to return an undeliverable message" do
|
139
144
|
exch = @b.exchange('return_exch')
|
140
145
|
exch.publish('This message should be undeliverable', :mandatory => true)
|
data/spec/spec_08/queue_spec.rb
CHANGED
@@ -8,12 +8,12 @@
|
|
8
8
|
# If this is not the case, please change the 'Bunny.new' call below to include
|
9
9
|
# the relevant arguments e.g. @b = Bunny.new(:user => 'john', :pass => 'doe', :host => 'foobar')
|
10
10
|
|
11
|
-
|
11
|
+
require_relative "../spec_helper"
|
12
12
|
|
13
13
|
describe 'Queue' do
|
14
14
|
|
15
15
|
def expect_deprecation_warning_for_publishing_on_queue(q, n=1)
|
16
|
-
Bunny.
|
16
|
+
expect(Bunny).to receive(:deprecation_warning).with("Qrack::Queue#publish", "0.8", anything).exactly(n).times
|
17
17
|
end
|
18
18
|
|
19
19
|
def message_count(queue, sleep_time = 0.1)
|
@@ -6,7 +6,7 @@
|
|
6
6
|
# If this is not the case, please change the 'Bunny.new' call below to include
|
7
7
|
# the relevant arguments e.g. @b = Bunny.new(:user => 'john', :pass => 'doe', :host => 'foobar')
|
8
8
|
|
9
|
-
|
9
|
+
require_relative "../spec_helper"
|
10
10
|
|
11
11
|
describe Bunny do
|
12
12
|
context "AMQP URL parsing" do
|
data/spec/spec_09/bunny_spec.rb
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
# If this is not the case, please change the 'Bunny.new' call below to include
|
9
9
|
# the relevant arguments e.g. @b = Bunny.new(:user => 'john', :pass => 'doe', :host => 'foobar')
|
10
10
|
|
11
|
-
|
11
|
+
require_relative "../spec_helper"
|
12
12
|
|
13
13
|
describe Bunny do
|
14
14
|
|
@@ -8,7 +8,7 @@
|
|
8
8
|
# If this is not the case, please change the 'Bunny.new' call below to include
|
9
9
|
# the relevant arguments e.g. @b = Bunny.new(:user => 'john', :pass => 'doe', :host => 'foobar')
|
10
10
|
|
11
|
-
|
11
|
+
require_relative "../spec_helper"
|
12
12
|
|
13
13
|
describe 'Exchange' do
|
14
14
|
|
@@ -128,6 +128,11 @@ describe 'Exchange' do
|
|
128
128
|
exch.publish('This is a published message')
|
129
129
|
end
|
130
130
|
|
131
|
+
it "should be able to publish a message with headers containing integer values" do
|
132
|
+
exch = @b.exchange('direct_exchange')
|
133
|
+
exch.publish('This is a published message', :headers => {:a => 1})
|
134
|
+
end
|
135
|
+
|
131
136
|
it "should not modify the passed options hash when publishing a message" do
|
132
137
|
exch = @b.exchange('direct_exchange')
|
133
138
|
opts = {:key => 'a', :persistent => true}
|
data/spec/spec_09/queue_spec.rb
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
# If this is not the case, please change the 'Bunny.new' call below to include
|
9
9
|
# the relevant arguments e.g. @b = Bunny.new(:user => 'john', :pass => 'doe', :host => 'foobar')
|
10
10
|
|
11
|
-
|
11
|
+
require_relative "../spec_helper"
|
12
12
|
|
13
13
|
describe 'Queue' do
|
14
14
|
|
data/spec/spec_helper.rb
ADDED
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: 0.7.
|
4
|
+
version: 0.7.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Duncan
|
@@ -9,10 +9,10 @@ authors:
|
|
9
9
|
- Jakub Stastny aka botanicus
|
10
10
|
- Michael S. Klishin
|
11
11
|
- Stefan Kaes
|
12
|
-
autorequire:
|
12
|
+
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date:
|
15
|
+
date: 2023-03-26 00:00:00.000000000 Z
|
16
16
|
dependencies: []
|
17
17
|
description: A synchronous Ruby AMQP client that enables interaction with AMQP-compliant
|
18
18
|
brokers.
|
@@ -94,11 +94,13 @@ files:
|
|
94
94
|
- spec/spec_09/connection_spec.rb
|
95
95
|
- spec/spec_09/exchange_spec.rb
|
96
96
|
- spec/spec_09/queue_spec.rb
|
97
|
+
- spec/spec_helper.rb
|
97
98
|
homepage: http://github.com/ruby-amqp/bunny
|
98
99
|
licenses:
|
99
100
|
- MIT
|
100
101
|
metadata: {}
|
101
|
-
post_install_message:
|
102
|
+
post_install_message: "[\e[32mVersion 0.7.11\e[0m] support boolean values in message
|
103
|
+
headers\n"
|
102
104
|
rdoc_options:
|
103
105
|
- "--main"
|
104
106
|
- README.rdoc
|
@@ -115,8 +117,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
115
117
|
- !ruby/object:Gem::Version
|
116
118
|
version: '0'
|
117
119
|
requirements: []
|
118
|
-
rubygems_version: 3.
|
119
|
-
signing_key:
|
120
|
+
rubygems_version: 3.4.6
|
121
|
+
signing_key:
|
120
122
|
specification_version: 4
|
121
123
|
summary: Synchronous Ruby AMQP 0.9.1 client
|
122
124
|
test_files:
|
@@ -129,3 +131,4 @@ test_files:
|
|
129
131
|
- spec/spec_09/connection_spec.rb
|
130
132
|
- spec/spec_09/exchange_spec.rb
|
131
133
|
- spec/spec_09/queue_spec.rb
|
134
|
+
- spec/spec_helper.rb
|