diff options
author | Andrew White <pixeltrix@users.noreply.github.com> | 2016-03-29 17:48:25 +0100 |
---|---|---|
committer | Andrew White <pixeltrix@users.noreply.github.com> | 2016-03-29 17:48:25 +0100 |
commit | cd736dbfa4c81166797a55d4877aac92e45327f8 (patch) | |
tree | 2d9ffc12e6931f0aee72fb047d4cd4b06a67ebb7 /activerecord/lib/active_record | |
parent | f734dd1111b09deb4f1b20629d753f75f04ca17a (diff) | |
parent | 78ea4c598547c46cdfcf71aa484782ac903a3040 (diff) | |
download | rails-cd736dbfa4c81166797a55d4877aac92e45327f8.tar.gz rails-cd736dbfa4c81166797a55d4877aac92e45327f8.tar.bz2 rails-cd736dbfa4c81166797a55d4877aac92e45327f8.zip |
Merge pull request #24315 from kenta-s/add_empty_to_finder_methods
Delegate some additional methods in querying.rb
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/querying.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/querying.rb b/activerecord/lib/active_record/querying.rb index de5b42e987..4e32d73001 100644 --- a/activerecord/lib/active_record/querying.rb +++ b/activerecord/lib/active_record/querying.rb @@ -1,6 +1,6 @@ module ActiveRecord module Querying - delegate :find, :take, :take!, :first, :first!, :last, :last!, :exists?, :any?, :many?, to: :all + delegate :find, :take, :take!, :first, :first!, :last, :last!, :exists?, :any?, :many?, :empty?, :none?, :one?, to: :all delegate :second, :second!, :third, :third!, :fourth, :fourth!, :fifth, :fifth!, :forty_two, :forty_two!, :third_to_last, :third_to_last!, :second_to_last, :second_to_last!, to: :all delegate :first_or_create, :first_or_create!, :first_or_initialize, to: :all delegate :find_or_create_by, :find_or_create_by!, :find_or_initialize_by, to: :all |