Use .many? to Determine if Collection has > 1 recs - #rails
Today I learned about many?, which is a convenience method in ActiveSupport for determining if there is more than one record present. It's similar to any?, but the key difference is many? is strictly greater than, whereas any? is greater th…