aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorYauheni Dakuka <yauheni.dakuka@gmail.com>2017-12-15 10:33:38 +0300
committerYauheni Dakuka <yauheni.dakuka@gmail.com>2017-12-15 10:33:38 +0300
commit83e10bd068d71551b3a68054ab7df3c44b75c729 (patch)
treee58988237f802bafbdf83533b4b5858b15cfd779 /guides
parent6a902d43c76a8b5bc2ddd00b7c8af38f9fb82bdb (diff)
downloadrails-83e10bd068d71551b3a68054ab7df3c44b75c729.tar.gz
rails-83e10bd068d71551b3a68054ab7df3c44b75c729.tar.bz2
rails-83e10bd068d71551b3a68054ab7df3c44b75c729.zip
Fix in ASt guide [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/active_storage_overview.md10
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'