imgix-rails 4.0.1 → 4.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/imgix/rails/url_helper.rb +2 -2
- data/lib/imgix/rails/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c682a51cc9f6b4952378aaf8251177a68572a36c651cabc80cbf56ebcdeba202
|
4
|
+
data.tar.gz: d260ef47f9a0d781682a20454be249555a72d52563fa86c78a268859e38e92d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a80c18902444132eff414886eab480d74a5fe8a9e4ea3b6acb86d4f6738fb6cc78638795d96cc2cb77a099c2c62bbeebffdf0f4136591acee1ef086cb0cd321
|
7
|
+
data.tar.gz: 8731178773e4d321511b2a73922b38b87156363ffcdf39d43fd1b56bf336c493d051d2c189e13e25e7c623cca7c0dddf532e35b267a5b1b85d63f6a50f1d7128
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,9 @@
|
|
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.0.2](https://github.com/imgix/imgix-rb/compare/4.0.1...4.0.2) - July 31, 2020
|
7
|
+
- fix: replace `opts[:host`] with `opts[:domain]` to resolve deprecation warnings ([#96](https://github.com/imgix/imgix-rails/pull/96))
|
8
|
+
|
6
9
|
## [4.0.1](https://github.com/imgix/imgix-rb/compare/4.0.0...4.0.1) - June 10, 2020
|
7
10
|
|
8
11
|
- fix: update rake version ([#94](https://github.com/imgix/imgix-rails/pull/94))
|
@@ -112,7 +112,7 @@ module Imgix
|
|
112
112
|
}
|
113
113
|
|
114
114
|
if imgix[:source].is_a?(String)
|
115
|
-
opts[:
|
115
|
+
opts[:domain] = imgix[:source]
|
116
116
|
end
|
117
117
|
|
118
118
|
if imgix.has_key?(:include_library_param)
|
@@ -127,7 +127,7 @@ module Imgix
|
|
127
127
|
@imgix_clients = {}
|
128
128
|
|
129
129
|
sources.map do |source, token|
|
130
|
-
opts[:
|
130
|
+
opts[:domain] = source
|
131
131
|
opts[:secure_url_token] = token
|
132
132
|
@imgix_clients[source] = ::Imgix::Client.new(opts)
|
133
133
|
end
|
data/lib/imgix/rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: imgix-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kelly Sutton
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-
|
12
|
+
date: 2020-08-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: imgix
|
@@ -116,8 +116,8 @@ licenses:
|
|
116
116
|
metadata:
|
117
117
|
bug_tracker_uri: https://github.com/imgix/imgix-rails/issues
|
118
118
|
changelog_uri: https://github.com/imgix/imgix-rails/blob/master/CHANGELOG.md
|
119
|
-
documentation_uri: https://www.rubydoc.info/gems/imgix-rails/4.0.
|
120
|
-
source_code_uri: https://github.com/imgix/imgix-rails/tree/v4.0.
|
119
|
+
documentation_uri: https://www.rubydoc.info/gems/imgix-rails/4.0.2
|
120
|
+
source_code_uri: https://github.com/imgix/imgix-rails/tree/v4.0.2
|
121
121
|
allowed_push_host: https://rubygems.org
|
122
122
|
post_install_message:
|
123
123
|
rdoc_options: []
|