File tree Expand file tree Collapse file tree 4 files changed +7
-11
lines changed
actiontext/lib/action_text
activerecord/lib/active_record
app/models/active_storage Expand file tree Collapse file tree 4 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,7 @@ module ActionText
4
4
# Fixtures are a way of organizing data that you want to test against; in
5
5
# short, sample data.
6
6
#
7
- # To learn more about fixtures, read the
8
- # {ActiveRecord::FixtureSet}[rdoc-ref:ActiveRecord::FixtureSet] documentation.
7
+ # To learn more about fixtures, read the ActiveRecord::FixtureSet documentation.
9
8
#
10
9
# === YAML
11
10
#
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ module Transactions
99
99
# be propagated (after triggering the ROLLBACK), so you should be ready to
100
100
# catch those in your application code.
101
101
#
102
- # One exception is the { ActiveRecord::Rollback}[rdoc-ref:Rollback] exception, which will trigger
102
+ # One exception is the ActiveRecord::Rollback exception, which will trigger
103
103
# a ROLLBACK when raised, but not be re-raised by the transaction block. Any
104
104
# other exception will be re-raised.
105
105
#
Original file line number Diff line number Diff line change 6
6
# but it is possible to associate many different records with the same blob. A foreign-key constraint
7
7
# on the attachments table prevents blobs from being purged if they’re still attached to any records.
8
8
#
9
- # Attachments also have access to all methods from { ActiveStorage::Blob}[rdoc-ref:ActiveStorage::Blob] .
9
+ # Attachments also have access to all methods from ActiveStorage::Blob.
10
10
#
11
11
# If you wish to preload attachments or blobs, you can use these scopes:
12
12
#
Original file line number Diff line number Diff line change @@ -7,16 +7,13 @@ module ActiveStorage
7
7
# Fixtures are a way of organizing data that you want to test against; in
8
8
# short, sample data.
9
9
#
10
- # To learn more about fixtures, read the
11
- # {ActiveRecord::FixtureSet}[rdoc-ref:ActiveRecord::FixtureSet] documentation.
10
+ # To learn more about fixtures, read the ActiveRecord::FixtureSet documentation.
12
11
#
13
12
# === YAML
14
13
#
15
- # Like other Active Record-backed models,
16
- # {ActiveStorage::Attachment}[rdoc-ref:ActiveStorage::Attachment] and
17
- # {ActiveStorage::Blob}[rdoc-ref:ActiveStorage::Blob] records inherit from
18
- # {ActiveRecord::Base}[rdoc-ref:ActiveRecord::Base] instances and therefore
19
- # can be populated by fixtures.
14
+ # Like other Active Record-backed models, ActiveStorage::Attachment and
15
+ # ActiveStorage::Blob records inherit from ActiveRecord::Base instances and
16
+ # therefore can be populated by fixtures.
20
17
#
21
18
# Consider a hypothetical <tt>Article</tt> model class, its related
22
19
# fixture data, as well as fixture data for related ActiveStorage::Attachment
You can’t perform that action at this time.
0 commit comments