algorithmix 0.0.0.2 → 0.0.0.3
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/algorithmix.gemspec +3 -1
- data/lib/algorithmix/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1fa9af42a9283735ddfb27fd46138b88433af8c2
|
|
4
|
+
data.tar.gz: ed9cafc8c1adbb181e9344f21d8ed61dc2e20e74
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba4aa0ee6ed557ee62842f17ecf1c78ed4d5b4fa0a1b4fe9191325a100774abdfedc1c30d3272714729c8b475a135867c06e6c09bee4513c2a863e5031984795
|
|
7
|
+
data.tar.gz: f34df850923955a0d0d88d542c8e27cc54417dc24f997bd4b4a7ba33b921ed348170503c338520d75e79c1de76ec663678edf6ae736bf8f6f7fe5086fcb14f61
|
data/algorithmix.gemspec
CHANGED
|
@@ -10,7 +10,9 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["*@*.*"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{The gem contains various implementations of known and uknown data structure and algorithms}
|
|
13
|
-
spec.description = %q{The gem contains various implementations of known and uknown data structure and algorithms, which will be useful for developers
|
|
13
|
+
spec.description = %q{The gem contains various implementations of known and uknown data structure and algorithms, which will be useful for developers.\n
|
|
14
|
+
Currently the gem contains:\n
|
|
15
|
+
1. Stack\n2. Queue\n3. Deque\n Check the documentation for more information.}
|
|
14
16
|
spec.homepage = "https://github.com/monzita/algorithmix/wiki"
|
|
15
17
|
spec.license = "MIT"
|
|
16
18
|
|
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.3
|
|
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-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -66,8 +66,10 @@ dependencies:
|
|
|
66
66
|
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: 2.0.0
|
|
69
|
-
description:
|
|
70
|
-
and algorithms, which will be useful for developers
|
|
69
|
+
description: |-
|
|
70
|
+
The gem contains various implementations of known and uknown data structure and algorithms, which will be useful for developers.\n
|
|
71
|
+
Currently the gem contains:\n
|
|
72
|
+
1. Stack\n2. Queue\n3. Deque\n Check the documentation for more information.
|
|
71
73
|
email:
|
|
72
74
|
- "*@*.*"
|
|
73
75
|
executables: []
|