hutch 0.27.0 → 1.1.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.
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hutch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Harry Marr
8
- autorequire:
8
+ - Michael Klishin
9
+ autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2019-09-09 00:00:00.000000000 Z
12
+ date: 2022-03-18 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: bunny
@@ -16,20 +17,20 @@ dependencies:
16
17
  requirements:
17
18
  - - ">="
18
19
  - !ruby/object:Gem::Version
19
- version: '2.13'
20
+ version: '2.19'
20
21
  - - "<"
21
22
  - !ruby/object:Gem::Version
22
- version: '2.15'
23
+ version: '3.0'
23
24
  type: :runtime
24
25
  prerelease: false
25
26
  version_requirements: !ruby/object:Gem::Requirement
26
27
  requirements:
27
28
  - - ">="
28
29
  - !ruby/object:Gem::Version
29
- version: '2.13'
30
+ version: '2.19'
30
31
  - - "<"
31
32
  - !ruby/object:Gem::Version
32
- version: '2.15'
33
+ version: '3.0'
33
34
  - !ruby/object:Gem::Dependency
34
35
  name: carrot-top
35
36
  requirement: !ruby/object:Gem::Requirement
@@ -50,14 +51,14 @@ dependencies:
50
51
  requirements:
51
52
  - - "~>"
52
53
  - !ruby/object:Gem::Version
53
- version: '1.12'
54
+ version: '1.15'
54
55
  type: :runtime
55
56
  prerelease: false
56
57
  version_requirements: !ruby/object:Gem::Requirement
57
58
  requirements:
58
59
  - - "~>"
59
60
  - !ruby/object:Gem::Version
60
- version: '1.12'
61
+ version: '1.15'
61
62
  - !ruby/object:Gem::Dependency
62
63
  name: activesupport
63
64
  requirement: !ruby/object:Gem::Requirement
@@ -67,7 +68,7 @@ dependencies:
67
68
  version: '4.2'
68
69
  - - "<"
69
70
  - !ruby/object:Gem::Version
70
- version: '7'
71
+ version: '8'
71
72
  type: :runtime
72
73
  prerelease: false
73
74
  version_requirements: !ruby/object:Gem::Requirement
@@ -77,19 +78,18 @@ dependencies:
77
78
  version: '4.2'
78
79
  - - "<"
79
80
  - !ruby/object:Gem::Version
80
- version: '7'
81
+ version: '8'
81
82
  description: Hutch is a Ruby library for enabling asynchronous inter-service communication
82
- using RabbitMQ.
83
+ using RabbitMQ
83
84
  email:
84
- - developers@gocardless.com
85
85
  executables:
86
86
  - hutch
87
87
  extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
+ - ".github/workflows/test.yml"
90
91
  - ".gitignore"
91
92
  - ".rspec"
92
- - ".travis.yml"
93
93
  - ".yardopts"
94
94
  - CHANGELOG.md
95
95
  - Gemfile
@@ -97,6 +97,8 @@ files:
97
97
  - LICENSE
98
98
  - README.md
99
99
  - Rakefile
100
+ - bin/ci/before_build.sh
101
+ - bin/ci/before_build_docker.sh
100
102
  - bin/ci/install_on_debian.sh
101
103
  - bin/hutch
102
104
  - examples/consumer.rb
@@ -115,10 +117,12 @@ files:
115
117
  - lib/hutch/error_handlers.rb
116
118
  - lib/hutch/error_handlers/airbrake.rb
117
119
  - lib/hutch/error_handlers/base.rb
120
+ - lib/hutch/error_handlers/bugsnag.rb
118
121
  - lib/hutch/error_handlers/honeybadger.rb
119
122
  - lib/hutch/error_handlers/logger.rb
120
123
  - lib/hutch/error_handlers/rollbar.rb
121
124
  - lib/hutch/error_handlers/sentry.rb
125
+ - lib/hutch/error_handlers/sentry_raven.rb
122
126
  - lib/hutch/exceptions.rb
123
127
  - lib/hutch/logging.rb
124
128
  - lib/hutch/message.rb
@@ -126,6 +130,7 @@ files:
126
130
  - lib/hutch/serializers/identity.rb
127
131
  - lib/hutch/serializers/json.rb
128
132
  - lib/hutch/tracers.rb
