cryptum 0.0.353 → 0.0.354
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop_todo.yml +9 -5
- 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: 33bd0666cb731d10e090a2fccd69a22c300425d74c8142b857b3023d5038bcea
|
4
|
+
data.tar.gz: e621fa9257a55d76a37379a9fc6de49dbee968004a7392e329e15a8f00f76ad3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: faf6fd168ed25f9c36425060fc54eb7df0b924e65675462ef863de0a8544a58f4ab838bef5e282a69ac1444295c585e47b40e5b04a0c82d4d1b107cd5dadf929
|
7
|
+
data.tar.gz: 94a512c98d2251e6208d5aabe8368bb1bf6f20b5253541dc2c0dae078002eb207fce1719132ee1bc68d366c87ca3513502130b4bf1e57cd5826a2a7b894cd4e9
|
data/.rubocop_todo.yml
CHANGED
@@ -1,27 +1,31 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on 2022-12-
|
3
|
+
# on 2022-12-29 17:30:05 UTC using RuboCop version 1.41.1.
|
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
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
8
8
|
|
9
|
-
# Offense count:
|
9
|
+
# Offense count: 4
|
10
10
|
Lint/UselessAssignment:
|
11
11
|
Exclude:
|
12
12
|
- 'lib/cryptum/api.rb'
|
13
13
|
|
14
|
-
# Offense count:
|
14
|
+
# Offense count: 4
|
15
15
|
# This cop supports safe autocorrection (--autocorrect).
|
16
16
|
# Configuration parameters: EnforcedStyle, SingleLineConditionsOnly, IncludeTernaryExpressions.
|
17
17
|
# SupportedStyles: assign_to_condition, assign_inside_condition
|
18
18
|
Style/ConditionalAssignment:
|
19
19
|
Exclude:
|
20
20
|
- 'lib/cryptum/event/pane.rb'
|
21
|
-
- 'lib/cryptum/option.rb'
|
22
21
|
- 'lib/cryptum/ui/order_execute_details.rb'
|
23
22
|
|
24
|
-
# Offense count:
|
23
|
+
# Offense count: 24
|
24
|
+
# Configuration parameters: AllowedConstants.
|
25
|
+
Style/Documentation:
|
26
|
+
Enabled: false
|
27
|
+
|
28
|
+
# Offense count: 1
|
25
29
|
# This cop supports safe autocorrection (--autocorrect).
|
26
30
|
Style/RedundantAssignment:
|
27
31
|
Exclude:
|
data/lib/cryptum/version.rb
CHANGED