carrierwave_backgrounder 1.1.0 → 1.1.1

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: 6cd2ae4be06e219ef889f0adae997dfeed2dd560dd254c911d72381ad1d900aa
4
- data.tar.gz: 17f38f06b44aa596c33d7a1ef4ad9fe8f1525c03e7faa7f0f7b01bcbf6d364ce
3
+ metadata.gz: 1e007beb6c4d7bdd9d12f197d3dd1ef9a1fd0db2cff176c91bf556167311c916
4
+ data.tar.gz: d6d3ffca8551ea931c9788c02b1b6aa73ace34274229152c5816ed871f9e50a2
5
5
  SHA512:
6
- metadata.gz: fb0968ff6b272a2e9ee4e8605c9174114290297fcad7bb8d32fa77dbdd720b301bddd8b3479b6c413d099d51c1dd39b2828d3c9092ac2a72a0cb22ed78620881
7
- data.tar.gz: b1d9081d1f1d718213cd256ecaae6570736459e9637c3c957c2bbc4d9618e5693822b3a1fc08d3ff669a18a45bf9fb13dec79a7394b498ecd8caac5c3e79706c
6
+ metadata.gz: 2186ebdc16e2e3dd6dc76d5998ba79b23903caaf956d18fa403228f75e636b145bb3b7a0b0d0ef078e3c9530bb868dbae20d3b83beddd0a4bfa9a168c351b667
7
+ data.tar.gz: 35cc9df51de365463319a0d4cdd9df204ecb44105f5975d37cbaf1a1e3aff68335082fbf3f83ac98975722e9012447dc93429c039603d44def6856fe1c2cab7d
@@ -12,7 +12,7 @@ jobs:
12
12
  strategy:
13
13
  fail-fast: false
14
14
  matrix:
15
- ruby: ['3.0', '3.1', '3.2', '3.4', '3.5', 'ruby-head']
15
+ ruby: ['3.2', '3.4', 'ruby-head']
16
16
  queue_adapter: ['sidekiq', 'active_job']
17
17
  continue-on-error: ${{ matrix.ruby == 'ruby-head' }}
18
18
  steps:
data/README.md CHANGED
@@ -1,8 +1,7 @@
1
1
  # CarrierWave Backgrounder
2
2
 
3
3
  [![Build Status](https://github.com/lardawge/carrierwave_backgrounder/actions/workflows/ruby-ci.yml/badge.svg)](https://github.com/lardawge/carrierwave_backgrounder/actions/workflows/ruby-ci.yml)
4
- [![Code Climate](https://codeclimate.com/github/lardawge/carrierwave_backgrounder.png)](https://codeclimate.com/github/lardawge/carrierwave_backgrounder)
5
-
4
+ [![Maintainability](https://qlty.sh/gh/lardawge/projects/carrierwave_backgrounder/maintainability.svg)](https://qlty.sh/gh/lardawge/projects/carrierwave_backgrounder)
6
5
  ---
7
6
  NOTICE: Version 1.1.0 contains a change in behavior from previous version. When a record is deleted before the job is picked up, it will no longer raise an error. Prior to this change, when using `process_in_background`, if a record was missing, an error was raised. Some users might have relied on that. By default, this will no longer happen. If you want to maintain that behavior, you must set the `suppress_record_not_found_errors` configuration to `false`. This will raise a RecordNotFound error.
8
7
 
@@ -6,17 +6,20 @@ Gem::Specification.new do |s|
6
6
  s.name = "carrierwave_backgrounder"
7
7
  s.version = CarrierWave::Backgrounder::VERSION
8
8
  s.platform = Gem::Platform::RUBY
9
+
9
10
  s.authors = ["Larry Sprock"]
10
11
  s.email = ["larry@lucidbleu.com"]
11
12
  s.homepage = "https://github.com/lardawge/carrierwave_backgrounder"
12
13
  s.licenses = ["MIT"]
13
- s.summary = %q{Offload CarrierWave's image processing and storage to a background process using Delayed Job, Resque, Sidekiq, Qu, Queue Classic or Girl Friday}
14
+ s.summary = %q{Offload CarrierWave's image processing and storage to a background process using ActiveJob or Sidekiq.}
14
15
 
15
16
  s.files = `git ls-files`.split("\n")
16
17
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
18
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
19
  s.require_paths = ["lib"]
19
20
 
21
+ s.required_ruby_version = '>= 3.0'
22
+
20
23
  s.add_dependency "carrierwave", ["> 2.0", "< 4.0"]
21
24
  s.add_dependency "rails", ["> 6.0", "< 8.1"]
22
25
 
@@ -1,5 +1,5 @@
1
1
  module CarrierWave
2
2
  module Backgrounder
3
- VERSION = "1.1.0"
3
+ VERSION = "1.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: carrierwave_backgrounder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Larry Sprock
@@ -242,7 +242,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
242
242
  requirements:
243
243
  - - ">="
244
244
  - !ruby/object:Gem::Version
245
- version: '0'
245
+ version: '3.0'
246
246
  required_rubygems_version: !ruby/object:Gem::Requirement
247
247
  requirements:
248
248
  - - ">="
@@ -252,7 +252,7 @@ requirements: []
252
252
  rubygems_version: 3.6.9
253
253
  specification_version: 4
254
254
  summary: Offload CarrierWave's image processing and storage to a background process
255
- using Delayed Job, Resque, Sidekiq, Qu, Queue Classic or Girl Friday
255
+ using ActiveJob or Sidekiq.
256
256
  test_files:
257
257
  - spec/backgrounder/orm/activemodel_spec.rb
258
258
  - spec/backgrounder/orm/base_spec.rb