topiary 1.0.0 → 1.0.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 +4 -4
- data/.gitignore +1 -0
- data/lib/topiary/version.rb +1 -1
- data/topiary.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 82b31d65a0f155fea35a6833827231bf1cb44590868dc899c48f8cc6cb4269b4
|
|
4
|
+
data.tar.gz: 393604497cd80ee452944ea713443b5383f2c2a0f0e5b15670ce8abf772c1122
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 51b08cb216071990f53983c7e11142cdee3d56f6fdd428e04ffb4ec189c16bb20c10be42735ede5ed8839195458e2ac153d8431dd130249ecf9212c70dbae830
|
|
7
|
+
data.tar.gz: 463079d8eb9791576e4e2c7c3d09e879eac0d82143f61f135e11e28a303749b7ca5c51b56ae5ee552cfc1d1aca6b0b98c184a1e23fc714f59fa5a01b5974fc21
|
data/.gitignore
CHANGED
data/lib/topiary/version.rb
CHANGED
data/topiary.gemspec
CHANGED
|
@@ -6,8 +6,8 @@ Gem::Specification.new do |s|
|
|
|
6
6
|
s.name = "topiary"
|
|
7
7
|
s.version = Topiary::VERSION
|
|
8
8
|
|
|
9
|
-
s.summary = "
|
|
10
|
-
s.description = "
|
|
9
|
+
s.summary = "Topologically sorts a Directed Acyclic Graph."
|
|
10
|
+
s.description = "Topologically sorts a Directed Acyclic Graph using Kahn's Algorithm. Lets you include some custom data on each node."
|
|
11
11
|
|
|
12
12
|
s.authors = ["Paul A. Jungwirth"]
|
|
13
13
|
s.homepage = "https://github.com/pjungwir/topiary"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: topiary
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paul A. Jungwirth
|
|
@@ -80,8 +80,8 @@ dependencies:
|
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
|
-
description:
|
|
84
|
-
include some custom data on each node.
|
|
83
|
+
description: Topologically sorts a Directed Acyclic Graph using Kahn's Algorithm.
|
|
84
|
+
Lets you include some custom data on each node.
|
|
85
85
|
email: pj@illuminatedcomputing.com
|
|
86
86
|
executables: []
|
|
87
87
|
extensions: []
|
|
@@ -127,5 +127,5 @@ rubyforge_project:
|
|
|
127
127
|
rubygems_version: 2.7.6
|
|
128
128
|
signing_key:
|
|
129
129
|
specification_version: 4
|
|
130
|
-
summary:
|
|
130
|
+
summary: Topologically sorts a Directed Acyclic Graph.
|
|
131
131
|
test_files: []
|