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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '091eb91868dd59d79ea87e37b180a14a8223ff545cd6d72c6e2d2ad07c3187fe'
4
- data.tar.gz: 4509b927b6bb48013f709da6e616bd2c79557864498796380c3694ced17e2a49
3
+ metadata.gz: c682a51cc9f6b4952378aaf8251177a68572a36c651cabc80cbf56ebcdeba202
4
+ data.tar.gz: d260ef47f9a0d781682a20454be249555a72d52563fa86c78a268859e38e92d9
5
5
  SHA512:
6
- metadata.gz: 35e897e5aa09cd7b25156891893d07456ddcc764376cc76022a27561fa69f785e7cbe88d9791b051f3d77bf35738a8e4cbbac73b9bdd6b8d98eb38b8607d5c7a
7
- data.tar.gz: c0381d48f5cf4e21b70fa07949d271ce61bb651af4a9d7ef2571ccb274956340f8d2f4060cdc835588ee6823b6083f99210a321f8decd47bffafe0049dbbff73
6
+ metadata.gz: 0a80c18902444132eff414886eab480d74a5fe8a9e4ea3b6acb86d4f6738fb6cc78638795d96cc2cb77a099c2c62bbeebffdf0f4136591acee1ef086cb0cd321
7
+ data.tar.gz: 8731178773e4d321511b2a73922b38b87156363ffcdf39d43fd1b56bf336c493d051d2c189e13e25e7c623cca7c0dddf532e35b267a5b1b85d63f6a50f1d7128
@@ -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[:host] = imgix[:source]
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[:host] = source
130
+ opts[:domain] = source
131
131
  opts[:secure_url_token] = token
132
132
  @imgix_clients[source] = ::Imgix::Client.new(opts)
133
133
  end
@@ -1,5 +1,5 @@
1
1
  module Imgix
2
2
  module Rails
3
- VERSION = '4.0.1'
3
+ VERSION = '4.0.2'
4
4
  end
5
5
  end
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.1
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-06-11 00:00:00.000000000 Z
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.1
120
- source_code_uri: https://github.com/imgix/imgix-rails/tree/v4.0.1
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: []