spectre-rabbitmq 1.0.0 → 1.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/lib/spectre/rabbitmq.rb +6 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 728c7accc4164192c368a6c860e96896eae2474307d334d33a7b8054cb46f13c
|
4
|
+
data.tar.gz: 5f3cb737b966f2385fcc0857b1623f6c88c02621c18967ce1237d873a8217a67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b223afcfaede8e1a8b3cae0f42a2981c2fc31bcebe6f84945bd45a2ad661604eadcd7f44cd00d48fb2156e0881a4e637d513a2f116b5353862afdcb75380e54c
|
7
|
+
data.tar.gz: a238c1e737c6bcae75b976dd9ccf67901bfcde7a27187ffbb0e2efdaec1a5c30ff349b019427c47a20ed688757246b85f18a93baa1e3073190eda65ec4ef1bed
|
data/lib/spectre/rabbitmq.rb
CHANGED
@@ -96,6 +96,7 @@ module Spectre
|
|
96
96
|
@messages = []
|
97
97
|
|
98
98
|
@config['ssl'] = false
|
99
|
+
@config['port'] = @config['port'] || 5672
|
99
100
|
end
|
100
101
|
|
101
102
|
def action name
|
@@ -108,6 +109,10 @@ module Spectre
|
|
108
109
|
@config['host'] = hostname
|
109
110
|
end
|
110
111
|
|
112
|
+
def port portnum
|
113
|
+
@config['port'] = portnum
|
114
|
+
end
|
115
|
+
|
111
116
|
def use_ssl!
|
112
117
|
@config['ssl'] = true
|
113
118
|
end
|
@@ -211,6 +216,7 @@ module Spectre
|
|
211
216
|
|
212
217
|
@conn = Bunny.new(
|
213
218
|
host: @config['host'],
|
219
|
+
port: @config['port'],
|
214
220
|
ssl: @config['ssl'],
|
215
221
|
username: @config['username'],
|
216
222
|
password: @config['password'],
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spectre-rabbitmq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christian Neubauer
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: spectre-core
|
@@ -53,7 +53,7 @@ metadata:
|
|
53
53
|
homepage_uri: https://github.com/ionos-spectre/spectre-rabbitmq
|
54
54
|
source_code_uri: https://github.com/ionos-spectre/spectre-rabbitmq
|
55
55
|
changelog_uri: https://github.com/ionos-spectre/spectre-rabbitmq/blob/master/CHANGELOG.md
|
56
|
-
post_install_message:
|
56
|
+
post_install_message:
|
57
57
|
rdoc_options: []
|
58
58
|
require_paths:
|
59
59
|
- lib
|
@@ -68,8 +68,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: '0'
|
70
70
|
requirements: []
|
71
|
-
rubygems_version: 3.3.
|
72
|
-
signing_key:
|
71
|
+
rubygems_version: 3.3.26
|
72
|
+
signing_key:
|
73
73
|
specification_version: 4
|
74
74
|
summary: RabbitMQ module for spectre
|
75
75
|
test_files: []
|