active_job_store 0.4.0 → 0.5.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/app/models/active_job_store/record.rb +4 -4
- data/lib/active_job_store/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a53200d7e5f4f9654d3e8db62ef8a92014a78d264f43cece9486228a3ff03c9
|
|
4
|
+
data.tar.gz: b703fe5f1183d8c0718eb45e651580f02d41d0efae9eb81cc9e1a59c10e788a4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 819a6339762b27117d43cf52075896611c5e83818018546a04c0727a03daad4f3a77b60c71030ef8218940ea1883223b4bf016b2a3e787f9b4fd810c2ded8f6b
|
|
7
|
+
data.tar.gz: a1bcf57d7b6f670dd90231abc21ed241a532a8ad7985b6e68b40b4b3c29001f8a23408f676ac4c0b45fb81e3102f33b8b2e3e7a9089add9410eb710465607cc0
|
|
@@ -4,10 +4,10 @@ module ActiveJobStore
|
|
|
4
4
|
class Record < ApplicationRecord
|
|
5
5
|
self.table_name = 'active_job_store'
|
|
6
6
|
|
|
7
|
-
serialize :arguments, JSON
|
|
8
|
-
serialize :custom_data, JSON
|
|
9
|
-
serialize :details, JSON
|
|
10
|
-
serialize :result, JSON
|
|
7
|
+
serialize :arguments, coder: JSON
|
|
8
|
+
serialize :custom_data, coder: JSON
|
|
9
|
+
serialize :details, coder: JSON
|
|
10
|
+
serialize :result, coder: JSON
|
|
11
11
|
|
|
12
12
|
enum state: { initialized: 0, enqueued: 1, started: 2, completed: 3, error: 4 }
|
|
13
13
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_job_store
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mattia Roccoberton
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-10-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activejob
|
|
@@ -58,9 +58,9 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
homepage_uri: https://github.com/blocknotes/active_job_store
|
|
60
60
|
source_code_uri: https://github.com/blocknotes/active_job_store
|
|
61
|
-
changelog_uri: https://github.com/blocknotes/active_job_store/blob/
|
|
61
|
+
changelog_uri: https://github.com/blocknotes/active_job_store/blob/main/CHANGELOG.md
|
|
62
62
|
rubygems_mfa_required: 'true'
|
|
63
|
-
post_install_message:
|
|
63
|
+
post_install_message:
|
|
64
64
|
rdoc_options: []
|
|
65
65
|
require_paths:
|
|
66
66
|
- lib
|
|
@@ -68,15 +68,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
68
68
|
requirements:
|
|
69
69
|
- - ">="
|
|
70
70
|
- !ruby/object:Gem::Version
|
|
71
|
-
version: 2.
|
|
71
|
+
version: 2.7.0
|
|
72
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
74
|
- - ">="
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
rubygems_version: 3.
|
|
79
|
-
signing_key:
|
|
78
|
+
rubygems_version: 3.4.19
|
|
79
|
+
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Persist jobs information on DB
|
|
82
82
|
test_files: []
|