dynamic_image 3.0.1 → 3.0.3
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/README.md +0 -2
- data/lib/dynamic_image/controller.rb +3 -3
- data/lib/dynamic_image/format.rb +1 -3
- data/lib/dynamic_image/helper.rb +4 -7
- data/lib/dynamic_image/image_processor.rb +1 -1
- data/lib/dynamic_image/jobs/create_variant.rb +4 -0
- data/lib/dynamic_image/metadata.rb +1 -1
- data/lib/dynamic_image/model.rb +1 -1
- data/lib/dynamic_image/version.rb +1 -1
- data/lib/rails/generators/dynamic_image/resource/resource_generator.rb +2 -2
- metadata +6 -61
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1bb0c1784966da4c77d72cca16f3210a70bc3902061bae5984078756569a7a3c
|
4
|
+
data.tar.gz: 3748823e9aab5f7a95ac7cd55edfd4a985c4f3d0d372324a3e58ecbffba4fa45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa45a369b349ecbe15aad01725f979cb64ee5fdabd6c78b9f27fc2754fd05e0bf8cc65b792e7b8866c990aeb0c4037f602345a37ba8cc6c4fa2e35849f05c6f1
|
7
|
+
data.tar.gz: 99b4fa3790acecf8981cae6ca524601ff69cb9751768245d6cb0255bec7d43d10e7d129089a15e2cb4243a7821577c2ded5e9a9192d14e0d25f8758013a5f4c6
|
data/README.md
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|

