acidic_job 1.0.0.rc4 → 1.0.0.rc5
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/lib/acidic_job/context.rb +1 -1
- data/lib/acidic_job/version.rb +1 -1
- metadata +5 -27
- data/.codacy.yml +0 -4
- data/.github/FUNDING.yml +0 -13
- data/.github/workflows/main.yml +0 -38
- data/.gitignore +0 -18
- data/.rubocop-https---www-goodcop-style-base-yml +0 -1051
- data/.rubocop.yml +0 -11
- data/.ruby-version +0 -1
- data/Gemfile +0 -5
- data/Gemfile.lock +0 -209
- data/Rakefile +0 -16
- data/TODO +0 -77
- data/UPGRADE_GUIDE.md +0 -81
- data/acidic_job.gemspec +0 -50
- data/bin/console +0 -21
- data/bin/setup +0 -8
- data/bin/test_all +0 -26
- data/blog_post.md +0 -28
- data/combustion/log/test.log +0 -0
- data/gemfiles/rails_7.0.gemfile +0 -11
- data/gemfiles/rails_7.1.gemfile +0 -11
- data/gemfiles/rails_7.2.gemfile +0 -11
- data/gemfiles/rails_8.0.gemfile +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af6f1d0a08680695a243f3b045eb9eedd0bd7d6568e14acf8caefeeca4dc45f6
|
4
|
+
data.tar.gz: 533f91d24f7a4cfc5cbd9b74ef55f7207abd1ae00984fec545ad5590ca0b73b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12a444e4a971df69a1f6f15c64ce0d3609104fe0e8a42ffc4ece9a6d948a5f799981e8ee087fcac45befea46b4f2d4f1279ef39b625cdc1a4db6618e04a98098
|
7
|
+
data.tar.gz: 05b26e35b45823c32063d41e6ee82b9ad49239de0a412c4c38328ad95391cad60e1e404c04638d0811d27c8073666a5f42cebc36912ac5c44a64d84ab46ad859
|
data/lib/acidic_job/context.rb
CHANGED
@@ -26,7 +26,7 @@ module AcidicJob
|
|
26
26
|
begin
|
27
27
|
AcidicJob::Value.upsert_all(records, unique_by: [:execution_id, :key])
|
28
28
|
rescue ArgumentError => e
|
29
|
-
if e.message.include?(
|
29
|
+
if e.message.include?("does not support :unique_by")
|
30
30
|
AcidicJob::Value.upsert_all(records)
|
31
31
|
else
|
32
32
|
raise
|
data/lib/acidic_job/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: acidic_job
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- fractaledmind
|
@@ -97,16 +97,16 @@ dependencies:
|
|
97
97
|
name: chaotic_job
|
98
98
|
requirement: !ruby/object:Gem::Requirement
|
99
99
|
requirements:
|
100
|
-
- -
|
100
|
+
- - '='
|
101
101
|
- !ruby/object:Gem::Version
|
102
|
-
version:
|
102
|
+
version: 0.3.0
|
103
103
|
type: :development
|
104
104
|
prerelease: false
|
105
105
|
version_requirements: !ruby/object:Gem::Requirement
|
106
106
|
requirements:
|
107
|
-
- -
|
107
|
+
- - '='
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version:
|
109
|
+
version: 0.3.0
|
110
110
|
- !ruby/object:Gem::Dependency
|
111
111
|
name: combustion
|
112
112
|
requirement: !ruby/object:Gem::Requirement
|
@@ -198,34 +198,12 @@ executables: []
|
|
198
198
|
extensions: []
|
199
199
|
extra_rdoc_files: []
|
200
200
|
files:
|
201
|
-
- ".codacy.yml"
|
202
|
-
- ".github/FUNDING.yml"
|
203
|
-
- ".github/workflows/main.yml"
|
204
|
-
- ".gitignore"
|
205
|
-
- ".rubocop-https---www-goodcop-style-base-yml"
|
206
|
-
- ".rubocop.yml"
|
207
|
-
- ".ruby-version"
|
208
|
-
- Gemfile
|
209
|
-
- Gemfile.lock
|
210
201
|
- LICENSE
|
211
202
|
- README.md
|
212
|
-
- Rakefile
|
213
|
-
- TODO
|
214
|
-
- UPGRADE_GUIDE.md
|
215
|
-
- acidic_job.gemspec
|
216
203
|
- app/models/acidic_job/entry.rb
|
217
204
|
- app/models/acidic_job/execution.rb
|
218
205
|
- app/models/acidic_job/record.rb
|
219
206
|
- app/models/acidic_job/value.rb
|
220
|
-
- bin/console
|
221
|
-
- bin/setup
|
222
|
-
- bin/test_all
|
223
|
-
- blog_post.md
|
224
|
-
- combustion/log/test.log
|
225
|
-
- gemfiles/rails_7.0.gemfile
|
226
|
-
- gemfiles/rails_7.1.gemfile
|
227
|
-
- gemfiles/rails_7.2.gemfile
|
228
|
-
- gemfiles/rails_8.0.gemfile
|
229
207
|
- lib/acidic_job.rb
|
230
208
|
- lib/acidic_job/arguments.rb
|
231
209
|
- lib/acidic_job/builder.rb
|
data/.codacy.yml
DELETED
data/.github/FUNDING.yml
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
# These are supported funding model platforms
|
2
|
-
|
3
|
-
github: fractaledmind
|
4
|
-
patreon: # Replace with a single Patreon username
|
5
|
-
open_collective: # Replace with a single Open Collective username
|
6
|
-
ko_fi: # Replace with a single Ko-fi username
|
7
|
-
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
8
|
-
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
9
|
-
liberapay: # Replace with a single Liberapay username
|
10
|
-
issuehunt: # Replace with a single IssueHunt username
|
11
|
-
otechie: # Replace with a single Otechie username
|
12
|
-
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
|
13
|
-
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
data/.github/workflows/main.yml
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
name: CI
|
2
|
-
|
3
|
-
on: [push]
|
4
|
-
|
5
|
-
jobs:
|
6
|
-
build:
|
7
|
-
runs-on: ubuntu-latest
|
8
|
-
|
9
|
-
strategy:
|
10
|
-
fail-fast: false
|
11
|
-
matrix:
|
12
|
-
ruby: ["3.0", "3.1", "3.2", "3.3"]
|
13
|
-
rails: [ "7.1", "7.2", "8.0"]
|
14
|
-
exclude:
|
15
|
-
- ruby: "3.0"
|
16
|
-
rails: "8.0"
|
17
|
-
- ruby: "3.1"
|
18
|
-
rails: "8.0"
|
19
|
-
- ruby: "3.0"
|
20
|
-
rails: "7.2"
|
21
|
-
|
22
|
-
env:
|
23
|
-
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails }}.gemfile
|
24
|
-
|
25
|
-
steps:
|
26
|
-
- uses: actions/checkout@v4
|
27
|
-
|
28
|
-
- name: Set up Ruby
|
29
|
-
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
30
|
-
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
31
|
-
uses: ruby/setup-ruby@v1
|
32
|
-
with:
|
33
|
-
bundler-cache: true # 'bundle install' and cache gems
|
34
|
-
ruby-version: ${{ matrix.ruby }}
|
35
|
-
|
36
|
-
- name: Run the default task
|
37
|
-
run: bundle exec rake
|
38
|
-
timeout-minutes: 2
|
data/.gitignore
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
/.bundle/
|
2
|
-
/.yardoc
|
3
|
-
/_yardoc/
|
4
|
-
/coverage/
|
5
|
-
/doc/
|
6
|
-
/pkg/
|
7
|
-
/spec/reports/
|
8
|
-
/tmp/
|
9
|
-
.DS_Store
|
10
|
-
/test/database.sqlite
|
11
|
-
slides.md
|
12
|
-
/test/dummy
|
13
|
-
/test/log
|
14
|
-
/database.sqlite
|
15
|
-
/test/combustion/database.sqlite*
|
16
|
-
/test/combustion/log/test.log
|
17
|
-
/test/combustion/tmp/*
|
18
|
-
/gemfiles/*.lock
|