zadt 0.1.9 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8895ef5d94147f877d0ca9d14fe2a2cadd2a159c
4
- data.tar.gz: f28233fd6801797e5f304cb54bdeadbc056f94d0
3
+ metadata.gz: d0c11ab2bf7da2e0f74cce5774efd9f9cb863e35
4
+ data.tar.gz: a7c1eb72e05d0d7d6b55f296274d4c6c7cce011e
5
5
  SHA512:
6
- metadata.gz: 7cc9788cc828d6a52c1ed4bb9e3b47ba883450db9f953f607a96440e4a7e2c92febc4a2186d6c458f30cc8495283055884dbab3403dd970086b456ea9f57a39e
7
- data.tar.gz: ac0158200268b0973ecbb8f1444bfc5c552fd371b922e8cb0d5d0be884f06ddb4f3282fae3c5a88c5679539d102bf5cb0701bd84e720b543c384c7f2dddebb1b
6
+ metadata.gz: 66c8828077da9414c71df8eac48dd92b6027f3687f472012f4231773fe678d58c105aa95d9661ff72d07c61eefed1a6f009ab81533afdc38d401cf1eb16b603f
7
+ data.tar.gz: bef7aa8acee94683807112bac4a19eba9d5f9b8ff2735b46186ac2eed4979140d8ea807dca0eb83f185f52b022b5ef7bbeb1c09fe27c2d496f13d1dc0ad4835e
data/.gitignore CHANGED
@@ -8,3 +8,4 @@
8
8
  /spec/reports/
9
9
  /tmp/
10
10
  *.gem
11
+ *.DS_Store
@@ -1,7 +1,7 @@
1
1
  module Zadt
2
2
  class ADT
3
3
  def self.help
4
- puts "Thank you for using Zagorski Advanced Data Types!"
4
+ puts "Thank you for using Zagorski Abstract Data Types!"
5
5
  puts "This package contains the following Data Types:"
6
6
 
7
7
  puts "Array-Like Data Types"
@@ -1,3 +1,3 @@
1
1
  module Zadt
2
- VERSION = "0.1.9"
2
+ VERSION = "1.1.0"
3
3
  end
@@ -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 advanced data types that are not included in the standard Ruby library.}
13
- spec.description = %q{Includes three different categories of Advanced Data Types: Array-Based, Graphs, and Geometrics.
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: 0.1.9
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-04-26 00:00:00.000000000 Z
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 Advanced Data Types: Array-Based, Graphs, and Geometrics.
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 advanced data types that are not included
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: []