zadt 0.1.9 → 1.1.0
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/.gitignore +1 -0
- data/lib/zadt/HelpModules/adt_help.rb +1 -1
- data/lib/zadt/version.rb +1 -1
- data/zadt.gemspec +3 -3
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d0c11ab2bf7da2e0f74cce5774efd9f9cb863e35
|
|
4
|
+
data.tar.gz: a7c1eb72e05d0d7d6b55f296274d4c6c7cce011e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66c8828077da9414c71df8eac48dd92b6027f3687f472012f4231773fe678d58c105aa95d9661ff72d07c61eefed1a6f009ab81533afdc38d401cf1eb16b603f
|
|
7
|
+
data.tar.gz: bef7aa8acee94683807112bac4a19eba9d5f9b8ff2735b46186ac2eed4979140d8ea807dca0eb83f185f52b022b5ef7bbeb1c09fe27c2d496f13d1dc0ad4835e
|
data/.gitignore
CHANGED
data/lib/zadt/version.rb
CHANGED
data/zadt.gemspec
CHANGED
|
@@ -9,13 +9,13 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Benjamin Zagorski"]
|
|
10
10
|
spec.email = ["benj@zagorski.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{Zagorski ADT is a collection of
|
|
13
|
-
spec.description = %q{Includes three different categories of
|
|
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.
|
|
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
16
|
Geometrics includes Universe, which currently consists of Points and Spheres (work in progress).
|
|
17
17
|
Once installed, type "Zadt::ADT::help" for a list of datatypes
|
|
18
|
-
and basic functionality.}
|
|
18
|
+
and basic functionality. And don't forget to require 'zadt' at the top!}
|
|
19
19
|
spec.homepage = "https://github.com/MrMicrowaveOven/zadt.git"
|
|
20
20
|
spec.license = "MIT"
|
|
21
21
|
|
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:
|
|
4
|
+
version: 1.1.0
|
|
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-
|
|
11
|
+
date: 2016-05-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -53,12 +53,12 @@ dependencies:
|
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '3.0'
|
|
55
55
|
description: |-
|
|
56
|
-
Includes three different categories of
|
|
56
|
+
Includes three different categories of Abstract Data Types: Array-Based, Graphs, 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
59
|
Geometrics includes Universe, which currently consists of Points and Spheres (work in progress).
|
|
60
60
|
Once installed, type "Zadt::ADT::help" for a list of datatypes
|
|
61
|
-
and basic functionality.
|
|
61
|
+
and basic functionality. And don't forget to require 'zadt' at the top!
|
|
62
62
|
email:
|
|
63
63
|
- benj@zagorski.com
|
|
64
64
|
executables: []
|
|
@@ -123,6 +123,6 @@ rubyforge_project:
|
|
|
123
123
|
rubygems_version: 2.2.2
|
|
124
124
|
signing_key:
|
|
125
125
|
specification_version: 4
|
|
126
|
-
summary: Zagorski ADT is a collection of
|
|
126
|
+
summary: Zagorski ADT is a collection of abstract data types that are not included
|
|
127
127
|
in the standard Ruby library.
|
|
128
128
|
test_files: []
|