zadt 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -0
  3. data/lib/zadt/version.rb +1 -1
  4. data/zadt.gemspec +5 -1
  5. metadata +7 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f16f371f690982be0edc05ae1e5624cdcd812233
4
- data.tar.gz: ce2efe26d5f47a2b670b73a679e8c5f5886fe4ff
3
+ metadata.gz: 334e463a37f9b5ed068e3c19c89747fe2faa53bf
4
+ data.tar.gz: 0f00edaba06dacbb550ae31c17fce4a59dfa883a
5
5
  SHA512:
6
- metadata.gz: c118568e9464acbb25783cee710f56fb3776e1eae551363cc24430fb843c63d584ad0a99a80863940cc7db04333270b056df80a5e7feef0dc7c91346b546ff11
7
- data.tar.gz: 8fe21e9f1f74b97b82711a9710bbe701523b3a64e977b7877460739642c8d45af45765b465665ec7b0aedbc14ebc97041e029094d37ebee1ee0162062cb1bb4f
6
+ metadata.gz: bf176ed96a9c517147d2352cda386458ad99b0fccb94b2a6062f58cda285a6f1f67fe60715e231caf6073014c4bf00c58564076f0c99fbb5353b33946990b776
7
+ data.tar.gz: 07ed15191a6377bf31f7f24b63f03c236940b11b6ae4707d73fbb053a064aa1964986bafa7dadd125da9c487f605d96514fe0274f52761cb382596ed0c9ab3ca
data/README.md CHANGED
@@ -30,6 +30,12 @@ A MinMaxStackQueue is an Queue object that allows the minimum and maximum values
30
30
 
31
31
  Since it is made out of Queues and Stacks, those data types are also available. I also provided StackQueue (functionally the same as a Queue), and a MinMaxStack, which is a Stack version of MinMaxStackQueue.
32
32
 
33
+ ### Graph
34
+
35
+ A Graph is a data type that consists of Vertices, which are connected by Edges. In addition, a FaceGraph is a Graph which also consists of Faces: the space defined inside a set of cyclic edges.
36
+
37
+ I'm still working on the exact functionality of FaceGraph, since I mainly built it to use for a different project, but it should still prove useful for certain situations. If you have any suggestions of useful bits to add, feel free to contact me below!
38
+
33
39
  ## Development
34
40
 
35
41
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -44,3 +50,7 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERN
44
50
  ## License
45
51
 
46
52
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
53
+
54
+ ## Contact
55
+
56
+ This gem was written in its entirety by Benjamin Zagorski, who can be contacted at Benj@Zagorski.com. Feel free to contact me with any questions or comments, as I'm very open to suggestions.
data/lib/zadt/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Zadt
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
data/zadt.gemspec CHANGED
@@ -10,7 +10,11 @@ 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 advanced data types that are not included in the standard Ruby library.}
13
- spec.description = %q{Includes the following Advanced Data Types: Stack, Queue, StackQueue, MinMaxStack, and MinMaxStackQueue. Once installed, type "Zadt::ADT::help" for a list of datatypes and basic functionality.}
13
+ spec.description = %q{Includes two different categories of Advanced Data Types: Array-Based, and Graphs.
14
+ Array-Based Data Types include Stack, Queue, StackQueue, MinMaxStack, and MinMaxStackQueue.
15
+ Graph Data Types include Graph, Vertex, Edge, FaceGraph, and Face.
16
+ Once installed, type "Zadt::ADT::help" for a list of datatypes
17
+ and basic functionality.}
14
18
  spec.homepage = "https://github.com/MrMicrowaveOven/zadt.git"
15
19
  spec.license = "MIT"
16
20
 
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: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamin Zagorski
@@ -52,9 +52,12 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.0'
55
- description: 'Includes the following Advanced Data Types: Stack, Queue, StackQueue,
56
- MinMaxStack, and MinMaxStackQueue. Once installed, type "Zadt::ADT::help" for a
57
- list of datatypes and basic functionality.'
55
+ description: |-
56
+ Includes two different categories of Advanced Data Types: Array-Based, and Graphs.
57
+ Array-Based Data Types include Stack, Queue, StackQueue, MinMaxStack, and MinMaxStackQueue.
58
+ Graph Data Types include Graph, Vertex, Edge, FaceGraph, and Face.
59
+ Once installed, type "Zadt::ADT::help" for a list of datatypes
60
+ and basic functionality.
58
61
  email:
59
62
  - benj@zagorski.com
60
63
  executables: []