acts_as_many_trees 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 633c463bad4d37f9c467cba4852ebcbdc10cb87b
4
- data.tar.gz: e18295cde70abd5712d5bf316584ced556d321a9
3
+ metadata.gz: 1c3bfefc3282fed57798445fa23373f998a246c1
4
+ data.tar.gz: 4e7b8ad53c46b55f2420b9f2707219beb576ed21
5
5
  SHA512:
6
- metadata.gz: 2319dc68f438895276c0d6072df2ec3cd56c79376958e3f338c97590a960a2241a6c455ae52b18c742eeed84a63a3fdf15115c2ff342dc0e1226f94e296c1aef
7
- data.tar.gz: b3dd7f7a3720dcf927927d51d071a425017fc4276559cb5fb6a1f764e01fcbad7bc42305260e8545dcbd8e4575df890542624f47de3146436de03f587505d3b4
6
+ metadata.gz: 62d7bdf039c5f403736e468115dc81c3f442203e76933c589d8f00eb0881b3cc8b7b1f0d2bea14b9177879e1b25cd549d82f9a855823eefa98fd173befe94fc3
7
+ data.tar.gz: 47540542e382c7afcf35a0229e71170000d79a5b9c595246c474931a8708af0b60e2a9fa4f9d69d63ef0104b9d008915abb42bb75d0b71c1ee0dca683baedfad
@@ -30,14 +30,14 @@ module ActsAsManyTrees
30
30
  extend ActiveSupport::Concern
31
31
  included do
32
32
  has_many :unscoped_descendant_links,
33
- ->{order(:position)},
33
+ # ->{order(:position)},
34
34
  class_name: hierarchy_class.to_s,
35
35
  foreign_key: 'ancestor_id',
36
36
  dependent: :delete_all,
37
37
  inverse_of: :unscoped_ancestor
38
38
 
39
39
  has_many :unscoped_ancestor_links,
40
- ->{order(:position)},
40
+ ->{order(:position)},
41
41
  class_name: hierarchy_class.to_s,
42
42
  foreign_key: 'descendant_id',
43
43
  dependent: :delete_all,
@@ -76,6 +76,7 @@ module ActsAsManyTrees
76
76
  joins(inner_join).joins(outer_join).merge(where(Arel::Nodes::Equality.new(h2[:ancestor_id],nil)))
77
77
  }
78
78
  scope :not_this,->(this_id) { where.not(id: this_id)}
79
+ scope :ordered,->{order("#{hierarchy_table_name}.position")}
79
80
  end
80
81
  delegate :hierarchy_class, to: :class
81
82
  #can be over-ridden in the instance
@@ -92,7 +93,7 @@ module ActsAsManyTrees
92
93
  existing_tree_name = inpt_parent[:existing_tree_name] || self.default_tree_name
93
94
  else
94
95
  new_parent=inpt_parent
95
- after_node=inpt_parent.children.last unless inpt_parent.nil?
96
+ after_node=inpt_parent.children.ordered.last unless inpt_parent.nil?
96
97
  before_node=inpt_parent.next_sibling unless inpt_parent.nil?
97
98
  tree_name = inpt_parent ? inpt_parent.default_tree_name : self.default_tree_name
98
99
  existing_tree_name = self.default_tree_name
@@ -1,3 +1,3 @@
1
1
  module ActsAsManyTrees
2
- VERSION = "0.3.0"
2
+ VERSION = "0.4.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts_as_many_trees
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Small
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-20 00:00:00.000000000 Z
11
+ date: 2016-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails