bug_bunny 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31500216aa7e9c86af5f6ec88557ee0aa2f242bffd4d94ab09d9ebf80fcb8e68
4
- data.tar.gz: bab1c226bcad2e1e4b890cdf48ee88f10a9d801ccf1e39a1473881b91f5de57f
3
+ metadata.gz: 04b430be6237b82713e183846665873b602b15ebece1dfc307031f92a665eb0f
4
+ data.tar.gz: 922b431bf9bf427cd7dab5ece6abc657b08dd759b72c52e7468f4c5d6e58c634
5
5
  SHA512:
6
- metadata.gz: 1df32f70805935baf2f3029955701b65d83caf330ee4f12f02f95267c880337d4dadcdfe086fe1990fb9de0e917a1bc8fd86feb4c48bcf8d194f8aee0f92bf2e
7
- data.tar.gz: 1b926db41aad313ae52542933c5932d2237451eeac398d5841315419b061afb16c37035687d1fb373817fece679b74ccb1d38601a0307d5fb63c087e24b10f6a
6
+ metadata.gz: fef3ed50441448e66f7e23d02189f5b8b51294c14bdfc61f27d3a68fb3b2179b9ada92bdea906ae0d4605a3761a051700a1e3f4957bbb8c4ef6afa0518e2a238
7
+ data.tar.gz: 3192b179b3e35c4b2850b5933410afdc71a9a904d1df1673a88efb4bb0e66ef2d5952d04def37b7aff82a580b26943d362169ff896924f4ff91a9947223caeb5
@@ -97,7 +97,8 @@ module BugBunny
97
97
  logger&.debug('Stablish new connection to rabbit')
98
98
  logger&.debug(BugBunny.configuration.url)
99
99
 
100
- Bunny.new(BugBunny.configuration.url, options).start
100
+ rabbit_conn = Bunny.new(BugBunny.configuration.url, options)
101
+ rabbit_conn.start
101
102
 
102
103
  logger&.debug("New status connection: #{rabbit_conn.status}")
103
104
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BugBunny
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bug_bunny
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
  - gabix
@@ -15,28 +15,14 @@ dependencies:
15
15
  requirements:
16
16
  - - "~>"
17
17
  - !ruby/object:Gem::Version
18
- version: '2.20'
18
+ version: 2.24.0
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - "~>"
24
24
  - !ruby/object:Gem::Version
25
- version: '2.20'
26
- - !ruby/object:Gem::Dependency
27
- name: rubocop
28
- requirement: !ruby/object:Gem::Requirement
29
- requirements:
30
- - - ">="
31
- - !ruby/object:Gem::Version
32
- version: '0'
33
- type: :development
34
- prerelease: false
35
- version_requirements: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - ">="
38
- - !ruby/object:Gem::Version
39
- version: '0'
25
+ version: 2.24.0
40
26
  description: Gem for sync and async comunication via rabbit bunny.
41
27
  email:
42
28
  - gab.edera@gmail.com
@@ -82,7 +68,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
68
  - !ruby/object:Gem::Version
83
69
  version: '0'
84
70
  requirements: []
85
- rubygems_version: 3.6.9
71
+ rubygems_version: 3.6.7
86
72
  specification_version: 4
87
73
  summary: Gem for sync and async comunication via rabbit bunny.
88
74
  test_files: []