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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7448124e158fa2208a578597497b1be803332c97821ec5ed8de94a796d42b9e4
4
- data.tar.gz: 4c90b0d5446c3c042fa1193d5856d86a268db046e90d8bd6972d1eba7a156e5d
3
+ metadata.gz: 57852c2972d82a8c8a9742026c86d08bf3c7eb62486720fdff700bf86bbd1a6d
4
+ data.tar.gz: 64698a92d4a10ef741d965d5688bb7c5ca8a719ef4372616f59b35e6625afd6d
5
5
  SHA512:
6
- metadata.gz: dcc378aeb3bde03df5377ea30f82815dff363c8353313b80aae0712e70e18e44bcb2af7bbe83ff1615788a49a613e7a92745a423840cc10eee8c0ac7e659d097
7
- data.tar.gz: c0b8095a6d419464433e2396ee5d0cda1624c967e94562c7c41876ecc27b80a4e94329f01ea240ded0a7dd7f5642e1be7579522fd9885607bb26beb07ba7bf32
6
+ metadata.gz: af605621674f7d907ae4b8ce550dd178d95b9337e53cd7d4b36285b2060ce1014ee923357f80e74e0986a337388e131d20f7b1702788a4c2bbd38efb0b0303d6
7
+ data.tar.gz: 96378e392f16a5429fd690b1f9ce4c6c996c1f573a77bc0cbedce701279cb80969bf049219970a6503ee98dcafc9c67dc584bac8c8a2f59e9e5c166b2aee155b
data/Gemfile CHANGED
@@ -35,7 +35,7 @@ group :development do
35
35
  end
36
36
 
37
37
  group :test do
38
- gem "rspec", "~> 3.6.0"
38
+ gem "rspec"
39
39
  end
40
40
 
41
41
  gemspec
data/lib/bunny/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module Bunny
4
- VERSION = "0.7.12"
4
+ VERSION = "0.7.13"
5
5
  end
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] || 0
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]
@@ -194,7 +194,7 @@ module Qrack
194
194
  when String
195
195
  table.write(:octet, 83) # 'S'
196
196
  table.write(:longstr, value.to_s)
197
- when Fixnum
197
+ when Integer
198
198
  table.write(:octet, 73) # 'I'
199
199
  table.write(:long, value)
200
200
  when Float
@@ -194,7 +194,7 @@ module Qrack
194
194
  when String
195
195
  table.write(:octet, 83) # 'S'
196
196
  table.write(:longstr, value.to_s)
197
- when Fixnum
197
+ when Integer
198
198
  table.write(:octet, 73) # 'I'
199
199
  table.write(:long, value)
200
200
  when Float
@@ -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
- require File.expand_path(File.join(File.dirname(__FILE__), %w[.. .. lib bunny]))
11
+ require_relative "../spec_helper"
12
12
 
13
13
  describe Bunny do
14
14
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # connection_spec.rb
4
4
 
5
- require File.expand_path(File.join(File.dirname(__FILE__), %w[.. .. lib bunny]))
5
+ require_relative "../spec_helper"
6
6
 
7
7
  describe Bunny do
8
8
 
@@ -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
- require File.expand_path(File.join(File.dirname(__FILE__), %w[.. .. lib bunny]))
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)
@@ -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
- require File.expand_path(File.join(File.dirname(__FILE__), %w[.. .. lib bunny]))
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.should_receive(:deprecation_warning).with("Qrack::Queue#publish", "0.8", anything).exactly(n).times
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
- require "bunny"
9
+ require_relative "../spec_helper"
10
10
 
11
11
  describe Bunny do
12
12
  context "AMQP URL parsing" do
@@ -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
- require "bunny"
11
+ require_relative "../spec_helper"
12
12
 
13
13
  describe Bunny do
14
14
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # connection_spec.rb
4
4
 
5
- require "bunny"
5
+ require_relative "../spec_helper"
6
6
 
7
7
  describe Bunny do
8
8
 
@@ -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
- require "bunny"
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}
@@ -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
- require "bunny"
11
+ require_relative "../spec_helper"
12
12
 
13
13
  describe 'Queue' do
14
14
 
@@ -0,0 +1,8 @@
1
+ require "bunny"
2
+
3
+ # Support both old and new rspec syntax.
4
+ RSpec.configure do |config|
5
+ config.expect_with :rspec do |c|
6
+ c.syntax = [:should, :expect]
7
+ end
8
+ 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: 0.7.12
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: 2019-02-27 00:00:00.000000000 Z
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.0.2
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