ib-api 972.4 → 972.5
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/VERSION +1 -1
- data/lib/ib/connection.rb +1 -1
- data/lib/ib/support.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0beb8b8f1edf85049336ec063de7fcaa5c0c0e1dae3e6f813131f997718892ad
|
4
|
+
data.tar.gz: c2178ec4cdff3a6d90c7ef0c1cd68dab1620ce57ab2feba811873a113d1a6536
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1b6919bbc9adf1044b602bb64da8b67f0bfe2ec54c354a6a6465e2bf7dfa49355315029c0bba3ae682b2226dea3002d74a0e3ba7b02834de7217d22ec2f2461
|
7
|
+
data.tar.gz: 8e3bc0babb443933c0b843884a2ec76ceb2fb0df7ea89aad1912c68b672c217dd56b4a8ea90ed350b83660f838895853f3aadc9e1fb2c5baf2ddc029c5e7fc22
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
972.
|
1
|
+
972.5
|
data/lib/ib/connection.rb
CHANGED
@@ -418,7 +418,7 @@ module IB
|
|
418
418
|
@subscribe_lock.synchronize do
|
419
419
|
subscribers[msg.class].each { |_, subscriber| subscriber.call(msg) }
|
420
420
|
end
|
421
|
-
logger.
|
421
|
+
logger.info { "No subscribers for message #{msg.class}!" } if subscribers[msg.class].empty?
|
422
422
|
|
423
423
|
# Collect all received messages into a @received Hash
|
424
424
|
if @received
|
data/lib/ib/support.rb
CHANGED
@@ -28,13 +28,13 @@ module IBSupport
|
|
28
28
|
|
29
29
|
## Values -1 and below indicate: Not computed (TickOptionComputation)
|
30
30
|
def read_decimal_limit_1
|
31
|
-
i=
|
31
|
+
i= read_float
|
32
32
|
i <= -1 ? nil : i
|
33
33
|
end
|
34
34
|
|
35
35
|
## Values -2 and below indicate: Not computed (TickOptionComputation)
|
36
36
|
def read_decimal_limit_2
|
37
|
-
i=
|
37
|
+
i= read_float
|
38
38
|
i <= -2 ? nil : i
|
39
39
|
end
|
40
40
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ib-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '972.
|
4
|
+
version: '972.5'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hartmut Bischoff
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-06-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|