mumukit-nuntius 6.6.0 → 6.7.0

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: 4fc18f07275f31c47b7c319636d863c478db44480df61bd8ccb756b28b8a4ed6
4
- data.tar.gz: 062df9f35a58b132f6ee384469024716f99cdab2ee705fb25288bd9b5019d31b
3
+ metadata.gz: 67dee0ac8c602c7ea4e1a888d9f142da03ed5f35328cd5f5691e20a6e618111a
4
+ data.tar.gz: cc4912beac5cc96a97d3a0c52195cb2a5d7510abb1029f936f215bc1723327c5
5
5
  SHA512:
6
- metadata.gz: e832561715b9600fc68fb20f1d0f81f246a7ef9a5255184d67827b91b028b306a33303cb9c74ab41b19c4695581c5e87d03caa2c6c69e421bc31b12a33918dcf
7
- data.tar.gz: 58d7e01c8438e97a2d647f6f0263192fb7adc3ca8bfc11a4e08ddba02085838fe16a39fba46b1b4507616f1ae31dd407ba6db3cab06641ffac04b1296d767310
6
+ metadata.gz: 0cb801af7c83862c4a79e32685d1bb2f76a35532ec0d675c82a3cb78ed29917935f8bab0c7447c600b51978940c2c7c1e86d3253f9e0200597366321c088d9ed
7
+ data.tar.gz: '09876957125b07b88ed7bab6dacd868ee4840e41803dbf3722a9dc63a2f7f7929f3765591cc4957c2bef5a5c5e084c6886282fc8f4ca6acc0a33dea840c3fd2d'
data/config/rabbit.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  production:
2
2
  host: <%=ENV['MUMUKI_RABBIT_HOST']%>
3
- port: <%=ENV['MUMUKI_RABBIT_PORT']%>
3
+ port: <%=ENV['MUMUKI_RABBIT_PORT']%> || 5672
4
4
  user: <%=ENV['MUMUKI_RABBIT_USERNAME']%>
5
5
  password: <%=ENV['MUMUKI_RABBIT_PASSWORD']%>
6
6
  database: <%=ENV['MUMUKI_RABBIT_DATABASE']%>
@@ -15,7 +15,7 @@ class Mumukit::Nuntius::Connection
15
15
 
16
16
  def establish_connection
17
17
  raise 'Nuntius connection already established' if connected?
18
- @connection = Bunny.new(host: config[:host], user: config[:user], password: config[:password])
18
+ @connection = Bunny.new(host: config[:host], port: config[:port], user: config[:user], password: config[:password])
19
19
  end
20
20
 
21
21
  def connected?
@@ -1,5 +1,5 @@
1
1
  module Mumukit
2
2
  module Nuntius
3
- VERSION = '6.6.0'
3
+ VERSION = '6.7.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mumukit-nuntius
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.6.0
4
+ version: 6.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Agustin Pina
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-11-19 00:00:00.000000000 Z
12
+ date: 2022-07-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler