canvas-lms/gems/acts_as_list
Cody Cutrer eacec0a606 bundle update factory_bot
Change-Id: I3ab74c597004c220cc2d0515546f0f584579d433
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/337908
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Reviewed-by: Jacob Burroughs <jburroughs@instructure.com>
QA-Review: Cody Cutrer <cody@instructure.com>
Product-Review: Cody Cutrer <cody@instructure.com>
Build-Review: Cody Cutrer <cody@instructure.com>
2024-01-24 16:18:47 +00:00
..
lib fix spelling: assocation -> association 2023-08-24 14:43:03 +00:00
spec rubocop: prep for updating rubocop-rspec 2023-04-12 19:30:10 +00:00
Gemfile RuboCop: Style/StringLiterals, Style/StringLiteralsInInterpolation 2021-11-25 14:03:06 +00:00
Gemfile.lock bundle update factory_bot 2024-01-24 16:18:47 +00:00
README move acts_as_list to gems (empty vendor/plugins) 2014-04-07 22:37:09 +00:00
acts_as_list.gemspec reduce dependencies of vendored gems 2023-08-28 15:58:30 +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