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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/zadt/version.rb +1 -1
  3. data/zadt.gemspec +4 -7
  4. metadata +6 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7e924172e0decaa8d18f765f4ae3afe062d5556f
4
- data.tar.gz: 4348f8765043cee050406624369ac800de752e94
3
+ metadata.gz: 2fb66e20eaf74c1edfed6ec4fdd63b2b2fed696b
4
+ data.tar.gz: 9748dcbb6748474051163e7d7c9fd6912cf59ef4
5
5
  SHA512:
6
- metadata.gz: d8d76b93ba1879d74fea526d35ce50658f8cab40561ef71054339f59e1cafd08b156e37ea6c58f6c537a578f9c50dcc3ebb2df0b98a97007ce38661091c899b1
7
- data.tar.gz: ab0fb96c21f513e51b99b210e0712b39ec4d25d1a974f86b4183eeac09e95090503366f6605b93df80cf5c7aa936744afffab872cac80ab3b38c4d69a6952f1d
6
+ metadata.gz: 20abbb47caacd3e9aba4ee3fc03c566778b957292f551e59b72b812fc3e97df6871f67fa909a0042853486b682670345f38443e72744335adfd64029ba7200d1
7
+ data.tar.gz: b851a1092dcd9ef1d2841407011e36c1f5fe084684e90778898fb8f32abe8510eafff48ad1d37ab1b80229a210a71850491f5b0554af64aa153d9c29c70616ab
data/lib/zadt/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Zadt
2
- VERSION = "1.1.5"
2
+ VERSION = "1.1.6"
3
3
  end
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 four different categories of Abstract Data Types: Array-Based, Graphs, Linked Lists, and Geometrics.
14
- Array-Based Data Types include Stack, Queue, StackQueue, MinMaxStack, and MinMaxStackQueue.
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.
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.5
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: 2016-12-21 00:00:00.000000000 Z
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 four different categories of Abstract Data Types: Array-Based, Graphs, Linked Lists, and Geometrics.
57
- Array-Based Data Types include Stack, Queue, StackQueue, MinMaxStack, and MinMaxStackQueue.
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.
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: []