mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Enable links in Active Storage docs [ci skip]
This commit is contained in:
parent
14c1a9c5e3
commit
0196ac6654
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
# Encapsulates a string representing a filename to provide convenience access to parts of it and a sanitized version.
|
# 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
|
class ActiveStorage::Filename
|
||||||
include Comparable
|
include Comparable
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
require "active_support/core_ext/object/inclusion"
|
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
|
# 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
|
# 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:
|
# the key is the command and the value is the arguments. Example:
|
||||||
|
|
Loading…
Reference in a new issue