last(n = nil)
Returns the last record from the rows collection.
# File activerecord/lib/active_record/result.rb, line 95 def last(n = nil) n ? hash_rows.last(n) : hash_rows.last end