3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# File 'lib/closure_tree/has_closure_tree.rb', line 3
def has_closure_tree(options = {})
options.assert_valid_keys(
:parent_column_name,
:dependent,
:hierarchy_class_name,
:hierarchy_table_name,
:name_column,
:order,
:touch,
:with_advisory_lock
)
class_attribute :_ct
self._ct = ClosureTree::Support.new(self, options)
class_attribute :hierarchy_class
self.hierarchy_class = _ct.hierarchy_class_for_model
include ClosureTree::HierarchyMaintenance
include ClosureTree::Model
include ClosureTree::Finders
include ClosureTree::HashTree
include ClosureTree::Digraphs
include ClosureTree::DeterministicOrdering if _ct.order_option?
include ClosureTree::NumericDeterministicOrdering if _ct.order_is_numeric?
rescue StandardError => e
raise e unless ClosureTree.configuration.database_less
end
|