|
3
3
|
[](https://codeclimate.com/github/elektronaut/dynamic_image)
|
4
4
|
[](https://codeclimate.com/github/elektronaut/dynamic_image)
|
5
|
-
[](http://inch-ci.org/github/elektronaut/dynamic_image)
|
6
|
-
[](https://hakiri.io/github/elektronaut/dynamic_image/main)
|
7
5
|
|
8
6
|
# DynamicImage
|
9
7
|
|
@@ -77,7 +77,7 @@ module DynamicImage
|
|
77
77
|
respond_to do |format|
|
78
78
|
format.html do
|
79
79
|
render(template: "dynamic_image/images/show",
|
80
|
-
layout: false, locals: { options:
|
80
|
+
layout: false, locals: { options: })
|
81
81
|
end
|
82
82
|
format.any(:gif, :jpeg, :jpg, :png, :tiff, :webp) do
|
83
83
|
process_and_send(@record, options)
|
@@ -91,9 +91,9 @@ module DynamicImage
|
|
91
91
|
respond_to do |format|
|
92
92
|
format.any(:gif, :jpeg, :jpg, :png, :tiff, :webp) do
|
93
93
|
send_data(@record.data,
|
94
|
-
filename
|
94
|
+
filename:,
|
95
95
|
content_type: @record.content_type,
|
96
|
-
disposition:
|
96
|
+
disposition:)
|
97
97
|
end
|
98
98
|
end
|
99
99
|
end
|
data/lib/dynamic_image/format.rb
CHANGED
@@ -88,9 +88,7 @@ module DynamicImage
|
|
88
88
|
animated: true,
|
89
89
|
content_type: %w[image/gif],
|
90
90
|
extension: %w[.gif],
|
91
|
-
magic_bytes: %w[GIF87a GIF89a]
|
92
|
-
save_options: { optimize_gif_frames: true,
|
93
|
-
optimize_gif_transparency: true }
|
91
|
+
magic_bytes: %w[GIF87a GIF89a]
|
94
92
|
)
|
95
93
|
|
96
94
|
register(
|
data/lib/dynamic_image/helper.rb
CHANGED
@@ -26,16 +26,13 @@ module DynamicImage
|
|
26
26
|
#
|
27
27
|
# image = Image.find(params[:id])
|
28
28
|
# dynamic_image_tag(image)
|
29
|
-
# # => <img
|
29
|
+
# # => <img height="200" src="..." width="320" />
|
30
30
|
# dynamic_image_tag(image, size: "100x100", alt="Avatar")
|
31
31
|
# # => <img alt="Avatar" height="62" src="..." width="100" />
|
32
32
|
def dynamic_image_tag(record_or_array, options = {})
|
33
|
-
record = extract_dynamic_image_record(record_or_array)
|
34
|
-
options = { alt: filename_to_alt(record.filename) }.merge(options)
|
35
|
-
|
36
33
|
size = fit_size!(record_or_array, options)
|
37
34
|
url_options = options.extract!(*allowed_dynamic_image_url_options)
|
38
|
-
html_options = { size:
|
35
|
+
html_options = { size: }.merge(options)
|
39
36
|
|
40
37
|
image_tag(dynamic_image_path_with_size(record_or_array,
|
41
38
|
size,
|
@@ -143,7 +140,7 @@ module DynamicImage
|
|
143
140
|
routing_type: :url,
|
144
141
|
action: nil,
|
145
142
|
format: default_format_for_image(record),
|
146
|
-
size:
|
143
|
+
size:
|
147
144
|
}.merge(options)
|
148
145
|
options[:digest] =
|
149
146
|
dynamic_image_digest(record, options[:action], options[:size])
|
@@ -179,7 +176,7 @@ module DynamicImage
|
|
179
176
|
|
180
177
|
def image_sizing(record, size_opts, uncropped)
|
181
178
|
ImageSizing
|
182
|
-
.new(record, uncropped:
|
179
|
+
.new(record, uncropped:)
|
183
180
|
.fit(size_opts[:size], size_opts).floor.to_s
|
184
181
|
end
|
185
182
|
end
|
@@ -8,6 +8,10 @@ module DynamicImage
|
|
8
8
|
class CreateVariant < ActiveJob::Base
|
9
9
|
queue_as :dis
|
10
10
|
|
11
|
+
discard_on Dis::Errors::NotFoundError
|
12
|
+
|
13
|
+
retry_on StandardError, attempts: 10, wait: :polynomially_longer
|
14
|
+
|
11
15
|
def perform(record, options, size)
|
12
16
|
size_v = Vector2d.parse(size)
|
13
17
|
DynamicImage::ProcessedImage.new(record, options)
|
data/lib/dynamic_image/model.rb
CHANGED
@@ -100,7 +100,7 @@ module DynamicImage
|
|
100
100
|
# Includes a timestamp fingerprint in the URL param, so
|
101
101
|
# that rendered images can be cached indefinitely.
|
102
102
|
def to_param
|
103
|
-
[id, updated_at.utc.
|
103
|
+
[id, updated_at.utc.to_fs(cache_timestamp_format)].join("-")
|
104
104
|
end
|
105
105
|
|
106
106
|
private
|
@@ -19,8 +19,8 @@ module DynamicImage
|
|
19
19
|
"#{file_name.pluralize}_controller.rb"),
|
20
20
|
after: "ApplicationController\n"
|
21
21
|
) do
|
22
|
-
" include DynamicImage::Controller\n\n private\n\n" \
|
23
|
-
"
|
22
|
+
" include DynamicImage::Controller\n\n private\n\n " \
|
23
|
+
"def model\n #{class_name}\n end\n"
|
24
24
|
end
|
25
25
|
end
|
26
26
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dynamic_image
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Inge Jørgensen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dis
|
@@ -78,62 +78,6 @@ dependencies:
|
|
78
78
|
- - ">="
|
79
79
|
- !ruby/object:Gem::Version
|
80
80
|
version: 2.2.1
|
81
|
-
- !ruby/object:Gem::Dependency
|
82
|
-
name: rails-controller-testing
|
83
|
-
requirement: !ruby/object:Gem::Requirement
|
84
|
-
requirements:
|
85
|
-
- - ">="
|
86
|
-
- !ruby/object:Gem::Version
|
87
|
-
version: '0'
|
88
|
-
type: :development
|
89
|
-
prerelease: false
|
90
|
-
version_requirements: !ruby/object:Gem::Requirement
|
91
|
-
requirements:
|
92
|
-
- - ">="
|
93
|
-
- !ruby/object:Gem::Version
|
94
|
-
version: '0'
|
95
|
-
- !ruby/object:Gem::Dependency
|
96
|
-
name: rspec-rails
|
97
|
-
requirement: !ruby/object:Gem::Requirement
|
98
|
-
requirements:
|
99
|
-
- - ">="
|
100
|
-
- !ruby/object:Gem::Version
|
101
|
-
version: '0'
|
102
|
-
type: :development
|
103
|
-
prerelease: false
|
104
|
-
version_requirements: !ruby/object:Gem::Requirement
|
105
|
-
requirements:
|
106
|
-
- - ">="
|
107
|
-
- !ruby/object:Gem::Version
|
108
|
-
version: '0'
|
109
|
-
- !ruby/object:Gem::Dependency
|
110
|
-
name: simplecov
|
111
|
-
requirement: !ruby/object:Gem::Requirement
|
112
|
-
requirements:
|
113
|
-
- - "~>"
|
114
|
-
- !ruby/object:Gem::Version
|
115
|
-
version: 0.17.1
|
116
|
-
type: :development
|
117
|
-
prerelease: false
|
118
|
-
version_requirements: !ruby/object:Gem::Requirement
|
119
|
-
requirements:
|
120
|
-
- - "~>"
|
121
|
-
- !ruby/object:Gem::Version
|
122
|
-
version: 0.17.1
|
123
|
-
- !ruby/object:Gem::Dependency
|
124
|
-
name: sqlite3
|
125
|
-
requirement: !ruby/object:Gem::Requirement
|
126
|
-
requirements:
|
127
|
-
- - ">="
|
128
|
-
- !ruby/object:Gem::Version
|
129
|
-
version: '0'
|
130
|
-
type: :development
|
131
|
-
prerelease: false
|
132
|
-
version_requirements: !ruby/object:Gem::Requirement
|
133
|
-
requirements:
|
134
|
-
- - ">="
|
135
|
-
- !ruby/object:Gem::Version
|
136
|
-
version: '0'
|
137
81
|
description: DynamicImage is a Rails plugin that simplifies image uploading and processing
|
138
82
|
email:
|
139
83
|
- inge@elektronaut.no
|
@@ -176,7 +120,8 @@ files:
|
|
176
120
|
homepage: https://github.com/elektronaut/dynamic_image
|
177
121
|
licenses:
|
178
122
|
- MIT
|
179
|
-
metadata:
|
123
|
+
metadata:
|
124
|
+
rubygems_mfa_required: 'true'
|
180
125
|
post_install_message:
|
181
126
|
rdoc_options: []
|
182
127
|
require_paths:
|
@@ -185,14 +130,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
185
130
|
requirements:
|
186
131
|
- - ">="
|
187
132
|
- !ruby/object:Gem::Version
|
188
|
-
version:
|
133
|
+
version: 3.1.0
|
189
134
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
190
135
|
requirements:
|
191
136
|
- - ">="
|
192
137
|
- !ruby/object:Gem::Version
|
193
138
|
version: '0'
|
194
139
|
requirements: []
|
195
|
-
rubygems_version: 3.
|
140
|
+
rubygems_version: 3.5.3
|
196
141
|
signing_key:
|
197
142
|
specification_version: 4
|
198
143
|
summary: Rails plugin that simplifies image uploading and processing
|