web47core 2.2.19 → 2.2.21
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52dabd980e91acb4a4bd48dda85a1bc751881dde38eb225a603f545f854e466f
|
4
|
+
data.tar.gz: 895e956c4b2a27517055e6dee2b524ea9fbfb66be965b9324c2fc99c5c26b4c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5dbcecf6c5c6488a6bcd7d1024d597b05e478c0f41d54f7aa69cbb6f004aa746430cc7afc36a9644f413311ca8fbd50d95bfa0a7587881dd2a3c2a52ea38cfda
|
7
|
+
data.tar.gz: fc8652424d0c32dace03221cf2885a096a716d545a27ba1d428d9b7667f74d6d0616e1f7fc5da786dae10a3bf2b8e178070df3908ce9db37a1c1950b82c790b4
|
@@ -17,12 +17,12 @@
|
|
17
17
|
data: {confirm: t('confirm_destroy_all')}}
|
18
18
|
%i.material-icons
|
19
19
|
delete
|
20
|
-
%a.btn.yellow.darken-3{href: class_action_path(:
|
20
|
+
%a.btn.yellow.darken-3{href: class_action_path(:resbumit_all, failed_only:true),
|
21
21
|
title: t('.resubmit_failed'),
|
22
22
|
data: {confirm: t('.confirm_resubmit_failed')}}
|
23
23
|
%i.material-icons
|
24
24
|
restore
|
25
|
-
%a.btn.red{href: class_action_path(:
|
25
|
+
%a.btn.red{href: class_action_path(:resbumit_all, failed_only:false),
|
26
26
|
title: t('.resubmit_all'),
|
27
27
|
data: {confirm: t('.confirm_resubmit_all')}}
|
28
28
|
%i.material-icons
|
@@ -40,7 +40,7 @@
|
|
40
40
|
%tbody
|
41
41
|
- @delayed_jobs.each do |delayed_job|
|
42
42
|
%tr
|
43
|
-
%td=current_user.local_time(delayed_job.
|
43
|
+
%td=current_user.local_time(delayed_job.created_at)
|
44
44
|
%td.name=link_to(delayed_job.display_name, model_path(delayed_job))
|
45
45
|
%td=delayed_job.priority
|
46
46
|
%td=delayed_job.status_description
|
@@ -57,4 +57,4 @@
|
|
57
57
|
.card-action
|
58
58
|
.row
|
59
59
|
.col.s6.center-align= delete_button_tag(@delayed_job, model_path(@delayed_job))
|
60
|
-
.col.s6.center-align= replay_button_tag(@delayed_job,
|
60
|
+
.col.s6.center-align= replay_button_tag(@delayed_job, model_path(@delayed_job))
|
@@ -46,7 +46,7 @@ module CoreDelayedJobsController
|
|
46
46
|
|
47
47
|
job.resubmit
|
48
48
|
end
|
49
|
-
flash.now[:info] = 'All
|
49
|
+
flash.now[:info] = 'All DelayJobs has been resubmitted'
|
50
50
|
redirect_to index_path
|
51
51
|
rescue StandardError => error
|
52
52
|
log_controller_error error, true
|
data/lib/web47core/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: web47core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.21
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Schroeder
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|
@@ -658,6 +658,20 @@ dependencies:
|
|
658
658
|
- - "<"
|
659
659
|
- !ruby/object:Gem::Version
|
660
660
|
version: '4'
|
661
|
+
- !ruby/object:Gem::Dependency
|
662
|
+
name: nio4r
|
663
|
+
requirement: !ruby/object:Gem::Requirement
|
664
|
+
requirements:
|
665
|
+
- - '='
|
666
|
+
- !ruby/object:Gem::Version
|
667
|
+
version: 2.7.4
|
668
|
+
type: :development
|
669
|
+
prerelease: false
|
670
|
+
version_requirements: !ruby/object:Gem::Requirement
|
671
|
+
requirements:
|
672
|
+
- - '='
|
673
|
+
- !ruby/object:Gem::Version
|
674
|
+
version: 2.7.4
|
661
675
|
description: Core components used in all our web products.
|
662
676
|
email:
|
663
677
|
- chris@app47.com
|