signalwire 2.3.1 → 2.3.2
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/CHANGELOG.md +4 -0
- data/lib/signalwire/relay/calling/component/detect.rb +5 -5
- data/lib/signalwire/version.rb +1 -1
- 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: 71faeeb60f034a4e12e5389161bd930b76be463ab5bbff6d4c8cc34732d66f2c
|
|
4
|
+
data.tar.gz: 14661cf2afbe90123ad580a96bdf9e25ee77a1b5ea77caa6abb49515beb3f53f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8043e8fd96285a6bd4e4263c8825901f52e85123566fa588860f5ecf178d588cb1fb0c420d3e67701df99cf032875b93ea74e42c37c30395256e4fe10ce1ae38
|
|
7
|
+
data.tar.gz: 2dd59c3fca26721d5060a1c12774e58353394c449521c2359a94b05574b4da6ea85c0c2fa2c321aa15051e2778bfadc178971dbd81abb9703914b39f7f054448
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [2.3.2] - 2020-01-29
|
|
9
|
+
### Fixed
|
|
10
|
+
- Correctly return AMD result in Relay.
|
|
11
|
+
|
|
8
12
|
## [2.3.1] - 2019-12-20
|
|
9
13
|
### Changed
|
|
10
14
|
- Keepalive now uses `blade.ping`.
|
|
@@ -44,7 +44,7 @@ module Signalwire::Relay::Calling
|
|
|
44
44
|
return complete(event) if FINISHED_EVENTS.include?(@state) || @type == Relay::CallDetectType::DIGIT
|
|
45
45
|
|
|
46
46
|
if has_blocker?
|
|
47
|
-
@received_events << @state
|
|
47
|
+
@received_events << @state
|
|
48
48
|
return
|
|
49
49
|
end
|
|
50
50
|
|
|
@@ -56,7 +56,7 @@ module Signalwire::Relay::Calling
|
|
|
56
56
|
@waiting_for_ready = true
|
|
57
57
|
return
|
|
58
58
|
end
|
|
59
|
-
|
|
59
|
+
|
|
60
60
|
check_for_waiting_events
|
|
61
61
|
broadcast_event(event)
|
|
62
62
|
end
|
|
@@ -71,9 +71,9 @@ module Signalwire::Relay::Calling
|
|
|
71
71
|
def complete(event)
|
|
72
72
|
@completed = true
|
|
73
73
|
@event = event
|
|
74
|
-
|
|
74
|
+
|
|
75
75
|
if has_blocker?
|
|
76
|
-
@successful =
|
|
76
|
+
@successful = @state == Relay::CallDetectState::FINISHED
|
|
77
77
|
|
|
78
78
|
if MACHINE_EVENTS.include?(@state)
|
|
79
79
|
@result = Relay::CallDetectState::MACHINE
|
|
@@ -87,4 +87,4 @@ module Signalwire::Relay::Calling
|
|
|
87
87
|
end
|
|
88
88
|
end
|
|
89
89
|
end
|
|
90
|
-
end
|
|
90
|
+
end
|
data/lib/signalwire/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: signalwire
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- SignalWire Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-01-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|