This method is deprecated or moved on the latest stable version. The last existing version (v3.0.9) is shown here.
last(*args)
Fetches the last one using SQL if possible.
# File activerecord/lib/active_record/associations/association_collection.rb, line 90 def last(*args) if fetch_first_or_last_using_find?(args) find(:last, *args) else load_target unless loaded? @target.last(*args) end end