aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-11-29 13:08:33 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-11-29 13:17:04 +0900
commit9d65ac30fde3977d4773ff6052f31b99a5084f0f (patch)
treee08b107308b56d6a463ab380c064d9967707e583 /Gemfile
parent055493ce056a663a7b61ae4f88f657d1a355995d (diff)
downloadrails-9d65ac30fde3977d4773ff6052f31b99a5084f0f.tar.gz
rails-9d65ac30fde3977d4773ff6052f31b99a5084f0f.tar.bz2
rails-9d65ac30fde3977d4773ff6052f31b99a5084f0f.zip
Use `credentials` instead of `keyfile` in GCS sevice
The `keyfile` was renamed to `credentials` in `google-cloud-storage` 1.8.0. https://github.com/GoogleCloudPlatform/google-cloud-ruby/blob/master/google-cloud-storage/CHANGELOG.md#180--2017-11-14 Although `keyfile` can still be used, but it looks like deprecate. https://github.com/GoogleCloudPlatform/google-cloud-ruby/blob/ddf7b2a856d676316525eb581c1a4cc83ca6097b/google-cloud-storage/lib/google/cloud/storage.rb#L589...L590 Therefore, I think that should use `credentials` in newly generated applications. Ref: https://github.com/GoogleCloudPlatform/google-cloud-ruby/issues/1802
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 3c26d1eb18..32ec87b501 100644
--- a/Gemfile
+++ b/Gemfile
@@ -92,7 +92,7 @@ end
# Active Storage
group :storage do
gem "aws-sdk-s3", require: false
- gem "google-cloud-storage", "~> 1.3", require: false
+ gem "google-cloud-storage", "~> 1.8", require: false
gem "azure-storage", require: false
gem "mini_magick"