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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/spectre/rabbitmq.rb +6 -0
  3. metadata +6 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ff5d268247815c24c9ef18aa240d48880d939103f18219daedd70fe27babc866
4
- data.tar.gz: 2c41a4cf22e0091c7d15e094c6bd226fa802f879e826fbf0ad675fa806cc0a92
3
+ metadata.gz: 728c7accc4164192c368a6c860e96896eae2474307d334d33a7b8054cb46f13c
4
+ data.tar.gz: 5f3cb737b966f2385fcc0857b1623f6c88c02621c18967ce1237d873a8217a67
5
5
  SHA512:
6
- metadata.gz: e41362194b709e48652fc34de990258b9019f81b2b69e05c21559fec0998be5c92d6649dd0cfaf1e9f96c8a809f35e940cf1c90b7adb99914a597bc4bbe29c7f
7
- data.tar.gz: c85e00ecf1670ba4dd90079083ba8c4ec3763873a688e4f2b3ad204a577ca76bc0810fcdf6b8f7096d2cce647728498447f605d35ebd4834395d9a97db7fa0ec
6
+ metadata.gz: b223afcfaede8e1a8b3cae0f42a2981c2fc31bcebe6f84945bd45a2ad661604eadcd7f44cd00d48fb2156e0881a4e637d513a2f116b5353862afdcb75380e54c
7
+ data.tar.gz: a238c1e737c6bcae75b976dd9ccf67901bfcde7a27187ffbb0e2efdaec1a5c30ff349b019427c47a20ed688757246b85f18a93baa1e3073190eda65ec4ef1bed
@@ -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.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-20 00:00:00.000000000 Z
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.7
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: []