aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/scoping.rb
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-10-14 09:44:09 +0200
committerYves Senn <yves.senn@gmail.com>2015-10-14 09:45:56 +0200
commit215e128ddc12c98e8b6f43eca27bff0bb115461b (patch)
tree5b0df882552b99afa202db396877b98af89daf81 /activerecord/lib/active_record/scoping.rb
parent7776bde55acf53a623e6c772c57e3bb662a196bd (diff)
downloadrails-215e128ddc12c98e8b6f43eca27bff0bb115461b.tar.gz
rails-215e128ddc12c98e8b6f43eca27bff0bb115461b.tar.bz2
rails-215e128ddc12c98e8b6f43eca27bff0bb115461b.zip
add missing :nodoc: to `ActiveRecord::Scoping`. [ci skip]
Diffstat (limited to 'activerecord/lib/active_record/scoping.rb')
-rw-r--r--activerecord/lib/active_record/scoping.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/scoping.rb b/activerecord/lib/active_record/scoping.rb
index f049b658c4..184c5063d9 100644
--- a/activerecord/lib/active_record/scoping.rb
+++ b/activerecord/lib/active_record/scoping.rb
@@ -30,7 +30,7 @@ module ActiveRecord
end
end
- def populate_with_current_scope_attributes
+ def populate_with_current_scope_attributes # :nodoc:
return unless self.class.scope_attributes?
self.class.scope_attributes.each do |att,value|
@@ -38,7 +38,7 @@ module ActiveRecord
end
end
- def initialize_internals_callback
+ def initialize_internals_callback # :nodoc:
super
populate_with_current_scope_attributes
end