imgix 4.1.0 → 4.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/CHANGELOG.md +2 -0
- data/Gemfile.lock +48 -0
- data/lib/imgix/path.rb +3 -1
- data/lib/imgix/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe94bfdf098910e9c38cd7ab4240fbbc7999a5d311b05c6845f245a063dad9d8
|
4
|
+
data.tar.gz: 3e6362e2ac6884b7b2ab1aba41f4ce47ed12e1f04610d904128f7fdfbf44913f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa4938dc37fdc818db474ba9a6b4c3af77db3a532c280fdeffdd3f98a91427e0fbc0ea5d28e09acbd4549fed18eef0837fbe4f1512308007736b64f05432ef58
|
7
|
+
data.tar.gz: 4a666775c69b5f01a492cbb923cbbb916c3df93f66f4b9db2216c0133670bb9fb8afcdd00323c4126b278dd01439263fe34765fce0c86125f2e1011cce12c35c
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,8 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
5
5
|
|
6
|
+
## [4.1.1](https://github.com/imgix/imgix-rb/compare/4.1.1...4.1.1) - April 8, 2025
|
7
|
+
|
6
8
|
## [4.1.0](https://github.com/imgix/imgix-rb/compare/4.0.3...4.1.0) - December 14, 2022
|
7
9
|
|
8
10
|
- feat: add parameter to disable path encoding ([#124](https://github.com/imgix/imgix-rb/pull/124))
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
imgix (4.1.1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
addressable (2.8.7)
|
10
|
+
public_suffix (>= 2.0.2, < 7.0)
|
11
|
+
ansi (1.5.0)
|
12
|
+
benchmark-ips (2.14.0)
|
13
|
+
bigdecimal (3.1.9)
|
14
|
+
builder (3.3.0)
|
15
|
+
crack (1.0.0)
|
16
|
+
bigdecimal
|
17
|
+
rexml
|
18
|
+
hashdiff (1.1.2)
|
19
|
+
json (2.10.2)
|
20
|
+
minitest (5.25.5)
|
21
|
+
minitest-reporters (1.7.1)
|
22
|
+
ansi
|
23
|
+
builder
|
24
|
+
minitest (>= 5.0)
|
25
|
+
ruby-progressbar
|
26
|
+
public_suffix (5.1.1)
|
27
|
+
rake (13.2.1)
|
28
|
+
rexml (3.4.1)
|
29
|
+
ruby-progressbar (1.13.0)
|
30
|
+
webmock (3.25.1)
|
31
|
+
addressable (>= 2.8.0)
|
32
|
+
crack (>= 0.3.2)
|
33
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
34
|
+
|
35
|
+
PLATFORMS
|
36
|
+
x86_64-linux
|
37
|
+
|
38
|
+
DEPENDENCIES
|
39
|
+
benchmark-ips
|
40
|
+
imgix!
|
41
|
+
json
|
42
|
+
minitest
|
43
|
+
minitest-reporters
|
44
|
+
rake
|
45
|
+
webmock
|
46
|
+
|
47
|
+
BUNDLED WITH
|
48
|
+
2.4.22
|
data/lib/imgix/path.rb
CHANGED
@@ -176,7 +176,9 @@ module Imgix
|
|
176
176
|
@options.map do |key, val|
|
177
177
|
escaped_key = ERB::Util.url_encode(key.to_s)
|
178
178
|
|
179
|
-
if
|
179
|
+
if val.to_s.empty?
|
180
|
+
escaped_key
|
181
|
+
elsif escaped_key.end_with? '64'
|
180
182
|
escaped_key << "=" << Base64.urlsafe_encode64(val.to_s).delete('=')
|
181
183
|
else
|
182
184
|
escaped_key << "=" << ERB::Util.url_encode(val.to_s)
|
data/lib/imgix/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: imgix
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.1.
|
4
|
+
version: 4.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kelly Sutton
|
@@ -13,7 +13,7 @@ authors:
|
|
13
13
|
autorequire:
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
|
-
date:
|
16
|
+
date: 2025-05-02 00:00:00.000000000 Z
|
17
17
|
dependencies: []
|
18
18
|
description: Easily create and sign imgix URLs.
|
19
19
|
email:
|
@@ -33,6 +33,7 @@ files:
|
|
33
33
|
- CODE-OF-CONDUCT.md
|
34
34
|
- CONTRIBUTING.md
|
35
35
|
- Gemfile
|
36
|
+
- Gemfile.lock
|
36
37
|
- LICENSE
|
37
38
|
- README.md
|
38
39
|
- Rakefile
|
@@ -49,8 +50,8 @@ licenses:
|
|
49
50
|
metadata:
|
50
51
|
bug_tracker_uri: https://github.com/imgix/imgix-rb/issues
|
51
52
|
changelog_uri: https://github.com/imgix/imgix-rb/blob/main/CHANGELOG.md
|
52
|
-
documentation_uri: https://www.rubydoc.info/gems/imgix/4.1.
|
53
|
-
source_code_uri: https://github.com/imgix/imgix-rb/tree/4.1.
|
53
|
+
documentation_uri: https://www.rubydoc.info/gems/imgix/4.1.1
|
54
|
+
source_code_uri: https://github.com/imgix/imgix-rb/tree/4.1.1
|
54
55
|
post_install_message:
|
55
56
|
rdoc_options: []
|
56
57
|
require_paths:
|