algorithmix 0.0.0.5 → 0.0.0.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.
- checksums.yaml +4 -4
- data/README.md +2 -8
- data/algorithmix.gemspec +1 -1
- data/lib/algorithmix/error.rb +1 -0
- data/lib/algorithmix/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4efe294f4271fb203ede5876ef848b259eeb2531
|
|
4
|
+
data.tar.gz: 3e6a589d25b1c73d3eb1245fd1444d3f79a9cdde
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
 [**LinkedList**](https://github.com/monzita/algorithmix/wiki/LinkedList)
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
 [**Deque**](https://github.com/monzita/algorithmix/wiki/Deque)
|
|
17
|
-
|
|
18
|
-
 [**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
|
-
 [**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"
|
data/lib/algorithmix/error.rb
CHANGED
data/lib/algorithmix/version.rb
CHANGED
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.
|
|
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-
|
|
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: []
|