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 +4 -4
- data/.github/workflows/ruby-ci.yml +1 -1
- data/README.md +1 -2
- data/carrierwave_backgrounder.gemspec +4 -1
- data/lib/backgrounder/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e007beb6c4d7bdd9d12f197d3dd1ef9a1fd0db2cff176c91bf556167311c916
|
4
|
+
data.tar.gz: d6d3ffca8551ea931c9788c02b1b6aa73ace34274229152c5816ed871f9e50a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2186ebdc16e2e3dd6dc76d5998ba79b23903caaf956d18fa403228f75e636b145bb3b7a0b0d0ef078e3c9530bb868dbae20d3b83beddd0a4bfa9a168c351b667
|
7
|
+
data.tar.gz: 35cc9df51de365463319a0d4cdd9df204ecb44105f5975d37cbaf1a1e3aff68335082fbf3f83ac98975722e9012447dc93429c039603d44def6856fe1c2cab7d
|
data/README.md
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
# CarrierWave Backgrounder
|
2
2
|
|
3
3
|
[](https://github.com/lardawge/carrierwave_backgrounder/actions/workflows/ruby-ci.yml)
|
4
|
-
[](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
|
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
|
|
data/lib/backgrounder/version.rb
CHANGED
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.
|
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
|
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
|