exception_notification 4.5.0 → 5.0.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 +4 -4
- data/CHANGELOG.rdoc +16 -0
- data/CONTRIBUTING.md +23 -51
- data/Gemfile +1 -1
- data/Gemfile.lock +346 -0
- data/README.md +149 -59
- data/Rakefile +14 -7
- data/docs/notifiers/slack.md +0 -7
- data/exception_notification.gemspec +28 -31
- data/gemfiles/pinned_dependencies.gemfile +8 -0
- data/gemfiles/rails7_1.gemfile +5 -0
- data/gemfiles/rails7_2.gemfile +5 -0
- data/gemfiles/rails8_0.gemfile +5 -0
- data/lib/exception_notification/rack.rb +4 -4
- data/lib/exception_notification/rails/runner_tie.rb +31 -0
- data/lib/exception_notification/rails.rb +16 -0
- data/lib/exception_notification/rake.rb +56 -0
- data/lib/exception_notification/resque.rb +2 -2
- data/lib/exception_notification/sidekiq.rb +8 -23
- data/lib/exception_notification/version.rb +1 -1
- data/lib/exception_notification.rb +3 -3
- data/lib/exception_notifier/datadog_notifier.rb +26 -26
- data/lib/exception_notifier/email_notifier.rb +34 -30
- data/lib/exception_notifier/google_chat_notifier.rb +9 -9
- data/lib/exception_notifier/hipchat_notifier.rb +12 -12
- data/lib/exception_notifier/irc_notifier.rb +6 -6
- data/lib/exception_notifier/mattermost_notifier.rb +13 -13
- data/lib/exception_notifier/modules/error_grouping.rb +5 -5
- data/lib/exception_notifier/modules/formatter.rb +12 -12
- data/lib/exception_notifier/notifier.rb +3 -3
- data/lib/exception_notifier/slack_notifier.rb +18 -15
- data/lib/exception_notifier/sns_notifier.rb +9 -9
- data/lib/exception_notifier/teams_notifier.rb +66 -59
- data/lib/exception_notifier/views/exception_notifier/_data.html.erb +1 -1
- data/lib/exception_notifier/views/exception_notifier/_data.text.erb +1 -1
- data/lib/exception_notifier/views/exception_notifier/_session.html.erb +1 -1
- data/lib/exception_notifier/views/exception_notifier/_session.text.erb +1 -1
- data/lib/exception_notifier/webhook_notifier.rb +3 -3
- data/lib/exception_notifier.rb +27 -26
- data/lib/generators/exception_notification/install_generator.rb +8 -8
- data/lib/generators/exception_notification/templates/exception_notification.rb.erb +28 -27
- data/test/exception_notification/rack_test.rb +14 -14
- data/test/exception_notification/rake_test.rb +38 -0
- data/test/exception_notification/resque_test.rb +14 -14
- data/test/exception_notifier/datadog_notifier_test.rb +47 -46
- data/test/exception_notifier/email_notifier_test.rb +89 -104
- data/test/exception_notifier/google_chat_notifier_test.rb +77 -77
- data/test/exception_notifier/hipchat_notifier_test.rb +76 -80
- data/test/exception_notifier/irc_notifier_test.rb +26 -26
- data/test/exception_notifier/mattermost_notifier_test.rb +77 -77
- data/test/exception_notifier/modules/error_grouping_test.rb +39 -39
- data/test/exception_notifier/modules/formatter_test.rb +51 -49
- data/test/exception_notifier/sidekiq_test.rb +21 -10
- data/test/exception_notifier/slack_notifier_test.rb +66 -67
- data/test/exception_notifier/sns_notifier_test.rb +73 -70
- data/test/exception_notifier/teams_notifier_test.rb +33 -33
- data/test/exception_notifier/webhook_notifier_test.rb +34 -34
- data/test/exception_notifier_test.rb +51 -41
- data/test/test_helper.rb +8 -11
- metadata +58 -99
- data/Appraisals +0 -9
- data/examples/sample_app.rb +0 -56
- data/examples/sinatra/Gemfile +0 -10
- data/examples/sinatra/Gemfile.lock +0 -95
- data/examples/sinatra/Procfile +0 -2
- data/examples/sinatra/README.md +0 -11
- data/examples/sinatra/config.ru +0 -5
- data/examples/sinatra/sinatra_app.rb +0 -40
- data/gemfiles/rails5_2.gemfile +0 -7
- data/gemfiles/rails6_0.gemfile +0 -7
- data/gemfiles/rails6_1.gemfile +0 -7
- data/gemfiles/rails7_0.gemfile +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e7052b1e076f4ff2aac2a4aa139d0ddb2a2b6f5b3af1afcc4323e1c8f347db04
|
4
|
+
data.tar.gz: 54f3386901d556ec7c3544533d94a5757490645e677b42c325721cef5d4787ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68f0a94a1167c436ececbfcf4a48df910e0dd719d3b2385f790a24b285276a48989dbc27cf2e24b26a6e98221cea008192218af4405f6ce954d807b3705357ef
|
7
|
+
data.tar.gz: c28bf196e2ce258608c55614d3e42ca8053dc8e7a18b854aa78c8c54fc097f099b9f1d51313a72a7f677b3adb30b0403f7863c90acad78c72ca0e17a5eede527
|
data/CHANGELOG.rdoc
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
== Unreleased
|
2
|
+
|
3
|
+
nil
|
4
|
+
|
5
|
+
== 4.6.0
|
6
|
+
|
7
|
+
https://github.com/smartinez87/exception_notification/releases/tag/v4.6.0
|
8
|
+
|
9
|
+
* Rails 8 compatibility (@kmcphillips)
|
10
|
+
* Exception data for teams channel notification (@rachitpant)
|
11
|
+
* Report exceptions occurring in Rake tasks and runner commands (@TylerRick)
|
12
|
+
* suggest Rails.env.local? in ignore_if block (@glaszig)
|
13
|
+
* Improve compatibility with frozen string literal (@Throne3d)
|
14
|
+
* Remove unnecessary :channel option from Slack guide doc (@westonganger)
|
15
|
+
* Add Content-Type header to Slack notifier - req. for discord (@cdadityang)
|
16
|
+
|
1
17
|
== 4.5.0
|
2
18
|
|
3
19
|
* enhancements
|
data/CONTRIBUTING.md
CHANGED
@@ -1,61 +1,33 @@
|
|
1
1
|
# How to contribute
|
2
2
|
|
3
|
-
|
4
|
-
In order to keep it as easy as possible to contribute changes, here are a few guidelines that we
|
5
|
-
need contributors to follow:
|
3
|
+
Pull requests welcome! Please try to make them as complete and clear as possible, with reproduction steps and good tests.
|
6
4
|
|
7
|
-
## First of all
|
8
|
-
|
9
|
-
* Check if the issue you're going to submit isn't already submitted in
|
10
|
-
the [Issues](https://github.com/smartinez87/exception_notification/issues) page.
|
11
5
|
|
12
6
|
## Issues
|
13
7
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
* Even better, provide a failing test case for it.
|
20
|
-
|
21
|
-
To help you add information to an issue, you can use the sample_app.
|
22
|
-
Steps to use sample_app:
|
23
|
-
|
24
|
-
1) Add your configuration to (ex. with webhook):
|
25
|
-
```ruby
|
26
|
-
config.middleware.use ExceptionNotification::Rack,
|
27
|
-
# -----------------------------------
|
28
|
-
# Change this with your configuration
|
29
|
-
# https://github.com/smartinez87/exception_notification#notifiers
|
30
|
-
webhook: {
|
31
|
-
url: 'http://domain.com:5555/hubot/path'
|
32
|
-
}
|
33
|
-
# -----------------------------------
|
34
|
-
```
|
8
|
+
Issues are monitored and responded to, but pull requests are much more likely to be merged.
|
9
|
+
|
10
|
+
Make sure the issue includes version information, reproduction steps, and any other relevant information.
|
11
|
+
|
12
|
+
You can use the `examples/sample_app.rb` to help reproduce the issue.
|
35
13
|
|
36
|
-
2) Run `ruby examples/sample_app.rb`
|
37
|
-
If exception notification is working OK, the test should pass and trigger a notification as configured above. If it's not, you can copy the information printed on the terminal related to exception notification and report an issue with more info!
|
38
14
|
|
39
15
|
## Pull Requests
|
40
16
|
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
we need a test!
|
59
|
-
* Run _all_ the tests to assure nothing else was broken. We only take pull requests with passing tests.
|
60
|
-
* Check for unnecessary whitespace with `git diff --check` before committing.
|
61
|
-
* Push to your fork and submit a pull request.
|
17
|
+
All PRs with changes will be reviewed and merged if possible. Thank you for taking the time to contribute.
|
18
|
+
|
19
|
+
Changes must include tests. Please include a description of the problem and why the change is needed. Same with issues, reproduction steps are helpful.
|
20
|
+
|
21
|
+
|
22
|
+
### Running the tests
|
23
|
+
|
24
|
+
```bash
|
25
|
+
bundle install
|
26
|
+
bundle exec rake test
|
27
|
+
```
|
28
|
+
|
29
|
+
And running the linting with [standard](https://github.com/standardrb/standard):
|
30
|
+
|
31
|
+
```bash
|
32
|
+
bundle exec standardrb
|
33
|
+
```
|
data/Gemfile
CHANGED
data/Gemfile.lock
ADDED
@@ -0,0 +1,346 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
exception_notification (5.0.0)
|
5
|
+
actionmailer (>= 7.1, < 9)
|
6
|
+
activesupport (>= 7.1, < 9)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actioncable (8.0.2)
|
12
|
+
actionpack (= 8.0.2)
|
13
|
+
activesupport (= 8.0.2)
|
14
|
+
nio4r (~> 2.0)
|
15
|
+
websocket-driver (>= 0.6.1)
|
16
|
+
zeitwerk (~> 2.6)
|
17
|
+
actionmailbox (8.0.2)
|
18
|
+
actionpack (= 8.0.2)
|
19
|
+
activejob (= 8.0.2)
|
20
|
+
activerecord (= 8.0.2)
|
21
|
+
activestorage (= 8.0.2)
|
22
|
+
activesupport (= 8.0.2)
|
23
|
+
mail (>= 2.8.0)
|
24
|
+
actionmailer (8.0.2)
|
25
|
+
actionpack (= 8.0.2)
|
26
|
+
actionview (= 8.0.2)
|
27
|
+
activejob (= 8.0.2)
|
28
|
+
activesupport (= 8.0.2)
|
29
|
+
mail (>= 2.8.0)
|
30
|
+
rails-dom-testing (~> 2.2)
|
31
|
+
actionpack (8.0.2)
|
32
|
+
actionview (= 8.0.2)
|
33
|
+
activesupport (= 8.0.2)
|
34
|
+
nokogiri (>= 1.8.5)
|
35
|
+
rack (>= 2.2.4)
|
36
|
+
rack-session (>= 1.0.1)
|
37
|
+
rack-test (>= 0.6.3)
|
38
|
+
rails-dom-testing (~> 2.2)
|
39
|
+
rails-html-sanitizer (~> 1.6)
|
40
|
+
useragent (~> 0.16)
|
41
|
+
actiontext (8.0.2)
|
42
|
+
actionpack (= 8.0.2)
|
43
|
+
activerecord (= 8.0.2)
|
44
|
+
activestorage (= 8.0.2)
|
45
|
+
activesupport (= 8.0.2)
|
46
|
+
globalid (>= 0.6.0)
|
47
|
+
nokogiri (>= 1.8.5)
|
48
|
+
actionview (8.0.2)
|
49
|
+
activesupport (= 8.0.2)
|
50
|
+
builder (~> 3.1)
|
51
|
+
erubi (~> 1.11)
|
52
|
+
rails-dom-testing (~> 2.2)
|
53
|
+
rails-html-sanitizer (~> 1.6)
|
54
|
+
activejob (8.0.2)
|
55
|
+
activesupport (= 8.0.2)
|
56
|
+
globalid (>= 0.3.6)
|
57
|
+
activemodel (8.0.2)
|
58
|
+
activesupport (= 8.0.2)
|
59
|
+
activerecord (8.0.2)
|
60
|
+
activemodel (= 8.0.2)
|
61
|
+
activesupport (= 8.0.2)
|
62
|
+
timeout (>= 0.4.0)
|
63
|
+
activestorage (8.0.2)
|
64
|
+
actionpack (= 8.0.2)
|
65
|
+
activejob (= 8.0.2)
|
66
|
+
activerecord (= 8.0.2)
|
67
|
+
activesupport (= 8.0.2)
|
68
|
+
marcel (~> 1.0)
|
69
|
+
activesupport (8.0.2)
|
70
|
+
base64
|
71
|
+
benchmark (>= 0.3)
|
72
|
+
bigdecimal
|
73
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
74
|
+
connection_pool (>= 2.2.5)
|
75
|
+
drb
|
76
|
+
i18n (>= 1.6, < 2)
|
77
|
+
logger (>= 1.4.2)
|
78
|
+
minitest (>= 5.1)
|
79
|
+
securerandom (>= 0.3)
|
80
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
81
|
+
uri (>= 0.13.1)
|
82
|
+
addressable (2.8.7)
|
83
|
+
public_suffix (>= 2.0.2, < 7.0)
|
84
|
+
ast (2.4.3)
|
85
|
+
aws-eventstream (1.3.2)
|
86
|
+
aws-partitions (1.1071.0)
|
87
|
+
aws-sdk-core (3.220.2)
|
88
|
+
aws-eventstream (~> 1, >= 1.3.0)
|
89
|
+
aws-partitions (~> 1, >= 1.992.0)
|
90
|
+
aws-sigv4 (~> 1.9)
|
91
|
+
base64
|
92
|
+
jmespath (~> 1, >= 1.6.1)
|
93
|
+
aws-sdk-sns (1.97.0)
|
94
|
+
aws-sdk-core (~> 3, >= 3.216.0)
|
95
|
+
aws-sigv4 (~> 1.5)
|
96
|
+
aws-sigv4 (1.11.0)
|
97
|
+
aws-eventstream (~> 1, >= 1.0.2)
|
98
|
+
base64 (0.2.0)
|
99
|
+
benchmark (0.4.0)
|
100
|
+
bigdecimal (3.1.9)
|
101
|
+
builder (3.3.0)
|
102
|
+
carrier-pigeon (0.7.0)
|
103
|
+
addressable
|
104
|
+
concurrent-ruby (1.3.5)
|
105
|
+
connection_pool (2.5.0)
|
106
|
+
crass (1.0.6)
|
107
|
+
date (3.4.1)
|
108
|
+
dogapi (1.45.0)
|
109
|
+
multi_json
|
110
|
+
drb (2.2.1)
|
111
|
+
erubi (1.13.1)
|
112
|
+
globalid (1.2.1)
|
113
|
+
activesupport (>= 6.1)
|
114
|
+
hipchat (1.6.0)
|
115
|
+
httparty
|
116
|
+
mimemagic
|
117
|
+
httparty (0.10.2)
|
118
|
+
multi_json (~> 1.0)
|
119
|
+
multi_xml (>= 0.5.2)
|
120
|
+
i18n (1.14.7)
|
121
|
+
concurrent-ruby (~> 1.0)
|
122
|
+
io-console (0.8.0)
|
123
|
+
irb (1.15.1)
|
124
|
+
pp (>= 0.6.0)
|
125
|
+
rdoc (>= 4.0.0)
|
126
|
+
reline (>= 0.4.2)
|
127
|
+
jmespath (1.6.2)
|
128
|
+
json (2.10.2)
|
129
|
+
language_server-protocol (3.17.0.4)
|
130
|
+
lint_roller (1.1.0)
|
131
|
+
logger (1.6.6)
|
132
|
+
loofah (2.24.0)
|
133
|
+
crass (~> 1.0.2)
|
134
|
+
nokogiri (>= 1.12.0)
|
135
|
+
mail (2.8.1)
|
136
|
+
mini_mime (>= 0.1.1)
|
137
|
+
net-imap
|
138
|
+
net-pop
|
139
|
+
net-smtp
|
140
|
+
marcel (1.0.4)
|
141
|
+
mimemagic (0.4.3)
|
142
|
+
nokogiri (~> 1)
|
143
|
+
rake
|
144
|
+
mini_mime (1.1.5)
|
145
|
+
minitest (5.25.5)
|
146
|
+
mocha (2.7.1)
|
147
|
+
ruby2_keywords (>= 0.0.5)
|
148
|
+
mock_redis (0.19.0)
|
149
|
+
multi_json (1.15.0)
|
150
|
+
multi_xml (0.7.1)
|
151
|
+
bigdecimal (~> 3.1)
|
152
|
+
mustermann (3.0.3)
|
153
|
+
ruby2_keywords (~> 0.0.1)
|
154
|
+
net-imap (0.5.6)
|
155
|
+
date
|
156
|
+
net-protocol
|
157
|
+
net-pop (0.1.2)
|
158
|
+
net-protocol
|
159
|
+
net-protocol (0.2.2)
|
160
|
+
timeout
|
161
|
+
net-smtp (0.5.1)
|
162
|
+
net-protocol
|
163
|
+
nio4r (2.7.4)
|
164
|
+
nokogiri (1.18.5-aarch64-linux-gnu)
|
165
|
+
racc (~> 1.4)
|
166
|
+
nokogiri (1.18.5-aarch64-linux-musl)
|
167
|
+
racc (~> 1.4)
|
168
|
+
nokogiri (1.18.5-arm-linux-gnu)
|
169
|
+
racc (~> 1.4)
|
170
|
+
nokogiri (1.18.5-arm-linux-musl)
|
171
|
+
racc (~> 1.4)
|
172
|
+
nokogiri (1.18.5-arm64-darwin)
|
173
|
+
racc (~> 1.4)
|
174
|
+
nokogiri (1.18.5-x86_64-darwin)
|
175
|
+
racc (~> 1.4)
|
176
|
+
nokogiri (1.18.5-x86_64-linux-gnu)
|
177
|
+
racc (~> 1.4)
|
178
|
+
nokogiri (1.18.5-x86_64-linux-musl)
|
179
|
+
racc (~> 1.4)
|
180
|
+
ostruct (0.6.1)
|
181
|
+
parallel (1.26.3)
|
182
|
+
parser (3.3.7.2)
|
183
|
+
ast (~> 2.4.1)
|
184
|
+
racc
|
185
|
+
pp (0.6.2)
|
186
|
+
prettyprint
|
187
|
+
prettyprint (0.2.0)
|
188
|
+
psych (5.2.3)
|
189
|
+
date
|
190
|
+
stringio
|
191
|
+
public_suffix (6.0.1)
|
192
|
+
racc (1.8.1)
|
193
|
+
rack (3.1.12)
|
194
|
+
rack-protection (4.1.1)
|
195
|
+
base64 (>= 0.1.0)
|
196
|
+
logger (>= 1.6.0)
|
197
|
+
rack (>= 3.0.0, < 4)
|
198
|
+
rack-session (2.1.0)
|
199
|
+
base64 (>= 0.1.0)
|
200
|
+
rack (>= 3.0.0)
|
201
|
+
rack-test (2.2.0)
|
202
|
+
rack (>= 1.3)
|
203
|
+
rackup (2.2.1)
|
204
|
+
rack (>= 3)
|
205
|
+
rails (8.0.2)
|
206
|
+
actioncable (= 8.0.2)
|
207
|
+
actionmailbox (= 8.0.2)
|
208
|
+
actionmailer (= 8.0.2)
|
209
|
+
actionpack (= 8.0.2)
|
210
|
+
actiontext (= 8.0.2)
|
211
|
+
actionview (= 8.0.2)
|
212
|
+
activejob (= 8.0.2)
|
213
|
+
activemodel (= 8.0.2)
|
214
|
+
activerecord (= 8.0.2)
|
215
|
+
activestorage (= 8.0.2)
|
216
|
+
activesupport (= 8.0.2)
|
217
|
+
bundler (>= 1.15.0)
|
218
|
+
railties (= 8.0.2)
|
219
|
+
rails-dom-testing (2.2.0)
|
220
|
+
activesupport (>= 5.0.0)
|
221
|
+
minitest
|
222
|
+
nokogiri (>= 1.6)
|
223
|
+
rails-html-sanitizer (1.6.2)
|
224
|
+
loofah (~> 2.21)
|
225
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
226
|
+
railties (8.0.2)
|
227
|
+
actionpack (= 8.0.2)
|
228
|
+
activesupport (= 8.0.2)
|
229
|
+
irb (~> 1.13)
|
230
|
+
rackup (>= 1.0.0)
|
231
|
+
rake (>= 12.2)
|
232
|
+
thor (~> 1.0, >= 1.2.2)
|
233
|
+
zeitwerk (~> 2.6)
|
234
|
+
rainbow (3.1.1)
|
235
|
+
rake (13.2.1)
|
236
|
+
rdoc (6.12.0)
|
237
|
+
psych (>= 4.0.0)
|
238
|
+
redis (1.0.7)
|
239
|
+
redis-client (0.24.0)
|
240
|
+
connection_pool
|
241
|
+
redis-namespace (0.4.4)
|
242
|
+
redis (~> 1.0.0)
|
243
|
+
regexp_parser (2.10.0)
|
244
|
+
reline (0.6.0)
|
245
|
+
io-console (~> 0.5)
|
246
|
+
resque (1.8.5)
|
247
|
+
redis (~> 1.0.0)
|
248
|
+
redis-namespace (~> 0.4.0)
|
249
|
+
sinatra (>= 0.9.2)
|
250
|
+
vegas (~> 0.1.2)
|
251
|
+
rubocop (1.73.2)
|
252
|
+
json (~> 2.3)
|
253
|
+
language_server-protocol (~> 3.17.0.2)
|
254
|
+
lint_roller (~> 1.1.0)
|
255
|
+
parallel (~> 1.10)
|
256
|
+
parser (>= 3.3.0.2)
|
257
|
+
rainbow (>= 2.2.2, < 4.0)
|
258
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
259
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
260
|
+
ruby-progressbar (~> 1.7)
|
261
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
262
|
+
rubocop-ast (1.41.0)
|
263
|
+
parser (>= 3.3.7.2)
|
264
|
+
rubocop-performance (1.24.0)
|
265
|
+
lint_roller (~> 1.1)
|
266
|
+
rubocop (>= 1.72.1, < 2.0)
|
267
|
+
rubocop-ast (>= 1.38.0, < 2.0)
|
268
|
+
ruby-progressbar (1.13.0)
|
269
|
+
ruby2_keywords (0.0.5)
|
270
|
+
securerandom (0.4.1)
|
271
|
+
sidekiq (8.0.1)
|
272
|
+
connection_pool (>= 2.5.0)
|
273
|
+
json (>= 2.9.0)
|
274
|
+
logger (>= 1.6.2)
|
275
|
+
rack (>= 3.1.0)
|
276
|
+
redis-client (>= 0.23.2)
|
277
|
+
sinatra (4.1.1)
|
278
|
+
logger (>= 1.6.0)
|
279
|
+
mustermann (~> 3.0)
|
280
|
+
rack (>= 3.0.0, < 4)
|
281
|
+
rack-protection (= 4.1.1)
|
282
|
+
rack-session (>= 2.0.0, < 3)
|
283
|
+
tilt (~> 2.0)
|
284
|
+
slack-notifier (2.4.0)
|
285
|
+
standard (1.47.0)
|
286
|
+
language_server-protocol (~> 3.17.0.2)
|
287
|
+
lint_roller (~> 1.0)
|
288
|
+
rubocop (~> 1.73.0)
|
289
|
+
standard-custom (~> 1.0.0)
|
290
|
+
standard-performance (~> 1.7)
|
291
|
+
standard-custom (1.0.2)
|
292
|
+
lint_roller (~> 1.0)
|
293
|
+
rubocop (~> 1.50)
|
294
|
+
standard-performance (1.7.0)
|
295
|
+
lint_roller (~> 1.1)
|
296
|
+
rubocop-performance (~> 1.24.0)
|
297
|
+
stringio (3.1.5)
|
298
|
+
thor (1.3.2)
|
299
|
+
tilt (2.6.0)
|
300
|
+
timecop (0.9.10)
|
301
|
+
timeout (0.4.3)
|
302
|
+
tzinfo (2.0.6)
|
303
|
+
concurrent-ruby (~> 1.0)
|
304
|
+
unicode-display_width (3.1.4)
|
305
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
306
|
+
unicode-emoji (4.0.4)
|
307
|
+
uri (1.0.3)
|
308
|
+
useragent (0.16.11)
|
309
|
+
vegas (0.1.11)
|
310
|
+
rack (>= 1.0.0)
|
311
|
+
websocket-driver (0.7.7)
|
312
|
+
base64
|
313
|
+
websocket-extensions (>= 0.1.0)
|
314
|
+
websocket-extensions (0.1.5)
|
315
|
+
zeitwerk (2.7.2)
|
316
|
+
|
317
|
+
PLATFORMS
|
318
|
+
aarch64-linux-gnu
|
319
|
+
aarch64-linux-musl
|
320
|
+
arm-linux-gnu
|
321
|
+
arm-linux-musl
|
322
|
+
arm64-darwin
|
323
|
+
x86_64-darwin
|
324
|
+
x86_64-linux-gnu
|
325
|
+
x86_64-linux-musl
|
326
|
+
|
327
|
+
DEPENDENCIES
|
328
|
+
aws-sdk-sns (~> 1)
|
329
|
+
carrier-pigeon (>= 0.7.0)
|
330
|
+
dogapi (>= 1.23.0)
|
331
|
+
exception_notification!
|
332
|
+
hipchat (>= 1.0.0)
|
333
|
+
httparty (~> 0.10.2)
|
334
|
+
mocha (>= 0.13.0)
|
335
|
+
mock_redis (~> 0.19.0)
|
336
|
+
net-smtp
|
337
|
+
ostruct
|
338
|
+
rails (>= 7.1, < 9)
|
339
|
+
resque (~> 1.8.0)
|
340
|
+
sidekiq (>= 5.0.4)
|
341
|
+
slack-notifier (>= 1.0.0)
|
342
|
+
standard
|
343
|
+
timecop (~> 0.9.0)
|
344
|
+
|
345
|
+
BUNDLED WITH
|
346
|
+
2.6.6
|