canvas-lms/gems/acts_as_list
Cody Cutrer d6e044ff76 add # frozen_string_literal: true for embedded gems
Change-Id: Ib49bc8939cf1706e758429e531a87c57d0231a37
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/251156
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Reviewed-by: Simon Williams <simon@instructure.com>
QA-Review: Simon Williams <simon@instructure.com>
Product-Review: Simon Williams <simon@instructure.com>
2020-10-28 22:08:40 +00:00
..
lib add # frozen_string_literal: true for embedded gems 2020-10-28 22:08:40 +00:00
spec add # frozen_string_literal: true for embedded gems 2020-10-28 22:08:40 +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 spec: fixes for ruby 2.6 2020-03-09 15:57:06 +00:00
test.sh spec: use rspec to run acts_as_list tests 2019-09-05 15:17:33 +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