133
+ - lib/hutch/tracers/datadog.rb
129
134
  - lib/hutch/tracers/newrelic.rb
130
135
  - lib/hutch/tracers/null_tracer.rb
131
136
  - lib/hutch/version.rb
@@ -138,13 +143,16 @@ files:
138
143
  - spec/hutch/config_spec.rb
139
144
  - spec/hutch/consumer_spec.rb
140
145
  - spec/hutch/error_handlers/airbrake_spec.rb
146
+ - spec/hutch/error_handlers/bugsnag_spec.rb
141
147
  - spec/hutch/error_handlers/honeybadger_spec.rb
142
148
  - spec/hutch/error_handlers/logger_spec.rb
143
149
  - spec/hutch/error_handlers/rollbar_spec.rb
150
+ - spec/hutch/error_handlers/sentry_raven_spec.rb
144
151
  - spec/hutch/error_handlers/sentry_spec.rb
145
152
  - spec/hutch/logger_spec.rb
146
153
  - spec/hutch/message_spec.rb
147
154
  - spec/hutch/serializers/json_spec.rb
155
+ - spec/hutch/tracers/datadog_spec.rb
148
156
  - spec/hutch/waiter_spec.rb
149
157
  - spec/hutch/worker_spec.rb
150
158
  - spec/hutch_spec.rb
@@ -158,11 +166,11 @@ files:
158
166
  - templates/default/method_details/text/settings.erb
159
167
  - templates/default/module/html/settings.erb
160
168
  - templates/default/module/setup.rb
161
- homepage: https://github.com/gocardless/hutch
169
+ homepage: https://github.com/ruby-amqp/hutch
162
170
  licenses:
163
171
  - MIT
164
172
  metadata: {}
165
- post_install_message:
173
+ post_install_message:
166
174
  rdoc_options: []
167
175
  require_paths:
168
176
  - lib
@@ -177,23 +185,26 @@ required_rubygems_version: !ruby/object:Gem::Requirement
177
185
  - !ruby/object:Gem::Version
178
186
  version: '0'
179
187
  requirements: []
180
- rubygems_version: 3.0.3
181
- signing_key:
188
+ rubygems_version: 3.1.4
189
+ signing_key:
182
190
  specification_version: 4
183
- summary: Easy inter-service communication using RabbitMQ.
191
+ summary: Opinionated asynchronous inter-service communication using RabbitMQ
184
192
  test_files:
185
193
  - spec/hutch/broker_spec.rb
186
194
  - spec/hutch/cli_spec.rb
187
195
  - spec/hutch/config_spec.rb
188
196
  - spec/hutch/consumer_spec.rb
189
197
  - spec/hutch/error_handlers/airbrake_spec.rb
198
+ - spec/hutch/error_handlers/bugsnag_spec.rb
190
199
  - spec/hutch/error_handlers/honeybadger_spec.rb
191
200
  - spec/hutch/error_handlers/logger_spec.rb
192
201
  - spec/hutch/error_handlers/rollbar_spec.rb
202
+ - spec/hutch/error_handlers/sentry_raven_spec.rb
193
203
  - spec/hutch/error_handlers/sentry_spec.rb
194
204
  - spec/hutch/logger_spec.rb
195
205
  - spec/hutch/message_spec.rb
196
206
  - spec/hutch/serializers/json_spec.rb
207
+ - spec/hutch/tracers/datadog_spec.rb
197
208
  - spec/hutch/waiter_spec.rb
198
209
  - spec/hutch/worker_spec.rb
199
210
  - spec/hutch_spec.rb
data/.travis.yml DELETED
@@ -1,22 +0,0 @@
1
- language: ruby
2
- cache: bundler
3
- before_install:
4
- - gem install bundler
5
- before_script:
6
- - "./bin/ci/install_on_debian.sh"
7
- - until sudo lsof -i:5672; do echo "Waiting for RabbitMQ to start..."; sleep 1; done
8
- matrix:
9
- include:
10
- - rvm: "2.6.4"
11
- - rvm: "2.5.6"
12
- - rvm: "2.4.7"
13
- - rvm: "2.3.8"
14
- - rvm: "jruby-9.2.8.0"
15
- - rvm: "ruby-head"
16
- allow_failures:
17
- rvm:
18
- - "jruby-9.2.8.0"
19
- - ruby-head
20
-
21
- services:
22
- - rabbitmq