Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. class ActiveRecord::Relation
  2. def second
  3. if loaded?
  4. @records[1]
  5. else
  6. @second ||= limit(2).to_a[1]
  7. end
  8. end
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement