algorithmix 0.0.0.5 → 0.0.0.6

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: 975f3659a8220362ddb0e074ad0f9c826615e31a
4
- data.tar.gz: 450f70a7bb070aae708b3112122c2fb0cc823957
3
+ metadata.gz: 4efe294f4271fb203ede5876ef848b259eeb2531
4
+ data.tar.gz: 3e6a589d25b1c73d3eb1245fd1444d3f79a9cdde
5
5
  SHA512:
6
- metadata.gz: 5b63a0d62dee71d7b3da52450a8fccb6b945fcdb99117d72f727099aa0e86114ae945ec9b7107c1bd2ad772a3e9cb78f559edf3327cdfa64c1be857da69c9951
7
- data.tar.gz: 3302c670ade851248a144a0c39504c00309fd7325bb12debe71f0ca2e4182d167484b8f4ea20559b5d7ab02a5cfbc5f370bdebd5d10d3b2d8de6c6684a0fdfb0
6
+ metadata.gz: 38ef94987b0f520489e445de1f159e87377ce5b75e35187ee68ea99f78102321df03ff526ed419bfe53bb7e44aa2c5207acb30d9d819f4b5a639189f8702078a
7
+ data.tar.gz: 56a265a61cfdf1aa60a841a29c035ed9248702e7a85a86ab45cc0db70b5e5f411d5b97b9db6f802d8bdd9690b8f34bd44236675fc8798b663a788fff9c3d13f7
data/README.md CHANGED
@@ -9,15 +9,9 @@ The gem contains various implementations of known and unknown data structures an
9
9
  :construction: Because the gem is still not ready, with each new implementation of a data structure or an algorithm, a new
10
10
  minor version will be released.
11
11
 
12
- ![Gem](https://img.shields.io/badge/min-0.0.0.4.1-green.svg) Fix couple of bugs in BinaryHeap
12
+ ![](https://img.shields.io/badge/min-0.0.0.6-green.svg) [**LinkedList**](https://github.com/monzita/algorithmix/wiki/LinkedList)
13
13
 
14
- ![Gem](https://img.shields.io/badge/min-0.0.0.4-green.svg) [**BinaryHeap**](https://github.com/monzita/algorithmix/wiki/BinaryHeap)
15
-
16
- ![Gem](https://img.shields.io/badge/min-0.0.0.3-green.svg) [**Deque**](https://github.com/monzita/algorithmix/wiki/Deque)
17
-
18
- ![Gem](https://img.shields.io/badge/min-0.0.0.2-green.svg) [**Queue**](https://github.com/monzita/algorithmix/wiki/Queue) implementation & option for duplication of elements in [**Stack**](https://github.com/monzita/algorithmix/wiki/Stack)
19
-
20
- ![Gem](https://img.shields.io/badge/min-0.0.0.1-green.svg) [**Stack**](https://github.com/monzita/algorithmix/wiki/Stack) implementation is released.
14
+ [**All versions**](https://github.com/monzita/algorithmix/wiki/Versions)
21
15
 
22
16
  ## Installation
23
17
 
data/algorithmix.gemspec CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
11
11
  spec.summary = %q{The gem contains various implementations of known and uknown data structures and algorithms}
12
12
  spec.description = <<-DOC
13
13
  The gem contains various implementations of known and uknown data structures and algorithms.
14
- /Currently the gem contains: #stack, #queue, #deque, #binary_heap, #priority_queue/
14
+ /Currently the gem contains: #stack, #queue, #deque, #binary_heap, #priority_queue, #linked_list/
15
15
  DOC
16
16
  spec.homepage = "https://github.com/monzita/algorithmix/wiki"
17
17
  spec.license = "MIT"
@@ -1,3 +1,4 @@
1
1
  module Algorithmix
2
2
  EmptyContainerError = Class.new(StandardError)
3
+ OutOfBound = Class.new(StandardError)
3
4
  end
@@ -1,3 +1,3 @@
1
1
  module Algorithmix
2
- VERSION = "0.0.0.5"
2
+ VERSION = "0.0.0.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: algorithmix
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0.5
4
+ version: 0.0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Monika Ilieva
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-10-15 00:00:00.000000000 Z
11
+ date: 2018-10-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -68,7 +68,7 @@ dependencies:
68
68
  version: 2.0.0
69
69
  description: " The gem contains various implementations of
70
70
  known and uknown data structures and algorithms. \n /Currently
71
- the gem contains: #stack, #queue, #deque, #binary_heap, #priority_queue/\n"
71
+ the gem contains: #stack, #queue, #deque, #binary_heap, #priority_queue, #linked_list/\n"
72
72
  email:
73
73
  - "*@*.*"
74
74
  executables: []