Skip to content

Commit 6f6a04f

Browse files
authored
Merge pull request rails#48009 from p8/docs/headers-active-record
Add some missing headers to Active Record docs [ci-skip]
2 parents 932d2ae + 7723795 commit 6f6a04f

30 files changed

+51
-0
lines changed

activerecord/lib/active_record/associations/collection_proxy.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
module ActiveRecord
44
module Associations
5+
# = Active Record Collection Proxy
6+
#
57
# Collection proxies in Active Record are middlemen between an
68
# <tt>association</tt>, and its <tt>target</tt> result set.
79
#

activerecord/lib/active_record/associations/has_many_association.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
module ActiveRecord
44
module Associations
55
# = Active Record Has Many Association
6+
#
67
# This is the proxy that handles a has many association.
78
#
89
# If the association has a <tt>:through</tt> option further specialization

activerecord/lib/active_record/associations/preloader.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
module ActiveRecord
66
module Associations
7+
# = Active Record \Preloader
8+
#
79
# Implements the details of eager loading of Active Record associations.
810
#
911
# Suppose that you have the following two Active Record models:

activerecord/lib/active_record/attribute_methods/dirty.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
module ActiveRecord
66
module AttributeMethods
7+
# = Active Record Attribute Methods \Dirty
78
module Dirty
89
extend ActiveSupport::Concern
910

activerecord/lib/active_record/attribute_methods/primary_key.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
module ActiveRecord
66
module AttributeMethods
7+
# = Active Record Attribute Methods Primary Key
78
module PrimaryKey
89
extend ActiveSupport::Concern
910

activerecord/lib/active_record/attribute_methods/query.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module ActiveRecord
44
module AttributeMethods
5+
# = Active Record Attribute Methods \Query
56
module Query
67
extend ActiveSupport::Concern
78

activerecord/lib/active_record/attribute_methods/read.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module ActiveRecord
44
module AttributeMethods
5+
# = Active Record Attribute Methods \Read
56
module Read
67
extend ActiveSupport::Concern
78

activerecord/lib/active_record/attribute_methods/serialization.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module ActiveRecord
44
module AttributeMethods
5+
# = Active Record Attribute Methods \Serialization
56
module Serialization
67
extend ActiveSupport::Concern
78

activerecord/lib/active_record/attribute_methods/write.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
module ActiveRecord
44
module AttributeMethods
5+
# = Active Record Attribute Methods \Write
56
module Write
67
extend ActiveSupport::Concern
78

activerecord/lib/active_record/connection_adapters/abstract/connection_handler.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
module ActiveRecord
77
module ConnectionAdapters
8+
# = Active Record Connection Adapters Connection Handler
9+
#
810
# ConnectionHandler is a collection of ConnectionPool objects. It is used
911
# for keeping separate connection pools that connect to different databases.
1012
#

0 commit comments

Comments
 (0)