aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_querying.md
diff options
context:
space:
mode:
authorbogdanvlviv <bogdanvlviv@gmail.com>2018-08-19 19:24:32 +0300
committerbogdanvlviv <bogdanvlviv@gmail.com>2018-08-19 19:29:41 +0300
commitb91dc579286415699a842c3d0a136dba541815b8 (patch)
tree9ddd9d08f41f26ab8f1682d371523a7ad7bf57a8 /guides/source/active_record_querying.md
parent97feb4996b1c88f770101dfce6d4d3a6baf6bb33 (diff)
downloadrails-b91dc579286415699a842c3d0a136dba541815b8.tar.gz
rails-b91dc579286415699a842c3d0a136dba541815b8.tar.bz2
rails-b91dc579286415699a842c3d0a136dba541815b8.zip
DRY in Active Record Query Interface [ci skip]
The sentence "This is exactly the same as defining a class method ..." is not true, so #33653 fixed it, but added changes repeat what is explained a few lines below. We can remove this part since a user is able to get info about the difference between scopes and class methods below. Context https://github.com/rails/rails/pull/33653#discussion_r211105969. Reverts #33653, 97feb4996b1c88f770101dfce6d4d3a6baf6bb33.
Diffstat (limited to 'guides/source/active_record_querying.md')
-rw-r--r--guides/source/active_record_querying.md16
1 files changed, 0 insertions, 16 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md
index f5a37214de..91cc175095 100644
--- a/guides/source/active_record_querying.md
+++ b/guides/source/active_record_querying.md
@@ -1277,22 +1277,6 @@ class Article < ApplicationRecord
end
```
-This is almost the same as defining a class method, except for that scopes always return an `ActiveRecord::Relation` object.
-
-```ruby
-class Article < ApplicationRecord
- scope :by_user, ->(user) { where(user: user) if user }
- def self.published_since(date)
- where('published_at > ?', date) if date
- end
-end
-
-Article.by_user(nil)
-# => #<ActiveRecord::Relation []>
-Article.published_since(nil)
-# => nil
-```
-
Scopes are also chainable within scopes:
```ruby