module ActiveRecord::FinderMethods
def find_nth(ordinal, offset)
def find_nth(ordinal, offset) if loaded? @records.send(ordinal) else @offsets[offset] ||= find_nth_with_limit(offset, 1).first end end
def find_nth(ordinal, offset) if loaded? @records.send(ordinal) else @offsets[offset] ||= find_nth_with_limit(offset, 1).first end end