cryptum 0.0.353 → 0.0.355
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/README.md +12 -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: 1ab91b097eec16498c962d3f1889b7a8dffd0cf763c38f8624edaa1a22e9ac2a
|
4
|
+
data.tar.gz: f5c8656a6be72a98473bcbd81cd8bd37d9de6541601dc0f02850b8c10b95e4d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56ef45d98cb73bb795f5c3c91815ec8a07feb1851dd1dc6f3d3a4d5caf63be88efc2a02f7b4418a84d2830a4cd3eabeb29dca0c2197b90b06114478a9834b4b1
|
7
|
+
data.tar.gz: de5681c4025bc2a6c858063f2ea73018e3e20359265f946ac72dfc063ec4ae8c402c2a2f678c30daee65bfbf7573ec681b9d0ea7ae9d9d0241b858063a031362
|
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/README.md
CHANGED
@@ -43,6 +43,18 @@ $ cp ~/cryptum/etc/coinbase_pro.yaml.EXAMPLE \
|
|
43
43
|
$ vi ~/cryptum/etc/coinbase_pro.yaml
|
44
44
|
```
|
45
45
|
|
46
|
+
### **To Take Advantage of More Advanced AI Features** ###
|
47
|
+
- Copy open_ai.yaml.EXAMPLE to the Local Session Folder
|
48
|
+
```
|
49
|
+
$ cp ~/cryptum/etc/open_ai.yaml.EXAMPLE \
|
50
|
+
~/cryptum/etc/open_ai.yaml
|
51
|
+
```
|
52
|
+
|
53
|
+
- Add Your Bearer Token to ~/cryptum/etc/open_ai.yaml:
|
54
|
+
```
|
55
|
+
$ vi ~/cryptum/etc/open_ai.yaml
|
56
|
+
```
|
57
|
+
|
46
58
|
|
47
59
|
### **Usage** ###
|
48
60
|
|
data/lib/cryptum/version.rb
CHANGED