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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0bb00fc13b3abf7f095376244b399d7423b63d3b57c4f545e328c9d136e8c058
4
- data.tar.gz: 0cf2975089e10e7df69972f89b60ffaaa9e5f81e82bc6556e974557ca615e18d
3
+ metadata.gz: af6f1d0a08680695a243f3b045eb9eedd0bd7d6568e14acf8caefeeca4dc45f6
4
+ data.tar.gz: 533f91d24f7a4cfc5cbd9b74ef55f7207abd1ae00984fec545ad5590ca0b73b6
5
5
  SHA512:
6
- metadata.gz: f9beab588dc08ffaba793c9d019f3a1e92bce8964487fbfeba97e2be2d5bf9bf17022c49f0269e85a36b42953e62798feb3667ac1ce0423d31b80b9ac024b1a4
7
- data.tar.gz: 9fe26ec816581a4b3544da0723df644a7515f4e6f75a75d85cb0be37a77461854edf34bab0dddd490bc4f992e0835f9181329a92709bc7de94900895706ddcab
6
+ metadata.gz: 12a444e4a971df69a1f6f15c64ce0d3609104fe0e8a42ffc4ece9a6d948a5f799981e8ee087fcac45befea46b4f2d4f1279ef39b625cdc1a4db6618e04a98098
7
+ data.tar.gz: 05b26e35b45823c32063d41e6ee82b9ad49239de0a412c4c38328ad95391cad60e1e404c04638d0811d27c8073666a5f42cebc36912ac5c44a64d84ab46ad859
@@ -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?('does not support :unique_by')
29
+ if e.message.include?("does not support :unique_by")
30
30
  AcidicJob::Value.upsert_all(records)
31
31
  else
32
32
  raise
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AcidicJob
4
- VERSION = "1.0.0.rc4"
4
+ VERSION = "1.0.0.rc5"
5
5
  end
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.rc4
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: '0'
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: '0'
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
@@ -1,4 +0,0 @@
1
- ---
2
- exclude_paths:
3
- - "**/*.md"
4
- - "LICENSE"
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']
@@ -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