diff options
author | George Claghorn <george@basecamp.com> | 2017-12-28 17:11:15 -0500 |
---|---|---|
committer | George Claghorn <george@basecamp.com> | 2017-12-28 17:11:15 -0500 |
commit | 09d4cb42250aa88390d734c4a5730a3061f9ac2b (patch) | |
tree | b166306b62f5f6b9798c544f48ae3789c1b1ee5b /guides | |
parent | e525107108955b5b812825fc3c8c3aec9e1364d2 (diff) | |
download | rails-09d4cb42250aa88390d734c4a5730a3061f9ac2b.tar.gz rails-09d4cb42250aa88390d734c4a5730a3061f9ac2b.tar.bz2 rails-09d4cb42250aa88390d734c4a5730a3061f9ac2b.zip |
Link to the client gems [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_storage_overview.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/guides/source/active_storage_overview.md b/guides/source/active_storage_overview.md index 38323c089f..4f35f2e31d 100644 --- a/guides/source/active_storage_overview.md +++ b/guides/source/active_storage_overview.md @@ -108,7 +108,8 @@ amazon: region: "" bucket: "" ``` -Also, add the S3 client gem to your `Gemfile`: + +Add the [`aws-sdk-s3`](https://github.com/aws/aws-sdk-ruby) gem to your `Gemfile`: ``` ruby gem "aws-sdk-s3", require: false @@ -127,7 +128,7 @@ azure: container: "" ``` -Also, add the Microsoft Azure Storage client gem to your `Gemfile`: +Add the [`azure-storage`](https://github.com/Azure/azure-storage-ruby) gem to your `Gemfile`: ``` ruby gem "azure-storage", require: false @@ -156,7 +157,7 @@ google: bucket: "" ``` -Also, add the Google Cloud Storage client gem to your `Gemfile`: +Add the [`google-cloud-storage`](https://github.com/GoogleCloudPlatform/google-cloud-ruby/tree/master/google-cloud-storage) gem to your `Gemfile`: ``` ruby gem "google-cloud-storage", "~> 1.3", require: false |