zadt 1.1.4 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/zadt/version.rb +1 -1
- data/zadt.gemspec +2 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e924172e0decaa8d18f765f4ae3afe062d5556f
|
4
|
+
data.tar.gz: 4348f8765043cee050406624369ac800de752e94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8d76b93ba1879d74fea526d35ce50658f8cab40561ef71054339f59e1cafd08b156e37ea6c58f6c537a578f9c50dcc3ebb2df0b98a97007ce38661091c899b1
|
7
|
+
data.tar.gz: ab0fb96c21f513e51b99b210e0712b39ec4d25d1a974f86b4183eeac09e95090503366f6605b93df80cf5c7aa936744afffab872cac80ab3b38c4d69a6952f1d
|
data/lib/zadt/version.rb
CHANGED
data/zadt.gemspec
CHANGED
@@ -10,9 +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
|
13
|
+
spec.description = %q{Includes four different categories of Abstract Data Types: Array-Based, Graphs, Linked Lists, and Geometrics.
|
14
14
|
Array-Based Data Types include Stack, Queue, StackQueue, MinMaxStack, and MinMaxStackQueue.
|
15
15
|
Graph Data Types include Graph, which consists of Vertices and Edges, and FaceGraph, which includes Faces.
|
16
|
+
Linked List Data Types include LinkedListNode, and DoublyLinkedListNode.
|
16
17
|
Geometrics includes Universe, which currently consists of Points and Spheres (work in progress).
|
17
18
|
Once installed, type "Zadt::ADT::help" for a list of datatypes
|
18
19
|
and basic functionality. And don't forget to require 'zadt' at the top!}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Benjamin Zagorski
|
@@ -53,9 +53,10 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.0'
|
55
55
|
description: |-
|
56
|
-
Includes
|
56
|
+
Includes four different categories of Abstract Data Types: Array-Based, Graphs, Linked Lists, and Geometrics.
|
57
57
|
Array-Based Data Types include Stack, Queue, StackQueue, MinMaxStack, and MinMaxStackQueue.
|
58
58
|
Graph Data Types include Graph, which consists of Vertices and Edges, and FaceGraph, which includes Faces.
|
59
|
+
Linked List Data Types include LinkedListNode, and DoublyLinkedListNode.
|
59
60
|
Geometrics includes Universe, which currently consists of Points and Spheres (work in progress).
|
60
61
|
Once installed, type "Zadt::ADT::help" for a list of datatypes
|
61
62
|
and basic functionality. And don't forget to require 'zadt' at the top!
|