rails-transactional-outbox 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.circleci/config.yml +13 -0
- data/.github/workflows/ci.yml +49 -0
- data/.gitignore +13 -0
- data/.rspec +3 -0
- data/.rubocop.yml +150 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +19 -0
- data/Gemfile.lock +142 -0
- data/LICENSE.txt +21 -0
- data/README.md +285 -0
- data/Rakefile +10 -0
- data/bin/console +15 -0
- data/bin/rails_transactional_outbox_health_check +13 -0
- data/bin/setup +8 -0
- data/lib/rails-transactional-outbox.rb +3 -0
- data/lib/rails_transactional_outbox/configuration.rb +33 -0
- data/lib/rails_transactional_outbox/error_handlers/null_error_handler.rb +9 -0
- data/lib/rails_transactional_outbox/error_handlers.rb +6 -0
- data/lib/rails_transactional_outbox/event_type.rb +37 -0
- data/lib/rails_transactional_outbox/exponential_backoff.rb +9 -0
- data/lib/rails_transactional_outbox/health_check.rb +48 -0
- data/lib/rails_transactional_outbox/monitor.rb +47 -0
- data/lib/rails_transactional_outbox/outbox_entries_processor.rb +56 -0
- data/lib/rails_transactional_outbox/outbox_entry_factory.rb +32 -0
- data/lib/rails_transactional_outbox/outbox_model.rb +78 -0
- data/lib/rails_transactional_outbox/railtie.rb +11 -0
- data/lib/rails_transactional_outbox/record_processor.rb +35 -0
- data/lib/rails_transactional_outbox/record_processors/active_record_processor.rb +39 -0
- data/lib/rails_transactional_outbox/record_processors/base_processor.rb +15 -0
- data/lib/rails_transactional_outbox/record_processors.rb +6 -0
- data/lib/rails_transactional_outbox/reliable_model/reliable_callback.rb +41 -0
- data/lib/rails_transactional_outbox/reliable_model/reliable_callbacks_registry.rb +26 -0
- data/lib/rails_transactional_outbox/reliable_model.rb +81 -0
- data/lib/rails_transactional_outbox/runner.rb +106 -0
- data/lib/rails_transactional_outbox/runner_sleep_interval.rb +14 -0
- data/lib/rails_transactional_outbox/tracers/datadog_tracer.rb +35 -0
- data/lib/rails_transactional_outbox/tracers/null_tracer.rb +9 -0
- data/lib/rails_transactional_outbox/tracers.rb +7 -0
- data/lib/rails_transactional_outbox/version.rb +7 -0
- data/lib/rails_transactional_outbox.rb +54 -0
- data/lib/tasks/rails_transactional_outbox.rake +11 -0
- data/rails-transactional-outbox.gemspec +44 -0
- metadata +188 -0
metadata
ADDED
@@ -0,0 +1,188 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rails-transactional-outbox
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Karol Galanciak
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-08-31 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activerecord
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '5'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '5'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: activesupport
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '3.2'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3.2'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: concurrent-ruby
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: dry-monitor
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: redis
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: sigurd
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: zeitwerk
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
description: An implementation of transactional outbox pattern to be used with Rails.
|
112
|
+
email:
|
113
|
+
- karol.galanciak@gmail.com
|
114
|
+
executables:
|
115
|
+
- rails_transactional_outbox_health_check
|
116
|
+
extensions: []
|
117
|
+
extra_rdoc_files: []
|
118
|
+
files:
|
119
|
+
- ".circleci/config.yml"
|
120
|
+
- ".github/workflows/ci.yml"
|
121
|
+
- ".gitignore"
|
122
|
+
- ".rspec"
|
123
|
+
- ".rubocop.yml"
|
124
|
+
- CHANGELOG.md
|
125
|
+
- Gemfile
|
126
|
+
- Gemfile.lock
|
127
|
+
- LICENSE.txt
|
128
|
+
- README.md
|
129
|
+
- Rakefile
|
130
|
+
- bin/console
|
131
|
+
- bin/rails_transactional_outbox_health_check
|
132
|
+
- bin/setup
|
133
|
+
- lib/rails-transactional-outbox.rb
|
134
|
+
- lib/rails_transactional_outbox.rb
|
135
|
+
- lib/rails_transactional_outbox/configuration.rb
|
136
|
+
- lib/rails_transactional_outbox/error_handlers.rb
|
137
|
+
- lib/rails_transactional_outbox/error_handlers/null_error_handler.rb
|
138
|
+
- lib/rails_transactional_outbox/event_type.rb
|
139
|
+
- lib/rails_transactional_outbox/exponential_backoff.rb
|
140
|
+
- lib/rails_transactional_outbox/health_check.rb
|
141
|
+
- lib/rails_transactional_outbox/monitor.rb
|
142
|
+
- lib/rails_transactional_outbox/outbox_entries_processor.rb
|
143
|
+
- lib/rails_transactional_outbox/outbox_entry_factory.rb
|
144
|
+
- lib/rails_transactional_outbox/outbox_model.rb
|
145
|
+
- lib/rails_transactional_outbox/railtie.rb
|
146
|
+
- lib/rails_transactional_outbox/record_processor.rb
|
147
|
+
- lib/rails_transactional_outbox/record_processors.rb
|
148
|
+
- lib/rails_transactional_outbox/record_processors/active_record_processor.rb
|
149
|
+
- lib/rails_transactional_outbox/record_processors/base_processor.rb
|
150
|
+
- lib/rails_transactional_outbox/reliable_model.rb
|
151
|
+
- lib/rails_transactional_outbox/reliable_model/reliable_callback.rb
|
152
|
+
- lib/rails_transactional_outbox/reliable_model/reliable_callbacks_registry.rb
|
153
|
+
- lib/rails_transactional_outbox/runner.rb
|
154
|
+
- lib/rails_transactional_outbox/runner_sleep_interval.rb
|
155
|
+
- lib/rails_transactional_outbox/tracers.rb
|
156
|
+
- lib/rails_transactional_outbox/tracers/datadog_tracer.rb
|
157
|
+
- lib/rails_transactional_outbox/tracers/null_tracer.rb
|
158
|
+
- lib/rails_transactional_outbox/version.rb
|
159
|
+
- lib/tasks/rails_transactional_outbox.rake
|
160
|
+
- rails-transactional-outbox.gemspec
|
161
|
+
homepage: https://github.com/BookingSync/rails-transactional-outbox
|
162
|
+
licenses:
|
163
|
+
- MIT
|
164
|
+
metadata:
|
165
|
+
homepage_uri: https://github.com/BookingSync/rails-transactional-outbox
|
166
|
+
source_code_uri: https://github.com/BookingSync/rails-transactional-outbox
|
167
|
+
changelog_uri: https://github.com/BookingSync/rails-transactional-outbox/blob/master/CHANGELOG.md
|
168
|
+
rubygems_mfa_required: 'true'
|
169
|
+
post_install_message:
|
170
|
+
rdoc_options: []
|
171
|
+
require_paths:
|
172
|
+
- lib
|
173
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
174
|
+
requirements:
|
175
|
+
- - ">="
|
176
|
+
- !ruby/object:Gem::Version
|
177
|
+
version: 2.7.0
|
178
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
179
|
+
requirements:
|
180
|
+
- - ">="
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: '0'
|
183
|
+
requirements: []
|
184
|
+
rubygems_version: 3.3.15
|
185
|
+
signing_key:
|
186
|
+
specification_version: 4
|
187
|
+
summary: An implementation of transactional outbox pattern to be used with Rails.
|
188
|
+
test_files: []
|