zadt 1.1.5 → 1.1.6
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/lib/zadt/version.rb +1 -1
- data/zadt.gemspec +4 -7
- 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: 2fb66e20eaf74c1edfed6ec4fdd63b2b2fed696b
|
|
4
|
+
data.tar.gz: 9748dcbb6748474051163e7d7c9fd6912cf59ef4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 20abbb47caacd3e9aba4ee3fc03c566778b957292f551e59b72b812fc3e97df6871f67fa909a0042853486b682670345f38443e72744335adfd64029ba7200d1
|
|
7
|
+
data.tar.gz: b851a1092dcd9ef1d2841407011e36c1f5fe084684e90778898fb8f32abe8510eafff48ad1d37ab1b80229a210a71850491f5b0554af64aa153d9c29c70616ab
|
data/lib/zadt/version.rb
CHANGED
data/zadt.gemspec
CHANGED
|
@@ -10,13 +10,10 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["benj@zagorski.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{Zagorski ADT is a collection of abstract data types that are not included in the standard Ruby library.}
|
|
13
|
-
spec.description = %q{Includes
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
Geometrics includes Universe, which currently consists of Points and Spheres (work in progress).
|
|
18
|
-
Once installed, type "Zadt::ADT::help" for a list of datatypes
|
|
19
|
-
and basic functionality. And don't forget to require 'zadt' at the top!}
|
|
13
|
+
spec.description = %q{Includes the following Abstract Data Types: StacksAndQueues, Graphs, Linked Lists, and Geometrics.
|
|
14
|
+
Please see README for full documentation.
|
|
15
|
+
Or, once installed, "Zadt::ADT::help" contains a list of data types and functionality.
|
|
16
|
+
And don't forget to require 'zadt' at the top!}
|
|
20
17
|
spec.homepage = "https://github.com/MrMicrowaveOven/zadt.git"
|
|
21
18
|
spec.license = "MIT"
|
|
22
19
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zadt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Benjamin Zagorski
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-01-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -53,13 +53,10 @@ dependencies:
|
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '3.0'
|
|
55
55
|
description: |-
|
|
56
|
-
Includes
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
Geometrics includes Universe, which currently consists of Points and Spheres (work in progress).
|
|
61
|
-
Once installed, type "Zadt::ADT::help" for a list of datatypes
|
|
62
|
-
and basic functionality. And don't forget to require 'zadt' at the top!
|
|
56
|
+
Includes the following Abstract Data Types: StacksAndQueues, Graphs, Linked Lists, and Geometrics.
|
|
57
|
+
Please see README for full documentation.
|
|
58
|
+
Or, once installed, "Zadt::ADT::help" contains a list of data types and functionality.
|
|
59
|
+
And don't forget to require 'zadt' at the top!
|
|
63
60
|
email:
|
|
64
61
|
- benj@zagorski.com
|
|
65
62
|
executables: []
|