This method is deprecated or moved on the latest stable version.
The last existing version (v1.2.6) is shown here.
remove_from_list()
public
Removes the item from the list.
# File activerecord/lib/active_record/acts/list.rb, line 124
def remove_from_list
if in_list?
decrement_positions_on_lower_items
update_attribute position_column, nil
end
end