canvas-lms/gems/acts_as_list
Simon Williams 9f96812875 clean up a few more gems/*/Gemfile's
Change-Id: Ida0ea87736d2d22d0019f8cb2a010aeb7b9fafc3
Reviewed-on: https://gerrit.instructure.com/180785
Tested-by: Jenkins
Reviewed-by: Cody Cutrer <cody@instructure.com>
QA-Review: Simon Williams <simon@instructure.com>
Product-Review: Simon Williams <simon@instructure.com>
2019-02-06 21:54:14 +00:00
..
lib da licença part 53 2017-05-01 21:06:11 +00:00
test da licença part 53 2017-05-01 21:06:11 +00:00
Gemfile clean up a few more gems/*/Gemfile's 2019-02-06 21:54:14 +00:00
README move acts_as_list to gems (empty vendor/plugins) 2014-04-07 22:37:09 +00:00
acts_as_list.gemspec clean up a few more gems/*/Gemfile's 2019-02-06 21:54:14 +00:00
test.sh spec: better bundlering 2017-04-07 20:56:51 +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