many?()
Returns true if there is more than one record.
# File activerecord/lib/active_record/relation.rb, line 294 def many? return super if block_given? limit_value ? records.many? : size > 1 end