modular_tree 0.9.0 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08649719e3acd43aaaba027428bce680e0e376a5d11192357b5fb8078795a704'
4
- data.tar.gz: '08cb0635c2ec27a4f29390bdecddbe1484f5d48dc1f180faf6b07d7122802ac1'
3
+ metadata.gz: ae3499e0ea36c7f7dd44068616ec8dd566e43be82c0e728dae86da829b085d7f
4
+ data.tar.gz: f1c35152a0b97dad0b50e85cf2061baf9bad2fed42ca4bc2bb8df3b000b81468
5
5
  SHA512:
6
- metadata.gz: d2766c613470299bebff94a45aad0b386221e7a1eb159833f5d13f7c4015949687cede5cc71ed08b190f3fc7b0d24677e3e01d8ebc78f950c8fed4fadc1b7500
7
- data.tar.gz: fec9a23e683d539ba8a92510aaf4c0f0ae3c1fb64cfcac05a91f254ae49c937969a5eb83e042f5f5b4faf592b9781b24b83bffd4991ded8653f7fc8d47e34a53
6
+ metadata.gz: 71c8a99e260fe03d2453371b0afe9bc79c22234fe74a79ddf61036affd1a3129c84597006c9b5648831f1b3f469f79f26f73fd1c6263c277cee3bcea91905480
7
+ data.tar.gz: cb5feecaf6a795c91011fbafca901bb1fea9814e9b1283407b623052d9b33b801d1935d9e5594115154384ab2f49763dd5bd672dba1a3b490d800b4a9129bf3b
@@ -10,14 +10,14 @@ module Tree
10
10
  include BranchesProperty
11
11
 
12
12
  # Bottom-up
13
- def ancestors
13
+ def ancestors # TODO: rename #parents
14
14
  curr = self
15
15
  a = []
16
16
  a.push curr.node while curr = curr.branch
17
17
  a
18
18
  end
19
19
 
20
- # Top-down
20
+ # Top-down # TODO: rename #ancestors
21
21
  def ancestry
22
22
  curr = self
23
23
  a = []
@@ -306,6 +306,18 @@ module Tree
306
306
 
307
307
  def path = @path ||= ancestry[1..-1]&.map(&:key)&.join(separator) || ""
308
308
  def uid() @uid ||= [parent&.uid, key].compact.join(separator) end
309
+
310
+ def search(*args, this: true, &block)
311
+ matcher = Matcher.new(*args, &block)
312
+ curr = this ? self : branch
313
+ while curr
314
+ return curr if matcher.match?(curr)
315
+ curr = curr.branch
316
+ end
317
+ end
318
+
319
+ # TODO
320
+ def lookup(key) = raise NotImplementedError
309
321
  end
310
322
 
311
323
  module DotAlgorithms
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tree
4
- VERSION = "0.9.0"
4
+ VERSION = "0.10.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: modular_tree
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Claus Rasmussen