diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-05-17 20:34:06 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-17 20:34:06 +0900 |
commit | e77c516a13c997b9518c463c5cb5f6af9851d9e5 (patch) | |
tree | 9b159669f14ef9eb5e8c19a4e8e49a0fd0ae742e /activestorage/app/models/active_storage | |
parent | a1f9fe8bdd4e6c4e20fbda424c0ecf2f31fabd30 (diff) | |
parent | 8cc79f502e4b5e3f4fcdcf9af2a5caf047312fb9 (diff) | |
download | rails-e77c516a13c997b9518c463c5cb5f6af9851d9e5.tar.gz rails-e77c516a13c997b9518c463c5cb5f6af9851d9e5.tar.bz2 rails-e77c516a13c997b9518c463c5cb5f6af9851d9e5.zip |
Merge pull request #32916 from lucfranken/patch-1
Active storage: Image variant options not correct in docs
[ci skip]
Diffstat (limited to 'activestorage/app/models/active_storage')
-rw-r--r-- | activestorage/app/models/active_storage/variant.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activestorage/app/models/active_storage/variant.rb b/activestorage/app/models/active_storage/variant.rb index 2a7006553c..1df36e37d9 100644 --- a/activestorage/app/models/active_storage/variant.rb +++ b/activestorage/app/models/active_storage/variant.rb @@ -42,7 +42,7 @@ # You can combine any number of ImageMagick/libvips operations into a variant, as well as any macros provided by the # ImageProcessing gem (such as +resize_to_fit+): # -# avatar.variant(resize_to_fit: [800, 800], monochrome: true, flip: "-90") +# avatar.variant(resize_to_fit: [800, 800], monochrome: true, rotate: "-90") # # Visit the following links for a list of available ImageProcessing commands and ImageMagick/libvips operations: # |