modular_tree 0.14.0 → 0.14.1

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: 7d23a4572f944f931e8aaa2c3cfd9ae8b1f6390dd0f544d323fa843c8a0af5bf
4
- data.tar.gz: 82bba4b625cf35b0a0e3ae64ce9580c6cf210f8b4505e00809db10e21eaad465
3
+ metadata.gz: 3cc95c80ae30705572e57ca0fa6474a0c110e1a58c16425beaa7bffd4fba63b2
4
+ data.tar.gz: 3ca2f7cf282b15630bbcce94d1f9aaa5c95f2bb6d61fe1c14ff8bfd459cc002a
5
5
  SHA512:
6
- metadata.gz: a2c20a27dec745e60a543df2364c23503f2a07d4fbffe4a35f396a929b424b3211362dbffd5c7da5bd7e9672320e703d8eb65d12bb12265fe978f4a05f838bb6
7
- data.tar.gz: 0702eae6a45e5c4cc3ca730f5bc55ac8afaba789fbdc4414979184531e90c079027cd0b2fc47521bf54a48c963f95a4927b0446447126b7f3de8cd31ca823585
6
+ metadata.gz: 7e8bf255d379d9b9dd92062de11625602f1462f300187c71042528217cd189b4beb007da047d28c2515ae52dbaaa54e84a02edbde425f5f218439a5ecb317692
7
+ data.tar.gz: 03b60dcc1a77c055ac9456f7c091475ce10a3aece62a1b2adcc09787773676bbf898ff6ec7164bac8c3db3ca9d2be7e6b9456b800e0ea3e66005b17bfe1641e7
@@ -4,8 +4,11 @@ module Tree
4
4
  # Pool adds a @pool class variable to the including class and all of its
5
5
  # subclasses
6
6
  #
7
+ # TODO: Make a separate gem. Then extend with with a lookup method and
8
+ # optionally an specialized #dot method
9
+ #
7
10
  module Pool
8
- include PathAlgorithms
11
+ # include PathAlgorithms
9
12
 
10
13
  def self.included(other)
11
14
  other.extend(ClassMethods)
@@ -15,7 +18,7 @@ module Tree
15
18
 
16
19
  def initialize(*args)
17
20
  super
18
- !self.class.uid?(self.uid) or raise TreeError, "Duplicate UID: #{self.uid}"
21
+ !self.class.uid?(self.uid) or raise TreeError, "Duplicate UID: #{self.uid.inspect}"
19
22
  self.class.send(:[]=, self.uid, self)
20
23
  end
21
24
 
@@ -25,7 +28,7 @@ module Tree
25
28
  def nodes = @pool.values
26
29
  def size = @pool.size
27
30
  def empty? = @pool.empty?
28
- def empty! = @pool = {} # Useful in tests where a tree is created multiple times
31
+ def empty! = @pool.clear # Useful in tests where a tree is created multiple times
29
32
  def [](uid) = @pool[uid]
30
33
  def []=(uid, node) @pool[uid] = node end
31
34
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tree
4
- VERSION = "0.14.0"
4
+ VERSION = "0.14.1"
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.14.0
4
+ version: 0.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Claus Rasmussen