diff options
author | Yoshiyuki Hirano <yhirano@me.com> | 2017-08-26 05:47:26 +0900 |
---|---|---|
committer | Yoshiyuki Hirano <yhirano@me.com> | 2017-08-26 05:47:26 +0900 |
commit | 0196ac6654ce68d9b50695b09987ab4d8af750e3 (patch) | |
tree | bbffd93311b3002c01b076ee08ab3ca6d85635ac /activestorage | |
parent | 14c1a9c5e3471decee9ad09b91024a4293f1b2c2 (diff) | |
download | rails-0196ac6654ce68d9b50695b09987ab4d8af750e3.tar.gz rails-0196ac6654ce68d9b50695b09987ab4d8af750e3.tar.bz2 rails-0196ac6654ce68d9b50695b09987ab4d8af750e3.zip |
Enable links in Active Storage docs [ci skip]
Diffstat (limited to 'activestorage')
-rw-r--r-- | activestorage/app/models/active_storage/filename.rb | 2 | ||||
-rw-r--r-- | activestorage/app/models/active_storage/variation.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/activestorage/app/models/active_storage/filename.rb b/activestorage/app/models/active_storage/filename.rb index c2ad5c844c..10b1116d52 100644 --- a/activestorage/app/models/active_storage/filename.rb +++ b/activestorage/app/models/active_storage/filename.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true # Encapsulates a string representing a filename to provide convenience access to parts of it and a sanitized version. -# This is what's returned by `ActiveStorage::Blob#filename`. A Filename instance is comparable so it can be used for sorting. +# This is what's returned by ActiveStorage::Blob#filename. A Filename instance is comparable so it can be used for sorting. class ActiveStorage::Filename include Comparable diff --git a/activestorage/app/models/active_storage/variation.rb b/activestorage/app/models/active_storage/variation.rb index f657d90db4..bf269e2a8f 100644 --- a/activestorage/app/models/active_storage/variation.rb +++ b/activestorage/app/models/active_storage/variation.rb @@ -3,7 +3,7 @@ require "active_support/core_ext/object/inclusion" # A set of transformations that can be applied to a blob to create a variant. This class is exposed via -# the `ActiveStorage::Blob#variant` method and should rarely be used directly. +# the ActiveStorage::Blob#variant method and should rarely be used directly. # # In case you do need to use this directly, it's instantiated using a hash of transformations where # the key is the command and the value is the arguments. Example: |