many?()
Returns true if there is more than one record.
# File activerecord/lib/active_record/relation.rb, line 282 def many? if block_given? to_a.many? { |*block_args| yield(*block_args) } else limit_value ? to_a.many? : size > 1 end end