diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-12-15 16:41:38 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-15 16:41:38 +0900 |
commit | 1865ef7318a1ea9442b1dd3e5498cd68082b6d5a (patch) | |
tree | bcdc6d1dee1d93aede218d0398ce19f5012568ae | |
parent | 640242654c999018a63d5e028b7b6dbe5b49c4c4 (diff) | |
parent | 83e10bd068d71551b3a68054ab7df3c44b75c729 (diff) | |
download | rails-1865ef7318a1ea9442b1dd3e5498cd68082b6d5a.tar.gz rails-1865ef7318a1ea9442b1dd3e5498cd68082b6d5a.tar.bz2 rails-1865ef7318a1ea9442b1dd3e5498cd68082b6d5a.zip |
Merge pull request #31470 from ydakuka/fix-typos-a-st-guide
Fix in ASt guide [ci skip]
-rw-r--r-- | guides/source/active_storage_overview.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/guides/source/active_storage_overview.md b/guides/source/active_storage_overview.md index 2ab14ad3de..ef1d599d40 100644 --- a/guides/source/active_storage_overview.md +++ b/guides/source/active_storage_overview.md @@ -68,7 +68,7 @@ Tell Active Storage which service to use by setting likely use a different service, it is recommended to do this on a per-environment basis. To use the disk service from the previous example in the development environment, you would add the following to -config/environments/development.rb: +`config/environments/development.rb`: ```ruby # Store files locally. @@ -108,7 +108,7 @@ s3: region: "" bucket: "" ``` -Also, add the S3 client gem to your Gemfile: +Also, add the S3 client gem to your `Gemfile`: ``` ruby gem "aws-sdk-s3", require: false @@ -127,7 +127,7 @@ azure: container: "" ``` -Also, add the Microsoft Azure Storage client gem to your Gemfile: +Also, add the Microsoft Azure Storage client gem to your `Gemfile`: ``` ruby gem "azure-storage", require: false @@ -156,7 +156,7 @@ google: bucket: "" ``` -Also, add the Google Cloud Storage client gem to your Gemfile: +Also, add the Google Cloud Storage client gem to your `Gemfile`: ``` ruby gem "google-cloud-storage", "~> 1.3", require: false @@ -326,7 +326,7 @@ To create variation of the image, call `variant` on the Blob. You can pass any [MiniMagick](https://github.com/minimagick/minimagick) supported transformation to the method. -To enable variants, add `mini_magick` to your Gemfile: +To enable variants, add `mini_magick` to your `Gemfile`: ``` ruby gem 'mini_magick' |