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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 223570ed9cb1feae0d7288df7b64e1e68c452a22
4
- data.tar.gz: c862084ba3b9ac0290c64f8421f11ccc55e7c7f4
3
+ metadata.gz: aee65b83cc4f548e9015e21f6044b20ed6906e35
4
+ data.tar.gz: df842504bdec5db772cfc1ac020ab90b09873f1b
5
5
  SHA512:
6
- metadata.gz: e40da30604fddce3e0168be3d3ec7844105165769b40371c5a3e67aa0468b51e28ccbec14ebb4863c68ba3834be70a4f467fd6d4f6ecf8b5fb73b5d2192a4a72
7
- data.tar.gz: 33b03996e95641eedc52c62e27509b57b4716953a73a27c1e6c9c6613e7dadc6fc58a9dba0ee9b0774aa10008daf218c09f45dee79322d9d84022c80bb619f26
6
+ metadata.gz: 7e8f831e290514227b3b2aa3d668e7ffce928cc16aa6bb9a7f3676a90a65bea462d7acc7beff4eb4f6acc06cbd27e3ce13ff94439ca29427d2a1125850657ac6
7
+ data.tar.gz: 066ac182adc7d5e11e900b958ad674fcd0aeb5d050004042ed32c6a86f95769f45cfa58e188e88b202ff9c94ac539045d29461c4e7fd9f14cfb4948865817d87
data/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # DagLinkCalculator
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/dag_link_calculator.svg)](https://badge.fury.io/rb/dag_link_calculator)
3
4
  [![Build Status](https://travis-ci.org/artirix/dag_link_calculator.svg?branch=master)](https://travis-ci.org/artirix/dag_link_calculator)
4
5
  [![Coverage Status](https://coveralls.io/repos/github/artirix/dag_link_calculator/badge.svg?branch=master)](https://coveralls.io/github/artirix/dag_link_calculator?branch=master)
5
6
  [![Code Climate](https://codeclimate.com/github/artirix/dag_link_calculator/badges/gpa.svg)](https://codeclimate.com/github/artirix/dag_link_calculator)
@@ -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
@@ -1,3 +1,3 @@
1
1
  module DagLinkCalculator
2
- VERSION = "0.1.0"
2
+ VERSION = '1.0.0'
3
3
  end
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: 0.1.0
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: " G i v e n a l i s t o f p a r e n t - c h i l d r e l a t i o
70
- n s h i p s , i t w i l l r e t u r n a l i s t o f l i n k s a n c e s
71
- t o r - d e s c e n d a n t , w i t h c o u n t . C a n b e u s e d t o r
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: G i v e n a l i s t o f p a r e n t - c h i l d r e l a t i o n s h
131
- i p s , i t w i l l r e t u r n a l i s t o f l i n k s a n c e s t o r
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: []