This method is deprecated or moved on the latest stable version. The last existing version (v1.2.6) is shown here.
first?()
Return true if this object is the first in the list.
# File activerecord/lib/active_record/acts/list.rb, line 144 def first? return false unless in_list? self.send(position_column) == 1 end