canvas-lms/gems/acts_as_list
James Williams b1f3daf044 rails 4.2: misc spec fixes
refs #CNVS-26056

Change-Id: Ia94ee2fcfded1ec66cb77a19085b005c81304800
Reviewed-on: https://gerrit.instructure.com/70251
Reviewed-by: Cody Cutrer <cody@instructure.com>
Tested-by: Jenkins
Product-Review: James Williams  <jamesw@instructure.com>
QA-Review: James Williams  <jamesw@instructure.com>
2016-01-18 21:45:39 +00:00
..
lib rails 4.2: misc spec fixes 2016-01-18 21:45:39 +00:00
test rails4: deprecate Relation#all in favor of Relation#to_a 2015-07-24 21:28:14 +00:00
Gemfile remove rails 3 support 2015-12-23 21:36:43 +00:00
README move acts_as_list to gems (empty vendor/plugins) 2014-04-07 22:37:09 +00:00
acts_as_list.gemspec allow rails 4.2 on all the gems 2015-12-18 19:00:18 +00:00

README

ActsAsList
==========

This acts_as extension provides the capabilities for sorting and reordering a number of objects in a list. The class that has this specified needs to have a +position+ column defined as an integer on the mapped database table.


Example
=======

  class TodoList < ActiveRecord::Base
    has_many :todo_items, :order => "position"
  end

  class TodoItem < ActiveRecord::Base
    belongs_to :todo_list
    acts_as_list :scope => :todo_list
  end

  todo_list.first.move_to_bottom
  todo_list.last.insert_at(2)


Copyright (c) 2007 David Heinemeier Hansson, released under the MIT license