cryptum 0.0.295 → 0.0.297
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/.rubocop_todo.yml +17 -9
- data/Gemfile +1 -1
- data/lib/cryptum/event/history.rb +4 -0
- data/lib/cryptum/event/scroll.rb +34 -14
- data/lib/cryptum/event.rb +7 -7
- data/lib/cryptum/ui/market_trend.rb +2 -0
- data/lib/cryptum/ui/order_execute_details.rb +2 -0
- data/lib/cryptum/ui/order_execution.rb +28 -5
- data/lib/cryptum/ui/order_plan.rb +28 -4
- data/lib/cryptum/ui/order_plan_details.rb +2 -0
- data/lib/cryptum/ui/portfolio.rb +2 -0
- data/lib/cryptum/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d651a0ca3efe974092a296cd303aab2f3fb330aae312211f8b67ee635cf5d72
|
4
|
+
data.tar.gz: 88b317dfbc646326c5837cb2e8e67c04b53b7e407bbc873bdcf2789a46fc7c5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 225543e25f6e4cbd59bba1bddc1f3e83f431615d0fefffd48d30c3fd3a50b990c2f75fafdc124758fb198b3d7fa36aded12b5ba4b0804b36c5ee0350129e8ec5
|
7
|
+
data.tar.gz: 4900f66dc40bae7872776177afd2876e72293f99bc57bb1f54e1cce082287fad9ed2091f078c8443e036b4004fa5fb7e513f739824b4ac2fe0f0b5c3cec99ec8
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on 2022-12-08
|
3
|
+
# on 2022-12-08 22:21:57 UTC using RuboCop version 1.40.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
@@ -73,6 +73,14 @@ Layout/MultilineOperationIndentation:
|
|
73
73
|
- 'lib/cryptum/ui/order_execution.rb'
|
74
74
|
- 'lib/cryptum/ui/ticker.rb'
|
75
75
|
|
76
|
+
# Offense count: 1
|
77
|
+
# This cop supports safe autocorrection (--autocorrect).
|
78
|
+
# Configuration parameters: AllowForAlignment, EnforcedStyleForExponentOperator.
|
79
|
+
# SupportedStylesForExponentOperator: space, no_space
|
80
|
+
Layout/SpaceAroundOperators:
|
81
|
+
Exclude:
|
82
|
+
- 'lib/cryptum/ui/order_execution.rb'
|
83
|
+
|
76
84
|
# Offense count: 13
|
77
85
|
# This cop supports safe autocorrection (--autocorrect).
|
78
86
|
# Configuration parameters: AllowInHeredoc.
|
@@ -85,14 +93,14 @@ Layout/TrailingWhitespace:
|
|
85
93
|
- 'lib/cryptum/ui/order_plan.rb'
|
86
94
|
- 'lib/cryptum/ui/order_timer.rb'
|
87
95
|
|
88
|
-
# Offense count:
|
96
|
+
# Offense count: 87
|
89
97
|
Lint/UselessAssignment:
|
90
98
|
Enabled: false
|
91
99
|
|
92
100
|
# Offense count: 47
|
93
101
|
# Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods, CountRepeatedAttributes.
|
94
102
|
Metrics/AbcSize:
|
95
|
-
Max:
|
103
|
+
Max: 419
|
96
104
|
|
97
105
|
# Offense count: 7
|
98
106
|
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods.
|
@@ -108,22 +116,22 @@ Metrics/BlockNesting:
|
|
108
116
|
# Offense count: 19
|
109
117
|
# Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods.
|
110
118
|
Metrics/CyclomaticComplexity:
|
111
|
-
Max:
|
119
|
+
Max: 75
|
112
120
|
|
113
121
|
# Offense count: 68
|
114
122
|
# Configuration parameters: CountComments, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods.
|
115
123
|
Metrics/MethodLength:
|
116
|
-
Max:
|
124
|
+
Max: 406
|
117
125
|
|
118
126
|
# Offense count: 17
|
119
127
|
# Configuration parameters: CountComments, CountAsOne.
|
120
128
|
Metrics/ModuleLength:
|
121
129
|
Max: 538
|
122
130
|
|
123
|
-
# Offense count:
|
131
|
+
# Offense count: 20
|
124
132
|
# Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods.
|
125
133
|
Metrics/PerceivedComplexity:
|
126
|
-
Max:
|
134
|
+
Max: 78
|
127
135
|
|
128
136
|
# Offense count: 5
|
129
137
|
# This cop supports safe autocorrection (--autocorrect).
|
@@ -216,9 +224,9 @@ Style/TrailingCommaInArrayLiteral:
|
|
216
224
|
Exclude:
|
217
225
|
- 'lib/cryptum/matrix.rb'
|
218
226
|
|
219
|
-
# Offense count:
|
227
|
+
# Offense count: 27
|
220
228
|
# This cop supports safe autocorrection (--autocorrect).
|
221
229
|
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, IgnoredPatterns.
|
222
230
|
# URISchemes: http, https
|
223
231
|
Layout/LineLength:
|
224
|
-
Max:
|
232
|
+
Max: 222
|
data/Gemfile
CHANGED
@@ -28,12 +28,14 @@ module Cryptum
|
|
28
28
|
:order_plan_details_win_active,
|
29
29
|
:order_plan_index_offset,
|
30
30
|
:order_plan_max_rows_to_display,
|
31
|
+
:order_plan_max_records_available_to_display,
|
31
32
|
:order_plan_row_to_select,
|
32
33
|
:order_plan_selected_data,
|
33
34
|
:order_execute_win_active,
|
34
35
|
:order_execute_details_win_active,
|
35
36
|
:order_execute_index_offset,
|
36
37
|
:order_execute_max_rows_to_display,
|
38
|
+
:order_execute_max_records_available_to_display,
|
37
39
|
:order_execute_row_to_select,
|
38
40
|
:order_execute_selected_data,
|
39
41
|
:recalculate_order_plan
|
@@ -57,12 +59,14 @@ module Cryptum
|
|
57
59
|
self.order_plan_details_win_active = false
|
58
60
|
self.order_plan_index_offset = 0
|
59
61
|
self.order_plan_max_rows_to_display = 6
|
62
|
+
self.order_plan_max_records_available_to_display = 6
|
60
63
|
self.order_plan_row_to_select = order_plan_index_offset
|
61
64
|
self.order_plan_selected_data = { color: :white }
|
62
65
|
self.order_execute_win_active = false
|
63
66
|
self.order_execute_details_win_active = false
|
64
67
|
self.order_execute_index_offset = 0
|
65
68
|
self.order_execute_max_rows_to_display = 6
|
69
|
+
self.order_execute_max_records_available_to_display = 6
|
66
70
|
self.order_execute_row_to_select = order_execute_index_offset
|
67
71
|
self.order_execute_selected_data = { color: :white }
|
68
72
|
self.recalculate_order_plan = false
|
data/lib/cryptum/event/scroll.rb
CHANGED
@@ -45,16 +45,26 @@ module Cryptum
|
|
45
45
|
terminal_win.key_press_event.key_esc = false
|
46
46
|
terminal_win.key_press_event.key_down_arrow = false
|
47
47
|
|
48
|
+
order_book = event_history.order_book
|
49
|
+
|
48
50
|
if event_history.order_plan_win_active
|
51
|
+
order_plan_length = order_book[:order_plan].length
|
52
|
+
last_row = order_plan_length - 1
|
53
|
+
event_history.order_plan_max_records_available_to_display = last_row if last_row < event_history.order_plan_max_rows_to_display
|
54
|
+
|
49
55
|
event_history.order_plan_row_to_select += 1
|
50
|
-
event_history.order_plan_index_offset += 1 if event_history.order_plan_row_to_select > event_history.
|
51
|
-
event_history.order_plan_row_to_select = event_history.
|
56
|
+
event_history.order_plan_index_offset += 1 if event_history.order_plan_row_to_select > event_history.order_plan_max_records_available_to_display
|
57
|
+
event_history.order_plan_row_to_select = event_history.order_plan_max_records_available_to_display if event_history.order_plan_row_to_select > event_history.order_plan_max_records_available_to_display
|
52
58
|
end
|
53
59
|
|
54
60
|
if event_history.order_execute_win_active
|
61
|
+
order_history_meta_length = order_book[:order_history_meta].length
|
62
|
+
last_row = order_history_meta_length - 1
|
63
|
+
event_history.order_execute_max_records_available_to_display = last_row if last_row < event_history.order_execute_max_rows_to_display
|
64
|
+
|
55
65
|
event_history.order_execute_row_to_select += 1
|
56
|
-
event_history.order_execute_index_offset += 1 if event_history.order_execute_row_to_select > event_history.
|
57
|
-
event_history.order_execute_row_to_select = event_history.
|
66
|
+
event_history.order_execute_index_offset += 1 if event_history.order_execute_row_to_select > event_history.order_execute_max_records_available_to_display
|
67
|
+
event_history.order_execute_row_to_select = event_history.order_execute_max_records_available_to_display if event_history.order_execute_row_to_select > event_history.order_execute_max_records_available_to_display
|
58
68
|
end
|
59
69
|
rescue StandardError => e
|
60
70
|
raise e
|
@@ -99,16 +109,18 @@ module Cryptum
|
|
99
109
|
terminal_win.key_press_event.key_esc = false
|
100
110
|
terminal_win.key_press_event.key_page_down = false
|
101
111
|
|
112
|
+
order_book = event_history.order_book
|
113
|
+
|
102
114
|
if event_history.order_plan_win_active
|
115
|
+
order_plan_length = order_book[:order_plan].length
|
103
116
|
event_history.order_plan_row_to_select = 0
|
104
|
-
event_history.order_plan_index_offset += event_history.order_plan_max_rows_to_display + 1
|
105
|
-
event_history.order_plan_row_to_select = event_history.order_plan_max_rows_to_display if event_history.order_plan_row_to_select > event_history.order_plan_max_rows_to_display
|
117
|
+
event_history.order_plan_index_offset += event_history.order_plan_max_rows_to_display + 1 unless event_history.order_plan_index_offset > order_plan_length
|
106
118
|
end
|
107
119
|
|
108
120
|
if event_history.order_execute_win_active
|
121
|
+
order_history_meta_length = order_book[:order_history_meta].length
|
109
122
|
event_history.order_execute_row_to_select = 0
|
110
|
-
event_history.order_execute_index_offset += event_history.order_execute_max_rows_to_display + 1
|
111
|
-
event_history.order_execute_row_to_select = event_history.order_execute_max_rows_to_display if event_history.order_execute_row_to_select > event_history.order_execute_max_rows_to_display
|
123
|
+
event_history.order_execute_index_offset += event_history.order_execute_max_rows_to_display + 1 unless event_history.order_execute_index_offset > order_history_meta_length
|
112
124
|
end
|
113
125
|
rescue StandardError => e
|
114
126
|
raise e
|
@@ -149,16 +161,24 @@ module Cryptum
|
|
149
161
|
terminal_win.key_press_event.key_esc = false
|
150
162
|
terminal_win.key_press_event.key_end = false
|
151
163
|
|
164
|
+
order_book = event_history.order_book
|
165
|
+
|
152
166
|
if event_history.order_plan_win_active
|
153
|
-
order_plan_length =
|
154
|
-
|
155
|
-
event_history.
|
167
|
+
order_plan_length = order_book[:order_plan].length
|
168
|
+
last_row = order_plan_length - 1
|
169
|
+
event_history.order_plan_max_records_available_to_display = last_row if last_row < event_history.order_plan_max_rows_to_display
|
170
|
+
|
171
|
+
event_history.order_plan_row_to_select = event_history.order_plan_max_records_available_to_display
|
172
|
+
event_history.order_plan_index_offset = order_plan_length - event_history.order_plan_max_records_available_to_display
|
156
173
|
end
|
157
174
|
|
158
175
|
if event_history.order_execute_win_active
|
159
|
-
order_history_meta_length =
|
160
|
-
|
161
|
-
event_history.
|
176
|
+
order_history_meta_length = order_book[:order_history_meta].length
|
177
|
+
last_row = order_history_meta_length - 1
|
178
|
+
event_history.order_execute_max_records_available_to_display = last_row if last_row < event_history.order_execute_max_rows_to_display
|
179
|
+
|
180
|
+
event_history.order_execute_row_to_select = event_history.order_execute_max_records_available_to_display
|
181
|
+
event_history.order_execute_index_offset = order_history_meta_length - event_history.order_execute_max_records_available_to_display
|
162
182
|
end
|
163
183
|
rescue StandardError => e
|
164
184
|
raise e
|
data/lib/cryptum/event.rb
CHANGED
@@ -38,7 +38,7 @@ module Cryptum
|
|
38
38
|
fiat_portfolio_file = "#{option_choice.repo_root}/order_books/#{fiat}_PORTFOLIO.json"
|
39
39
|
|
40
40
|
# Determine if Summary UI needs updated data
|
41
|
-
Cryptum::Portfolio::Balance.refresh(
|
41
|
+
event_history = Cryptum::Portfolio::Balance.refresh(
|
42
42
|
env: env,
|
43
43
|
option_choice: option_choice,
|
44
44
|
terminal_win: terminal_win,
|
@@ -53,7 +53,7 @@ module Cryptum
|
|
53
53
|
terminal_win.market_trend_ui_resize = true
|
54
54
|
end
|
55
55
|
|
56
|
-
Cryptum::UI::Portfolio.refresh(
|
56
|
+
event_history = Cryptum::UI::Portfolio.refresh(
|
57
57
|
option_choice: option_choice,
|
58
58
|
portfolio_win: terminal_win.portfolio_section,
|
59
59
|
event_history: event_history,
|
@@ -91,7 +91,7 @@ module Cryptum
|
|
91
91
|
|
92
92
|
market_trend_event = event_history.market_trend_event = event_history.event if event_history.event_type == :l2update
|
93
93
|
market_trend_event = event_history.market_trend_event if terminal_win.market_trend_ui_resize
|
94
|
-
Cryptum::UI::MarketTrend.refresh(
|
94
|
+
event_history = Cryptum::UI::MarketTrend.refresh(
|
95
95
|
option_choice: option_choice,
|
96
96
|
market_trend_win: terminal_win.market_trend_section,
|
97
97
|
event_history: event_history,
|
@@ -113,7 +113,7 @@ module Cryptum
|
|
113
113
|
)
|
114
114
|
|
115
115
|
unless event_history.order_plan_details_win_active
|
116
|
-
Cryptum::UI::OrderPlan.refresh(
|
116
|
+
event_history = Cryptum::UI::OrderPlan.refresh(
|
117
117
|
option_choice: option_choice,
|
118
118
|
order_plan_win: terminal_win.order_plan_section,
|
119
119
|
env: env,
|
@@ -130,7 +130,7 @@ module Cryptum
|
|
130
130
|
end
|
131
131
|
|
132
132
|
if event_history.order_plan_details_win_active
|
133
|
-
Cryptum::UI::OrderPlanDetails.refresh(
|
133
|
+
event_history = Cryptum::UI::OrderPlanDetails.refresh(
|
134
134
|
option_choice: option_choice,
|
135
135
|
order_plan_details_win: terminal_win.order_plan_details_section,
|
136
136
|
event_history: event_history,
|
@@ -139,7 +139,7 @@ module Cryptum
|
|
139
139
|
end
|
140
140
|
|
141
141
|
unless event_history.order_execute_details_win_active
|
142
|
-
Cryptum::UI::OrderExecution.refresh(
|
142
|
+
event_history = Cryptum::UI::OrderExecution.refresh(
|
143
143
|
option_choice: option_choice,
|
144
144
|
order_execute_win: terminal_win.order_execute_section,
|
145
145
|
env: env,
|
@@ -152,7 +152,7 @@ module Cryptum
|
|
152
152
|
end
|
153
153
|
|
154
154
|
if event_history.order_execute_details_win_active
|
155
|
-
Cryptum::UI::OrderExecuteDetails.refresh(
|
155
|
+
event_history = Cryptum::UI::OrderExecuteDetails.refresh(
|
156
156
|
option_choice: option_choice,
|
157
157
|
order_execute_details_win: terminal_win.order_execute_details_section,
|
158
158
|
event_history: event_history,
|
@@ -412,12 +412,18 @@ module Cryptum
|
|
412
412
|
)
|
413
413
|
|
414
414
|
# ROWS 3-10
|
415
|
+
max_rows_to_display = event_history.order_execute_max_rows_to_display
|
416
|
+
max_records_available_to_display = event_history.order_execute_max_records_available_to_display
|
415
417
|
first_row = event_history.order_execute_index_offset
|
416
|
-
last_row = first_row +
|
418
|
+
last_row = first_row + max_rows_to_display
|
419
|
+
remaining_blank_rows = 0
|
417
420
|
if last_row >= order_history_meta.length
|
418
421
|
last_row = order_history_meta.length - 1
|
419
|
-
|
422
|
+
event_history.order_execute_max_records_available_to_display = last_row if last_row < max_rows_to_display
|
423
|
+
first_row = event_history.order_execute_max_records_available_to_display - last_row
|
424
|
+
# event_history.order_execute_index_offset = first_row
|
420
425
|
event_history.order_execute_index_offset = first_row
|
426
|
+
remaining_blank_rows = max_rows_to_display - last_row
|
421
427
|
end
|
422
428
|
|
423
429
|
if order_history_meta.any?
|
@@ -451,7 +457,7 @@ module Cryptum
|
|
451
457
|
profit_out = Cryptum.beautify_large_number(
|
452
458
|
value: meta[:profit]
|
453
459
|
)
|
454
|
-
plan_no =
|
460
|
+
plan_no = meta[:plan_no]
|
455
461
|
|
456
462
|
buy_created_at_hash_arr = order_history.select do |oh|
|
457
463
|
oh[:id] == meta[:buy_order_id]
|
@@ -471,7 +477,7 @@ module Cryptum
|
|
471
477
|
targ_tick = "$#{target_price_out}"
|
472
478
|
profit = "|Profit: $#{meta[:profit]}"
|
473
479
|
|
474
|
-
order_exec_ln = "#{buy_created_at}|#{invest}#{tick}#{size}#{tpm_out}#{targ_tick}#{profit}"
|
480
|
+
order_exec_ln = "#{buy_created_at}|#{invest}#{tick}#{size}#{tpm_out}#{targ_tick}#{profit}|#{plan_no}"
|
475
481
|
|
476
482
|
order_execute_win.setpos(out_line_no, Cryptum::UI.col_first)
|
477
483
|
order_execute_win.clrtoeol
|
@@ -485,8 +491,23 @@ module Cryptum
|
|
485
491
|
event_history.order_execute_selected_data = selected_order
|
486
492
|
end
|
487
493
|
|
494
|
+
# Clear to SUMMARY
|
495
|
+
# (Only Applicable if order_book[:order_history_meta] < max_rows_to_display)
|
496
|
+
out_line_no+=1
|
497
|
+
rows_to_blank = (out_line_no + remaining_blank_rows) - 1
|
498
|
+
(out_line_no..rows_to_blank).each do |clr_line|
|
499
|
+
out_line_no = clr_line
|
500
|
+
order_execute_win.setpos(clr_line, Cryptum::UI.col_first)
|
501
|
+
order_execute_win.clrtoeol
|
502
|
+
Cryptum::UI.colorize(
|
503
|
+
ui_win: order_execute_win,
|
504
|
+
color: :white,
|
505
|
+
style: :normal,
|
506
|
+
string: ''.ljust(col_just1, ' ')
|
507
|
+
)
|
508
|
+
end
|
509
|
+
|
488
510
|
# ROW 10
|
489
|
-
out_line_no += 1
|
490
511
|
order_execute_win.setpos(out_line_no, Cryptum::UI.col_first)
|
491
512
|
order_execute_win.clrtoeol
|
492
513
|
Cryptum::UI.colorize(
|
@@ -521,6 +542,8 @@ module Cryptum
|
|
521
542
|
|
522
543
|
# Reset Order Ready Boolean
|
523
544
|
event_history.order_ready = false
|
545
|
+
|
546
|
+
event_history
|
524
547
|
rescue Interrupt
|
525
548
|
# Exit Gracefully if CTRL+C is Pressed During Session
|
526
549
|
Cryptum.exit_gracefully(which_self: self)
|
@@ -22,7 +22,7 @@ module Cryptum
|
|
22
22
|
fiat_portfolio_file = opts[:fiat_portfolio_file]
|
23
23
|
|
24
24
|
ticker_price = event_history.order_book[:ticker_price].to_f
|
25
|
-
return unless ticker_price.positive?
|
25
|
+
return event_history unless ticker_price.positive?
|
26
26
|
|
27
27
|
market_trend_color = plan_color = :white
|
28
28
|
|
@@ -331,12 +331,19 @@ module Cryptum
|
|
331
331
|
plan_color = :cyan if market_trend_color == :red
|
332
332
|
plan_color = :green if market_trend_color == :green
|
333
333
|
|
334
|
+
# ROWS 3-10
|
335
|
+
max_rows_to_display = event_history.order_plan_max_rows_to_display
|
336
|
+
max_records_available_to_display = event_history.order_plan_max_records_available_to_display
|
334
337
|
first_row = event_history.order_plan_index_offset
|
335
|
-
last_row = first_row +
|
338
|
+
last_row = first_row + max_rows_to_display
|
339
|
+
remaining_blank_rows = 0
|
336
340
|
if last_row >= order_plan.length
|
337
341
|
last_row = order_plan.length - 1
|
338
|
-
|
342
|
+
event_history.order_plan_max_records_available_to_display = last_row if last_row < max_rows_to_display
|
343
|
+
first_row = last_row - event_history.order_plan_max_records_available_to_display
|
339
344
|
event_history.order_plan_index_offset = first_row
|
345
|
+
event_history.order_plan_index_offset = first_row
|
346
|
+
remaining_blank_rows = max_rows_to_display - last_row
|
340
347
|
end
|
341
348
|
|
342
349
|
selected_order = event_history.order_plan_selected_data
|
@@ -402,8 +409,23 @@ module Cryptum
|
|
402
409
|
end
|
403
410
|
end
|
404
411
|
|
405
|
-
#
|
412
|
+
# Clear to SUMMARY
|
413
|
+
# (Only Applicable if order_book[:order_plan] < max_rows_to_display)
|
406
414
|
out_line_no += 1
|
415
|
+
rows_to_blank = (out_line_no + remaining_blank_rows) - 1
|
416
|
+
(out_line_no..remaining_blank_rows).each do |clr_line|
|
417
|
+
out_line_no = clr_line
|
418
|
+
order_plan_win.setpos(clr_line, Cryptum::UI.col_first)
|
419
|
+
Cryptum::UI.colorize(
|
420
|
+
ui_win: order_plan_win,
|
421
|
+
color: :white,
|
422
|
+
style: :normal,
|
423
|
+
string: ''.ljust(col_just1, ' ')
|
424
|
+
)
|
425
|
+
end
|
426
|
+
|
427
|
+
# ROW 10
|
428
|
+
# out_line_no += 1
|
407
429
|
order_plan_win.setpos(out_line_no, Cryptum::UI.col_first)
|
408
430
|
order_plan_win.clrtoeol
|
409
431
|
Cryptum::UI.colorize(
|
@@ -435,6 +457,8 @@ module Cryptum
|
|
435
457
|
)
|
436
458
|
|
437
459
|
order_plan_win.refresh
|
460
|
+
|
461
|
+
event_history
|
438
462
|
rescue Interrupt
|
439
463
|
# Exit Gracefully if CTRL+C is Pressed During Session
|
440
464
|
Cryptum.exit_gracefully(which_self: self)
|
data/lib/cryptum/ui/portfolio.rb
CHANGED
data/lib/cryptum/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.297
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- 0day Inc.
|
@@ -212,14 +212,14 @@ dependencies:
|
|
212
212
|
requirements:
|
213
213
|
- - '='
|
214
214
|
- !ruby/object:Gem::Version
|
215
|
-
version: 1.
|
215
|
+
version: 1.40.0
|
216
216
|
type: :runtime
|
217
217
|
prerelease: false
|
218
218
|
version_requirements: !ruby/object:Gem::Requirement
|
219
219
|
requirements:
|
220
220
|
- - '='
|
221
221
|
- !ruby/object:Gem::Version
|
222
|
-
version: 1.
|
222
|
+
version: 1.40.0
|
223
223
|
- !ruby/object:Gem::Dependency
|
224
224
|
name: rubocop-rake
|
225
225
|
requirement: !ruby/object:Gem::Requirement
|