cryptum 0.0.450 → 0.0.451
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.yml +5 -5
- data/lib/cryptum/ui/order/execute.rb +8 -0
- data/lib/cryptum/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5751edf041ccf1b015706553b994f229a45f8c47f0238dca33b566102ff253b
|
4
|
+
data.tar.gz: 75a62906adbb8b3d1589c96b708319c3633a8f7efb68dcb995e84a717a36abe2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e54da51a666394f3ce4632f0bf14afe0ef28a0d71c25ad413403bc8938bf8278081b1c6d8637a07f5f4ab8dd877aad950defa6910ae15bea92a8da0c51d7e9f2
|
7
|
+
data.tar.gz: 9fd5c8f3778cc064e993ea52ef1357c5bcb61718f4397b9d1c8ba1f373c4863a0023d680dc96174461f8e167345929a93441014c92b7a9ede807fd0716278947
|
data/.rubocop.yml
CHANGED
@@ -6,7 +6,7 @@ Layout/LineLength:
|
|
6
6
|
Lint/UselessRescue:
|
7
7
|
Enabled: false
|
8
8
|
Metrics/AbcSize:
|
9
|
-
Max:
|
9
|
+
Max: 458.7
|
10
10
|
Metrics/BlockLength:
|
11
11
|
Max: 138
|
12
12
|
Metrics/BlockNesting:
|
@@ -14,13 +14,13 @@ Metrics/BlockNesting:
|
|
14
14
|
Metrics/ClassLength:
|
15
15
|
Max: 134
|
16
16
|
Metrics/CyclomaticComplexity:
|
17
|
-
Max:
|
17
|
+
Max: 91
|
18
18
|
Metrics/MethodLength:
|
19
|
-
Max:
|
19
|
+
Max: 421
|
20
20
|
Metrics/ModuleLength:
|
21
|
-
Max:
|
21
|
+
Max: 431
|
22
22
|
Metrics/PerceivedComplexity:
|
23
|
-
Max:
|
23
|
+
Max: 89
|
24
24
|
Style/HashSyntax:
|
25
25
|
EnforcedShorthandSyntax: never
|
26
26
|
|
@@ -295,6 +295,14 @@ module Cryptum
|
|
295
295
|
end
|
296
296
|
end
|
297
297
|
|
298
|
+
# Sync up sell order completion dates if possible
|
299
|
+
out_of_sync_green_orders = oh_meta_sold_arr.reject do |ohm|
|
300
|
+
ohm[:done_at] == ohm[:sell_details][:done_at]
|
301
|
+
end
|
302
|
+
out_of_sync_green_orders.each do |ohm|
|
303
|
+
ohm[:done_at] = ohm[:sell_details][:done_at]
|
304
|
+
end
|
305
|
+
|
298
306
|
# OK, now let's tally up everything...
|
299
307
|
twenty_four_hrs_ago = Time.now - 86_400
|
300
308
|
|
data/lib/cryptum/version.rb
CHANGED