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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5f468a68d5866179f012c34af264fbaae48a26f7d342073f91a748ba9c2f0501
4
- data.tar.gz: 8ac19a37751a99c69682c978d67eea2bd8c7251b8bc9785be12ee1b49dd26222
3
+ metadata.gz: 82b31d65a0f155fea35a6833827231bf1cb44590868dc899c48f8cc6cb4269b4
4
+ data.tar.gz: 393604497cd80ee452944ea713443b5383f2c2a0f0e5b15670ce8abf772c1122
5
5
  SHA512:
6
- metadata.gz: 8990579e8db6bb3e92e56d2000a4c952117c8a1dd33fc93398fa3ed507853208e9daf6339ee6f13b8d83813532d2ef7132629cd246d256b83479f22d6e06f5da
7
- data.tar.gz: 35203e65a873d24fa8a70b1666c493b38a302f1c4202847a29f1b0e970104c03f10ce8aadcb1b649f1afb69a3360028ddb24e9a0d036c2b4d61cbad6d26270a1
6
+ metadata.gz: 51b08cb216071990f53983c7e11142cdee3d56f6fdd428e04ffb4ec189c16bb20c10be42735ede5ed8839195458e2ac153d8431dd130249ecf9212c70dbae830
7
+ data.tar.gz: 463079d8eb9791576e4e2c7c3d09e879eac0d82143f61f135e11e28a303749b7ca5c51b56ae5ee552cfc1d1aca6b0b98c184a1e23fc714f59fa5a01b5974fc21
data/.gitignore CHANGED
@@ -6,3 +6,4 @@
6
6
  /tmp
7
7
  /README.html
8
8
  /coverage
9
+ /Gemfile.lock
@@ -1,3 +1,3 @@
1
1
  module Topiary
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.1'.freeze
3
3
  end
@@ -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 = "Get a topological sort of a Directed Acyclic Graph"
10
- s.description = "Uses Kahn's Algorithm to put all the nodes into a linear list. Lets you include some custom data on each node."
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.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: Uses Kahn's Algorithm to put all the nodes into a linear list. Lets you
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: Get a topological sort of a Directed Acyclic Graph
130
+ summary: Topologically sorts a Directed Acyclic Graph.
131
131
  test_files: []