basquiat 1.3.1 → 1.3.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 +4 -4
- data/README.md +7 -6
- data/lib/basquiat/adapters/rabbitmq/configuration.rb +1 -1
- data/lib/basquiat/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a9d30c5b9e300401aaae4a4f540e669089bd54fb
|
|
4
|
+
data.tar.gz: 8f55ad82b149cf79dc7298f456ddd2f07d60eba4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a6ab916581627800c6244ebf6a0c1c50e8f137d3a0d2f34212369e6ddec45b9e9402ca97bda3fb448494c865c680a0a5de8f41df35b018b0b60a85ae8f5136d9
|
|
7
|
+
data.tar.gz: 34cfdbe22e53a74953de85808ec55493b7dc95317476e1cfa71c75f851198b3fc6caa7ba558f918fd60d53fc9baf9f99bd662d44e427ead0fdf6e2fc1c7ccf82
|
data/README.md
CHANGED
|
@@ -96,15 +96,16 @@ development: #full example of the RabbitMq option
|
|
|
96
96
|
queue_name: 'basquiat.queue'
|
|
97
97
|
default_adapter: Basquiat::Adapters::RabbitMq
|
|
98
98
|
adapter_options:
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
99
|
+
connection:
|
|
100
|
+
hosts:
|
|
101
|
+
- 'localhost'
|
|
102
|
+
port: 5672
|
|
103
|
+
auth:
|
|
104
|
+
user: 'guest'
|
|
105
|
+
password: 'guest'
|
|
102
106
|
publisher:
|
|
103
107
|
confirm: true
|
|
104
108
|
persistent: true
|
|
105
|
-
auth:
|
|
106
|
-
user: 'guest'
|
|
107
|
-
password: 'guest'
|
|
108
109
|
requeue:
|
|
109
110
|
enabled: true
|
|
110
111
|
strategy: delayed_delivery
|
|
@@ -38,7 +38,7 @@ module Basquiat
|
|
|
38
38
|
# @option user_opts [Hash{Symbol=>Object}] :requeue
|
|
39
39
|
# @return [Hash] the configuration option hash
|
|
40
40
|
def merge_user_options(**user_opts)
|
|
41
|
-
@options.
|
|
41
|
+
@options.deep_merge(user_opts)
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
# @return [Hash] the connection options
|
data/lib/basquiat/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: basquiat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marcello "mereghost" Rocha
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-05-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|