dag_link_calculator 0.1.0 → 1.0.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 +4 -4
- data/README.md +1 -0
- data/dag_link_calculator.gemspec +2 -2
- data/lib/dag_link_calculator/version.rb +1 -1
- metadata +6 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aee65b83cc4f548e9015e21f6044b20ed6906e35
|
|
4
|
+
data.tar.gz: df842504bdec5db772cfc1ac020ab90b09873f1b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e8f831e290514227b3b2aa3d668e7ffce928cc16aa6bb9a7f3676a90a65bea462d7acc7beff4eb4f6acc06cbd27e3ce13ff94439ca29427d2a1125850657ac6
|
|
7
|
+
data.tar.gz: 066ac182adc7d5e11e900b958ad674fcd0aeb5d050004042ed32c6a86f95769f45cfa58e188e88b202ff9c94ac539045d29461c4e7fd9f14cfb4948865817d87
|
data/README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# DagLinkCalculator
|
|
2
2
|
|
|
3
|
+
[](https://badge.fury.io/rb/dag_link_calculator)
|
|
3
4
|
[](https://travis-ci.org/artirix/dag_link_calculator)
|
|
4
5
|
[](https://coveralls.io/github/artirix/dag_link_calculator?branch=master)
|
|
5
6
|
[](https://codeclimate.com/github/artirix/dag_link_calculator)
|
data/dag_link_calculator.gemspec
CHANGED
|
@@ -10,10 +10,10 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ['eturino@eturino.com']
|
|
11
11
|
spec.required_ruby_version = '>= 2.1'
|
|
12
12
|
|
|
13
|
-
spec.summary = <<-TXT.gsub(/[\s]
|
|
13
|
+
spec.summary = <<-TXT.gsub(/[\s]+/, ' ')
|
|
14
14
|
Given a list of parent-child relationships, it will return a list of links ancestor-descendant, with count
|
|
15
15
|
TXT
|
|
16
|
-
spec.description = <<-TXT.gsub(/[\s]
|
|
16
|
+
spec.description = <<-TXT.gsub(/[\s]+/, ' ')
|
|
17
17
|
Given a list of parent-child relationships, it will return a list of links ancestor-descendant, with count.
|
|
18
18
|
Can be used to restore a list of links in `act-as-dag`, providing that the direct links are correct.
|
|
19
19
|
TXT
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dag_link_calculator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eduardo Turiño
|
|
@@ -66,11 +66,9 @@ dependencies:
|
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '3.0'
|
|
69
|
-
description: "
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
e s t o r e a l i s t o f l i n k s i n ` a c t - a s - d a g ` , p r o v
|
|
73
|
-
i d i n g t h a t t h e d i r e c t l i n k s a r e c o r r e c t . "
|
|
69
|
+
description: " Given a list of parent-child relationships, it will return a list of
|
|
70
|
+
links ancestor-descendant, with count. Can be used to restore a list of links in
|
|
71
|
+
`act-as-dag`, providing that the direct links are correct. "
|
|
74
72
|
email:
|
|
75
73
|
- eturino@eturino.com
|
|
76
74
|
executables: []
|
|
@@ -127,7 +125,6 @@ rubyforge_project:
|
|
|
127
125
|
rubygems_version: 2.6.11
|
|
128
126
|
signing_key:
|
|
129
127
|
specification_version: 4
|
|
130
|
-
summary:
|
|
131
|
-
|
|
132
|
-
- d e s c e n d a n t , w i t h c o u n t
|
|
128
|
+
summary: Given a list of parent-child relationships, it will return a list of links
|
|
129
|
+
ancestor-descendant, with count
|
|
133
130
|
test_files: []
|