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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0927792ea2ac9e77095747e146ec3c0bfab5d8387ebee48f4032af5dfa2ed7f1'
4
- data.tar.gz: 49985b1166bcd865fbee9b73d028c9bfc47be457b544a3426ca74a353b937dea
3
+ metadata.gz: e5751edf041ccf1b015706553b994f229a45f8c47f0238dca33b566102ff253b
4
+ data.tar.gz: 75a62906adbb8b3d1589c96b708319c3633a8f7efb68dcb995e84a717a36abe2
5
5
  SHA512:
6
- metadata.gz: 897dbfe423703b75244b22a72ce28e8222efc95884778ad02044e93322da09a57758cd90c49e615dd06985a7c9cd2d432890405a139128a8506cd5c996ef1a57
7
- data.tar.gz: 4fff271c7398bc2fe5ca987d7343143aae47ecc34f48f20b5faf1d0d397bbc4a6949d7c260a6ad34bf2afbde624878257418d03782906f5247d66f41b86f58af
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: 447.2
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: 89
17
+ Max: 91
18
18
  Metrics/MethodLength:
19
- Max: 418
19
+ Max: 421
20
20
  Metrics/ModuleLength:
21
- Max: 428
21
+ Max: 431
22
22
  Metrics/PerceivedComplexity:
23
- Max: 87
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cryptum
4
- VERSION = '0.0.450'
4
+ VERSION = '0.0.451'
5
5
  end
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.450
4
+ version: 0.0.451
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.