Module ActsAsHavingBoxes::ClassMethods
In: lib/acts_as_having_boxes.rb

Methods

Public Instance methods

[Source]

   # File lib/acts_as_having_boxes.rb, line 4
4:     def  acts_as_having_boxes
5:       has_many :boxes, :as => :owner, :dependent => :destroy, :order => 'position'
6:       self.send(:include, ActsAsHavingBoxes)
7:     end

[Validate]