fertile_forest 1.1.0 → 1.1.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
  SHA1:
3
- metadata.gz: fc9b8f30c16e4ad778708dc87db3da5b24425ad5
4
- data.tar.gz: 84f89968f7d3eaa000e664a7307c808c3b62ed42
3
+ metadata.gz: aeedf9262be5d3ed03c75569600ec77362ac50ab
4
+ data.tar.gz: c03cb41aad81c3a4753bb115018b972a3aa46b09
5
5
  SHA512:
6
- metadata.gz: c866ba297d69444e4a3a94f3e9fa94d0e2a88ec77a121b82ddcef0ecb2a7511d296749316f8b2a8f8e0538d37f1478bee0e8e82f5a115abb42e8b8c77be4391c
7
- data.tar.gz: 42f61d1ac7b4a923732b7dc929bfba9dbd0839112a9d4df3847b58bac409dd43dafb32bb513861489f6b7ea27b7f30b1ba441f56020381a4dc157118f02675a4
6
+ metadata.gz: a1162dc128d8cf90254d7bd4a5f296e24f040d75a1f074cf7def68f95ba2743002e7ec891eaaee9249364052e6a60488b1068c5735854c37df78647c93c6ae4d
7
+ data.tar.gz: 1f3309e6c442cf50dcfcc43a50e0997567c4578d11e81794198fa4264bbf0af2dd912939e98a7d519b056d8cd4b752178c539c6085ef57b43dedcd4e2f505a07
@@ -188,10 +188,30 @@ module StewEucen
188
188
  self.class.grandchildren(self, columns)
189
189
  end
190
190
 
191
+ def kinships(
192
+ next_branch = KINSHIPS_AS_SIBLING,
193
+ level_offset = KINSHIPS_SAME_LEVEL,
194
+ columns = nil
195
+ )
196
+ self.class.kinships(self, next_branch, level_offset, columns)
197
+ end
198
+
191
199
  def siblings(columns = nil)
192
200
  self.class.siblings(self, columns)
193
201
  end
194
202
 
203
+ def cousins(columns = nil)
204
+ self.class.cousins(self, columns)
205
+ end
206
+
207
+ def niblings(columns = nil)
208
+ self.class.niblings(self, columns)
209
+ end
210
+
211
+ def piblings(columns = nil)
212
+ self.class.piblings(self, columns)
213
+ end
214
+
195
215
  def nth_sibling(nth = 0, columns = nil)
196
216
  self.class.nth_sibling(self, nth, columns)
197
217
  end
@@ -1,3 +1,3 @@
1
1
  module FertileForest
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fertile_forest
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stew Eucen