good_job 4.12.1 → 4.13.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: 90cb1ad1b70dc5b80b42058a6fb30b88830b204a678e258f920d9e100329895f
4
- data.tar.gz: 7b3ac07c100a6595d60184b1dd5229383c19edd4e12174e7b58e4d6c51d56597
3
+ metadata.gz: 58105c96940dfa3fd32635f82347a87571d94828417977937f181795a87cbc9f
4
+ data.tar.gz: 8ef6a8cf16b8365674debd40cb29c16a02fc7e9863ce34b0dfada3eba8215724
5
5
  SHA512:
6
- metadata.gz: ff13e15e5ca242accb229ba2b81c7b66b928b04ad31dd5b8ec5277190ab7237f795cbeb02f3c3ccecb14b7529415963b9f0a3f97811ed8da2dd676e1a2a3918b
7
- data.tar.gz: 4001a82fa48e08f192f4157ce122ce531868523248bca5ec6ac332edabb243fa18824486a843609097005c74a96a56cd06e992c6b21467596bd59730337ef98a
6
+ metadata.gz: ff39513833a272a1078c0fbdbfac38a7b303a78adc761007dedd0c365cc77b95d1a395e04ba1d57676dff090d4ebdaf0f4564cb80efce6c98554a5b780ce5cd9
7
+ data.tar.gz: 072d4b2d4d27f4f262e2e13c1171cd64a88937662b8e64daf4db1e592f5f5e30472345e25d58976c66ce617a08ddc500ecab976269c1622c51bd8604194a781a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## [v4.13.0](https://github.com/bensheldon/good_job/tree/v4.13.0) (2025-12-02)
4
+
5
+ [Full Changelog](https://github.com/bensheldon/good_job/compare/v4.12.1...v4.13.0)
6
+
7
+ **Implemented enhancements:**
8
+
9
+ - Add custom partial for adding to the head tag [\#1682](https://github.com/bensheldon/good_job/pull/1682) ([RDIL](https://github.com/RDIL))
10
+
11
+ **Closed issues:**
12
+
13
+ - Losing advisory lock during job execution with transaction isolation level :serializable [\#989](https://github.com/bensheldon/good_job/issues/989)
14
+
15
+ **Merged pull requests:**
16
+
17
+ - Detangle lockfile platforms again [\#1696](https://github.com/bensheldon/good_job/pull/1696) ([bensheldon](https://github.com/bensheldon))
18
+ - Update development gems and ruby version [\#1695](https://github.com/bensheldon/good_job/pull/1695) ([bensheldon](https://github.com/bensheldon))
19
+ - Bump actions/checkout from 5 to 6 [\#1694](https://github.com/bensheldon/good_job/pull/1694) ([dependabot[bot]](https://github.com/apps/dependabot))
20
+ - Update German translations in locales/de.yml [\#1692](https://github.com/bensheldon/good_job/pull/1692) ([dup2](https://github.com/dup2))
21
+ - Fix german translation [\#1691](https://github.com/bensheldon/good_job/pull/1691) ([nhasselmeyer](https://github.com/nhasselmeyer))
22
+ - Bump github/codeql-action from 3 to 4 [\#1690](https://github.com/bensheldon/good_job/pull/1690) ([dependabot[bot]](https://github.com/apps/dependabot))
23
+ - Bump actions/upload-artifact from 4 to 5 [\#1689](https://github.com/bensheldon/good_job/pull/1689) ([dependabot[bot]](https://github.com/apps/dependabot))
24
+ - Add Simplified Chinese locale [\#1687](https://github.com/bensheldon/good_job/pull/1687) ([icyleaf](https://github.com/icyleaf))
25
+ - Replace Selenium with Cuprite [\#1659](https://github.com/bensheldon/good_job/pull/1659) ([bensheldon](https://github.com/bensheldon))
26
+
3
27
  ## [v4.12.1](https://github.com/bensheldon/good_job/tree/v4.12.1) (2025-10-16)
4
28
 
5
29
  [Full Changelog](https://github.com/bensheldon/good_job/compare/v4.12.0...v4.12.1)
data/README.md CHANGED
@@ -468,8 +468,9 @@ The Dashboard can be set to automatically refresh by checking "Live Poll" in the
468
468
 
469
469
  #### Extending dashboard views
470
470
 
471
- GoodJob exposes some views that are intended to be overriden by placing views in your application:
471
+ GoodJob exposes some views that are intended to be overridden by placing views in your application:
472
472
 
473
+ - [`app/views/good_job/_custom_head.html.erb`](app/views/good_job/_custom_head.html.erb): content added to this partial will be added at the end of the `<head>` tag in all GoodJob views. This is ideal for injecting custom scripts or styles.
473
474
  - [`app/views/good_job/_custom_job_details.html.erb`](app/views/good_job/_custom_job_details.html.erb): content added to this partial will be displayed above the argument list on the good_job/jobs#show page.
474
475
  - [`app/views/good_job/_custom_execution_details.html.erb`](app/views/good_job/_custom_execution_details.html.erb): content added to this partial will be displayed above each execution on the good_job/jobs#show page.
475
476
 
@@ -1763,7 +1764,7 @@ bin/rspec
1763
1764
  Environment variables that may help with debugging:
1764
1765
 
1765
1766
  - `LOUD=1`: display all stdout/stderr output from all sources. This is helpful because GoodJob wraps some tests with `quiet { }` for cleaner test output, but it can hinder debugging.
1766
- - `SHOW_BROWSER=1`: Run system tests headfully with Chrome/Chromedriver. Use `binding.irb` in the system tests to pause.
1767
+ - `SHOW_BROWSER=1`: Run system tests headfully with Chrome/Cuprite. Use `binding.irb` in the system tests to pause.
1767
1768
 
1768
1769
  The gemfiles in `gemfiles/` can be used to run tests against different rails versions:
1769
1770
 
@@ -6,5 +6,6 @@ module GoodJob
6
6
  end
7
7
 
8
8
  include ActiveSupport::Deprecation::DeprecatedConstantAccessor
9
+
9
10
  deprecate_constant :DiscreteExecution, 'Execution', deprecator: GoodJob.deprecator
10
11
  end
@@ -0,0 +1,7 @@
1
+ <%#
2
+ Content added to this partial will be added to the end of the head tag of all GoodJob dashboard pages.
3
+
4
+ You can make use of the following variables:
5
+
6
+ - `main_app`: Use this to access helpers (e.g. route helpers) from your application.
7
+ %>
@@ -32,6 +32,8 @@
32
32
  <%= tag.link rel: "icon", href: 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="10 0 100 100"><text y=".90em" font-size="90">👍</text></svg>' %>
33
33
  <%= csrf_meta_tags %>
34
34
  <%= csp_meta_tag %>
35
+
36
+ <%= render "good_job/custom_head" %>
35
37
  </head>
36
38
  <body>
37
39
  <div class="d-flex flex-column min-vh-100">
@@ -2,7 +2,7 @@
2
2
  de:
3
3
  good_job:
4
4
  actions:
5
- destroy: Zerstören
5
+ destroy: Löschen
6
6
  discard: Verwerfen
7
7
  force_discard: Verwerfen erzwingen
8
8
  inspect: Prüfen
@@ -17,11 +17,11 @@ de:
17
17
  title: Batches
18
18
  jobs:
19
19
  actions:
20
- confirm_destroy: Bist du sicher, dass du diesen Job zerstören wilst?
20
+ confirm_destroy: Bist du sicher, dass du diesen Job löschen wilst?
21
21
  confirm_discard: Bist du sicher, dass du diesen Job verwerfen willst?
22
22
  confirm_reschedule: Bist du sicher, dass du diesen Job verschieben willst?
23
23
  confirm_retry: Bist du sicher, dass du diesen Job erneut versuchen willst?
24
- destroy: Job zerstören
24
+ destroy: Job löschen
25
25
  discard: Job verwerfen
26
26
  reschedule: Job neu planen
27
27
  retry: Job wiederholen
@@ -38,15 +38,15 @@ de:
38
38
  cleaner:
39
39
  index:
40
40
  all: All
41
- class: Class
41
+ class: Klasse
42
42
  exception: Exception
43
- grouped_by_class: Discards grouped by Class
44
- grouped_by_exception: Discards grouped by Exception
45
- last_1_hour: Last 1 hour
46
- last_24_hours: Last 24 hours
47
- last_3_days: Last 3 days
48
- last_3_hours: Last 3 hours
49
- last_7_days: Last 7 days
43
+ grouped_by_class: Discards groupiert nach Klasse
44
+ grouped_by_exception: Discards groupiert nach Exception
45
+ last_1_hour: Letzte Stunde
46
+ last_24_hours: Letzte 24 Stunden
47
+ last_3_days: Letzte 3 Tage
48
+ last_3_hours: Letzte 3 Stunden
49
+ last_7_days: Letzte 7 Tage
50
50
  title: Discard Cleaner
51
51
  total: Total
52
52
  cron_entries:
@@ -126,18 +126,18 @@ de:
126
126
  past: Vor %{time}
127
127
  jobs:
128
128
  actions:
129
- confirm_destroy: Bist du sicher, dass du diesen Job zerstören willst?
129
+ confirm_destroy: Bist du sicher, dass du diesen Job löschen willst?
130
130
  confirm_discard: Bist du sicher, dass du diesen Job verwerfen willst?
131
131
  confirm_force_discard: Bist du sicher, dass du das Verwerfen dieses Jobs erzwingen möchten? Der Job wird als verworfen markiert, aber der laufende Job wird nicht gestoppt – er wird jedoch bei Fehlern nicht erneut versucht.
132
132
  confirm_reschedule: Bist du sicher, dass du diesen Job verschieben willst?
133
133
  confirm_retry: Bist du sicher, dass du diesen Job wiederholen willst?
134
- destroy: Job zerstören
134
+ destroy: Job löschen
135
135
  discard: Job verwerfen
136
136
  force_discard: Job verwerfen erzwingen
137
137
  reschedule: Job neu planen
138
138
  retry: Job wiederholen
139
139
  destroy:
140
- notice: Hiob wurde zerstört
140
+ notice: Job wurde gelöscht
141
141
  discard:
142
142
  notice: Job wurde verworfen
143
143
  executions:
@@ -145,14 +145,14 @@ de:
145
145
  full_trace: Full Trace
146
146
  in_queue: in der Warteschlange
147
147
  runtime: Laufzeit
148
- title: Hinrichtungen
148
+ title: Ausführungen
149
149
  force_discard:
150
150
  notice: Der Job wurde zwangsweise verworfen. Die Ausführung wird fortgesetzt, bei Fehlern wird der Vorgang jedoch nicht wiederholt
151
151
  index:
152
152
  job_pagination: Job-Paginierung
153
153
  older_jobs: Ältere Jobs
154
154
  reschedule:
155
- notice: Job wurde neu planen
155
+ notice: Job wurde neu geplant
156
156
  retry:
157
157
  notice: Job wurde wiederholt
158
158
  show:
@@ -166,7 +166,7 @@ de:
166
166
  confirm_discard_all: Bist du sicher, dass du die ausgewählten Jobs verferfen willst?
167
167
  confirm_reschedule_all: Bist du sicher, dass du die ausgewählten Jobs neu planen willst?
168
168
  confirm_retry_all: Bist du sicher, dass du die ausgewählten Jobs wiederholen willst?
169
- destroy_all: Alle zerstören
169
+ destroy_all: Alle löschen
170
170
  discard_all: Alle verwerfen
171
171
  reschedule_all: Alle neu planen
172
172
  retry_all: Alle wiederholen
@@ -220,11 +220,11 @@ de:
220
220
  unit: ''
221
221
  pauses:
222
222
  index:
223
- confirm_pause: Sind Sie sicher, dass Sie %{value} pausieren möchten?
224
- confirm_unpause: Sind Sie sicher, dass Sie %{value} fortsetzen möchten?
225
- disabled: Die experimentelle Pausenfunktion von GoodJob ist standardmäßig deaktiviert, da sie die Leistung beeinträchtigen kann. Konfigurieren Sie sie zur Aktivierung
223
+ confirm_pause: Bist du sicher, dass du %{value} pausieren möchten?
224
+ confirm_unpause: Bist du sicher, dass du %{value} fortsetzen möchten?
225
+ disabled: Die experimentelle Pausenfunktion von GoodJob ist standardmäßig deaktiviert, da sie die Leistung beeinträchtigen kann. Konfiguriere sie zur Aktivierung.
226
226
  job_class: Job-Klasse
227
- label: Label
227
+ label: Etikette
228
228
  pause: Pausieren
229
229
  queue: Warteschlange
230
230
  title: Pausen
@@ -0,0 +1,295 @@
1
+ ---
2
+ zh-CN:
3
+ good_job:
4
+ actions:
5
+ destroy: 删除
6
+ discard: 丢弃
7
+ force_discard: 强制丢弃
8
+ inspect: 检查
9
+ reschedule: 重新调度
10
+ retry: 重试
11
+ batches:
12
+ actions:
13
+ confirm_retry: 您确定要重试此批处理吗?
14
+ retry: 重试
15
+ index:
16
+ older_batches: 更早的批处理
17
+ title: 批处理
18
+ jobs:
19
+ actions:
20
+ confirm_destroy: 您确定要删除此任务吗?
21
+ confirm_discard: 您确定要丢弃此任务吗?
22
+ confirm_reschedule: 您确定要重新调度此任务吗?
23
+ confirm_retry: 您确定要重试此任务吗?
24
+ destroy: 删除任务
25
+ discard: 丢弃任务
26
+ reschedule: 重新调度任务
27
+ retry: 重试任务
28
+ title: 操作
29
+ no_jobs_found: 未找到任务
30
+ retry:
31
+ notice: 批处理已重试
32
+ show:
33
+ attributes: 属性
34
+ batched_jobs: 批量任务
35
+ callback_jobs: 回调任务
36
+ table:
37
+ no_batches_found: 未找到批处理
38
+ cleaner:
39
+ index:
40
+ all: 全部
41
+ class: Class
42
+ exception: 异常
43
+ grouped_by_class: 按 Class 分组的丢弃任务
44
+ grouped_by_exception: 按异常分组的丢弃任务
45
+ last_1_hour: 最近 1 小时
46
+ last_24_hours: 最近 24 小时
47
+ last_3_days: 最近 3 天
48
+ last_3_hours: 最近 3 小时
49
+ last_7_days: 最近 7 天
50
+ title: 丢弃任务清理器
51
+ total: 总计
52
+ cron_entries:
53
+ actions:
54
+ confirm_disable: 您确定要禁用此定时任务吗?
55
+ confirm_enable: 您确定要启用此定时任务吗?
56
+ confirm_enqueue: 您确定要立即入队此定时任务吗?
57
+ disable: 禁用定时任务
58
+ enable: 启用定时任务
59
+ enqueue: 立即入队定时任务
60
+ disable:
61
+ notice: 定时任务已禁用
62
+ enable:
63
+ notice: 定时任务已启用
64
+ enqueue:
65
+ notice: 定时任务已入队
66
+ index:
67
+ no_cron_schedules_found: 未找到定时任务
68
+ title: 定时任务
69
+ show:
70
+ cron_entry_key: 定时任务 Key
71
+ datetime:
72
+ distance_in_words:
73
+ about_x_hours:
74
+ one: 大约 1 小时
75
+ other: 大约 %{count} 小时
76
+ about_x_months:
77
+ one: 大约 1 个月
78
+ other: 大约 %{count} 个月
79
+ about_x_years:
80
+ one: 大约 1 年
81
+ other: 大约 %{count} 年
82
+ almost_x_years:
83
+ one: 接近 1 年
84
+ other: 接近 %{count} 年
85
+ half_a_minute: 半分钟
86
+ less_than_x_minutes:
87
+ one: 少于 1 分钟
88
+ other: 少于 %{count} 分钟
89
+ less_than_x_seconds:
90
+ one: 少于 1 秒
91
+ other: 少于 %{count} 秒
92
+ over_x_years:
93
+ one: 超过 1 年
94
+ other: 超过 %{count} 年
95
+ x_days:
96
+ one: 1 天
97
+ other: "%{count} 天"
98
+ x_minutes:
99
+ one: 1 分钟
100
+ other: "%{count} 分钟"
101
+ x_months:
102
+ one: 1 个月
103
+ other: "%{count} 个月"
104
+ x_seconds:
105
+ one: 1 秒
106
+ other: "%{count} 秒"
107
+ x_years:
108
+ one: 1 年
109
+ other: "%{count} 年"
110
+ duration:
111
+ hours: "%{hour} 小时 %{min} 分"
112
+ less_than_10_seconds: "%{sec} 秒"
113
+ milliseconds: "%{ms} 毫秒"
114
+ minutes: "%{min} 分 %{sec} 秒"
115
+ seconds: "%{sec} 秒"
116
+ error_event:
117
+ discarded: 已丢弃
118
+ handled: 已处理
119
+ interrupted: 已中断
120
+ retried: 已重试
121
+ retry_stopped: 停止重试
122
+ unhandled: 未处理
123
+ helpers:
124
+ relative_time:
125
+ future: "%{time} 后"
126
+ past: "%{time} 前"
127
+ jobs:
128
+ actions:
129
+ confirm_destroy: 您确定要删除此任务吗?
130
+ confirm_discard: 您确定要丢弃此任务吗?
131
+ confirm_force_discard: 您确定要强制丢弃此任务吗?任务将被标记为丢弃,但正在运行的任务不会被停止 - 不过,失败时不会重试。
132
+ confirm_reschedule: 您确定要重新调度此任务吗?
133
+ confirm_retry: 您确定要重试此任务吗?
134
+ destroy: 删除任务
135
+ discard: 丢弃任务
136
+ force_discard: 强制丢弃任务
137
+ reschedule: 重新调度任务
138
+ retry: 重试任务
139
+ destroy:
140
+ notice: 任务已删除
141
+ discard:
142
+ notice: 任务已丢弃
143
+ executions:
144
+ application_trace: 应用跟踪
145
+ full_trace: 完整跟踪
146
+ in_queue: 队列中
147
+ runtime: 运行时间
148
+ title: 执行情况
149
+ force_discard:
150
+ notice: 任务已强制丢弃。它将继续运行但失败时不会重试
151
+ index:
152
+ job_pagination: 任务分页
153
+ older_jobs: 更早的任务
154
+ reschedule:
155
+ notice: 任务已重新调度
156
+ retry:
157
+ notice: 任务已重试
158
+ show:
159
+ jobs: 任务
160
+ table:
161
+ actions:
162
+ apply_to_all:
163
+ one: 应用于所有 1 个任务。
164
+ other: 应用于所有 %{count} 个任务。
165
+ confirm_destroy_all: 您确定要删除所选任务吗?
166
+ confirm_discard_all: 您确定要丢弃所选任务吗?
167
+ confirm_reschedule_all: 您确定要重新调度所选任务吗?
168
+ confirm_retry_all: 您确定要重试所选任务吗?
169
+ destroy_all: 全部删除
170
+ discard_all: 全部丢弃
171
+ reschedule_all: 全部重新调度
172
+ retry_all: 全部重试
173
+ title: 操作
174
+ no_jobs_found: 未找到任务
175
+ toggle_actions: 切换操作
176
+ toggle_all_jobs: 切换所有任务
177
+ models:
178
+ batch:
179
+ created: 已创建
180
+ created_at: 创建时间
181
+ discarded: 已丢弃
182
+ discarded_at: 丢弃时间
183
+ enqueued: 已入队
184
+ enqueued_at: 入队时间
185
+ finished: 已完成
186
+ finished_at: 完成时间
187
+ jobs: 任务
188
+ name: 名称
189
+ cron:
190
+ class: Class
191
+ last_run: 上次运行
192
+ next_scheduled: 下次计划
193
+ schedule: 计划
194
+ states:
195
+ active: 活跃
196
+ paused: 暂停
197
+ status: 状态
198
+ job:
199
+ arguments: 参数
200
+ attempts: 尝试次数
201
+ labels: 标签
202
+ priority: 优先级
203
+ queue: 队列
204
+ number:
205
+ format:
206
+ delimiter: ","
207
+ separator: "."
208
+ human:
209
+ decimal_units:
210
+ delimiter: ","
211
+ format: "%n%u"
212
+ precision: 3
213
+ separator: "."
214
+ units:
215
+ billion: 十亿
216
+ million: 百万
217
+ quadrillion: 千万亿
218
+ thousand: 千
219
+ trillion: 万亿
220
+ unit: ''
221
+ pauses:
222
+ index:
223
+ confirm_pause: 您确定要暂停%{value}吗?
224
+ confirm_unpause: 您确定要恢复%{value}吗?
225
+ disabled: 因会降低性能的可能性 GoodJob 实验性的暂停功能默认禁用,启用需要配置
226
+ job_class: 任务 Class
227
+ label: 标签
228
+ pause: 暂停
229
+ queue: 队列
230
+ title: 暂停
231
+ type: 暂停类型
232
+ unpause: 恢复
233
+ value: 值
234
+ performance:
235
+ index:
236
+ average_duration: 平均时长
237
+ chart_title: 任务总执行时间(秒)
238
+ executions: 执行次数
239
+ job_class: 任务 Class
240
+ maximum_duration: 最大时长
241
+ minimum_duration: 最小时长
242
+ queue_name: 队列名称
243
+ title: 性能
244
+ show:
245
+ slow: 慢
246
+ title: 性能
247
+ processes:
248
+ index:
249
+ cron_enabled: 定时任务已启用
250
+ no_good_job_processes_found: 未找到 GoodJob 进程
251
+ process: 进程
252
+ schedulers: 调度器
253
+ started: 已启动
254
+ title: 进程
255
+ updated: 已更新
256
+ shared:
257
+ boolean:
258
+ 'false': 否
259
+ 'true': 是
260
+ error: 错误
261
+ filter:
262
+ all: 全部
263
+ all_jobs: 所有任务
264
+ all_queues: 所有队列
265
+ clear: 清除
266
+ job_name: 任务名称
267
+ placeholder: 按类、任务 ID、任务参数和错误文本搜索。
268
+ queue_name: 队列名称
269
+ search: 搜索
270
+ navbar:
271
+ batches: 批处理
272
+ cleaner: 丢弃清理器
273
+ cron_schedules: 定时任务
274
+ jobs: 任务
275
+ live_poll: 实时轮询
276
+ name: "GoodJob 👍"
277
+ pauses: 暂停
278
+ performance: 性能
279
+ processes: 进程
280
+ theme:
281
+ auto: 自动
282
+ dark: 深色
283
+ light: 浅色
284
+ theme: 主题
285
+ pending_migrations: GoodJob 有待处理的数据库迁移
286
+ secondary_navbar:
287
+ inspiration: 记住,你也在做一份 Good Job!
288
+ last_updated: 最后更新
289
+ status:
290
+ discarded: 已丢弃
291
+ queued: 已入队
292
+ retried: 已重试
293
+ running: 运行中
294
+ scheduled: 已计划
295
+ succeeded: 已成功
@@ -24,6 +24,7 @@ module GoodJob
24
24
 
25
25
  included do
26
26
  prepend Prepends
27
+
27
28
  class_attribute :good_job_labels, instance_accessor: false, instance_predicate: false, default: []
28
29
  attr_accessor :good_job_labels
29
30
  end
@@ -40,6 +40,7 @@ module GoodJob
40
40
 
41
41
  included do
42
42
  prepend Prepends
43
+
43
44
  class_attribute :good_job_notify, instance_accessor: false, instance_predicate: false, default: nil
44
45
  attr_accessor :good_job_notify
45
46
  end
@@ -15,6 +15,7 @@ module GoodJob # :nodoc:
15
15
  #
16
16
  class Notifier
17
17
  include ActiveSupport::Callbacks
18
+
18
19
  define_callbacks :listen, :tick, :unlisten
19
20
 
20
21
  include ProcessHeartbeat
@@ -2,7 +2,7 @@
2
2
 
3
3
  module GoodJob
4
4
  # GoodJob gem version.
5
- VERSION = '4.12.1'
5
+ VERSION = '4.13.0'
6
6
 
7
7
  # GoodJob version as Gem::Version object
8
8
  GEM_VERSION = Gem::Version.new(VERSION)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: good_job
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.12.1
4
+ version: 4.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Sheldon
@@ -108,7 +108,7 @@ dependencies:
108
108
  - !ruby/object:Gem::Version
109
109
  version: '0'
110
110
  - !ruby/object:Gem::Dependency
111
- name: kramdown
111
+ name: cuprite
112
112
  requirement: !ruby/object:Gem::Requirement
113
113
  requirements:
114
114
  - - ">="
@@ -122,7 +122,7 @@ dependencies:
122
122
  - !ruby/object:Gem::Version
123
123
  version: '0'
124
124
  - !ruby/object:Gem::Dependency
125
- name: kramdown-parser-gfm
125
+ name: kramdown
126
126
  requirement: !ruby/object:Gem::Requirement
127
127
  requirements:
128
128
  - - ">="
@@ -136,7 +136,7 @@ dependencies:
136
136
  - !ruby/object:Gem::Version
137
137
  version: '0'
138
138
  - !ruby/object:Gem::Dependency
139
- name: puma
139
+ name: kramdown-parser-gfm
140
140
  requirement: !ruby/object:Gem::Requirement
141
141
  requirements:
142
142
  - - ">="
@@ -150,7 +150,7 @@ dependencies:
150
150
  - !ruby/object:Gem::Version
151
151
  version: '0'
152
152
  - !ruby/object:Gem::Dependency
153
- name: rspec-rails
153
+ name: puma
154
154
  requirement: !ruby/object:Gem::Requirement
155
155
  requirements:
156
156
  - - ">="
@@ -164,7 +164,7 @@ dependencies:
164
164
  - !ruby/object:Gem::Version
165
165
  version: '0'
166
166
  - !ruby/object:Gem::Dependency
167
- name: selenium-webdriver
167
+ name: rspec-rails
168
168
  requirement: !ruby/object:Gem::Requirement
169
169
  requirements:
170
170
  - - ">="
@@ -301,6 +301,7 @@ files:
301
301
  - app/models/good_job/process.rb
302
302
  - app/models/good_job/setting.rb
303
303
  - app/views/good_job/_custom_execution_details.html.erb
304
+ - app/views/good_job/_custom_head.html.erb
304
305
  - app/views/good_job/_custom_job_details.html.erb
305
306
  - app/views/good_job/batches/_jobs.erb
306
307
  - app/views/good_job/batches/_table.erb
@@ -341,6 +342,7 @@ files:
341
342
  - config/locales/ru.yml
342
343
  - config/locales/tr.yml
343
344
  - config/locales/uk.yml
345
+ - config/locales/zh-CN.yml
344
346
  - config/routes.rb
345
347
  - exe/good_job
346
348
  - lib/active_job/queue_adapters/good_job_adapter.rb
@@ -422,7 +424,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
422
424
  - !ruby/object:Gem::Version
423
425
  version: '0'
424
426
  requirements: []
425
- rubygems_version: 3.7.2
427
+ rubygems_version: 3.6.9
426
428
  specification_version: 4
427
429
  summary: A multithreaded, Postgres-based ActiveJob backend for Ruby on Rails
428
430
  test_files: []