zadt 1.1.4 → 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/zadt/version.rb +1 -1
  3. data/zadt.gemspec +2 -1
  4. metadata +3 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b9a920d8e3c3f26a238ebecfa86de9de028d9f37
4
- data.tar.gz: 9c18d53307399c01f3e9fb2dcde83c98b1633bef
3
+ metadata.gz: 7e924172e0decaa8d18f765f4ae3afe062d5556f
4
+ data.tar.gz: 4348f8765043cee050406624369ac800de752e94
5
5
  SHA512:
6
- metadata.gz: 19d1275a2e13747d7a65ad6c024fa4f4ac3a40f4e621f60fa0fe19d75cbbd89133e318f31594cc9858b053e732590e64be263940acc55a0cc1708ea896d44876
7
- data.tar.gz: 1d7bdc7267d985247225bb23137e1769096b157fcb9cef60b342df34391b4d7bac381c3f423eb22c1cd76432bcc19d2967a3b605d4f943bb3346823b08caeeca
6
+ metadata.gz: d8d76b93ba1879d74fea526d35ce50658f8cab40561ef71054339f59e1cafd08b156e37ea6c58f6c537a578f9c50dcc3ebb2df0b98a97007ce38661091c899b1
7
+ data.tar.gz: ab0fb96c21f513e51b99b210e0712b39ec4d25d1a974f86b4183eeac09e95090503366f6605b93df80cf5c7aa936744afffab872cac80ab3b38c4d69a6952f1d
@@ -1,3 +1,3 @@
1
1
  module Zadt
2
- VERSION = "1.1.4"
2
+ VERSION = "1.1.5"
3
3
  end
@@ -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 three different categories of Abstract Data Types: Array-Based, Graphs, and Geometrics.
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
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 three different categories of Abstract Data Types: Array-Based, Graphs, and Geometrics.
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!