Method: ActsAsList::InstanceMethods#insert_at

Defined in:
lib/acts_as_list.rb

#insert_at(position = 1) ⇒ Object

Insert the item at the given position (defaults to the top position of 1).



76
77
78
# File 'lib/acts_as_list.rb', line 76

def insert_at(position = 1)
  insert_at_position(position)
end