cryptum 0.0.384 → 0.0.385
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/Gemfile +1 -1
- data/lib/cryptum/ui/matrix.rb +5 -3
- data/lib/cryptum/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 458a0c463a08f598e1694034fbf077f46a8ba8b263c408fd574b35211c40a69b
|
4
|
+
data.tar.gz: 8b8bf8cf3ff0cd9dfa1ebb3609ad50e6f05d09aea705e726b840060e58d39c32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3963c369c745590402ff8943487eb057541b6eae6278cf67992981cbdb0919c847207fcfb43cac8b3cf991b5c1c866adc57035e6106a5715ed7f439ab4e92a8a
|
7
|
+
data.tar.gz: d6abdb55f67bab96545d5207c9d4e995edcbec9d9a85d49b13e01a4a2d4522c5e9b20529460f1b2e20a10dad7f3dc2edfc78376215f85888b2278f5d0131582f
|
data/Gemfile
CHANGED
@@ -11,7 +11,7 @@ gemspec
|
|
11
11
|
# In some circumstances custom flags are passed to gems in order
|
12
12
|
# to build appropriately. Defer to ./reinstall_coinbot_gemset.sh
|
13
13
|
# to review these custom flags
|
14
|
-
gem 'addressable', '2.8.
|
14
|
+
gem 'addressable', '2.8.2'
|
15
15
|
gem 'bundler', '>=2.4.10'
|
16
16
|
gem 'bundler-audit', '0.9.1'
|
17
17
|
gem 'curses', '1.4.4'
|
data/lib/cryptum/ui/matrix.rb
CHANGED
@@ -158,14 +158,16 @@ module Cryptum
|
|
158
158
|
', '
|
159
159
|
]
|
160
160
|
|
161
|
-
last_index = matrix_arr.length - 1
|
161
|
+
# last_index = matrix_arr.length - 1
|
162
162
|
|
163
163
|
matrix_row = ''
|
164
164
|
most_cols = cols - 1
|
165
165
|
most_cols.times.each do
|
166
|
-
matrix_row += "#{matrix_arr[Random.rand(0..last_index)]} "
|
166
|
+
# matrix_row += "#{matrix_arr[Random.rand(0..last_index)]} "
|
167
|
+
matrix_row += "#{matrix_arr.sample} "
|
167
168
|
end
|
168
|
-
matrix_row += matrix_arr[Random.rand(0..last_index)]
|
169
|
+
# matrix_row += matrix_arr[Random.rand(0..last_index)]
|
170
|
+
matrix_row += matrix_arr.sample
|
169
171
|
rescue Interrupt
|
170
172
|
# Exit Gracefully if CTRL+C is Pressed During Session
|
171
173
|
Cryptum::UI::Exit.gracefully(which_self: self)
|
data/lib/cryptum/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cryptum
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.385
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- 0day Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 2.8.
|
19
|
+
version: 2.8.2
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 2.8.
|
26
|
+
version: 2.8.2
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|