punchblock 2.5.1 → 2.5.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 +3 -0
- data/lib/punchblock/component/record.rb +1 -1
- data/lib/punchblock/version.rb +1 -1
- data/spec/punchblock/component/record_spec.rb +5 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cb567322334ceb90d6813db4059f8daa82d68e2e
|
|
4
|
+
data.tar.gz: b9b41cf838b4a5507ff24c0bed04967d9b9e6f69
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0fa93d60594fe156ed0edb84f3b59cb82943fe79be860770f2fb5a047d5189fdc6114b859a899f8819189dc66a162c5beaf1c0fe8b701bf4c16b80607c997e33
|
|
7
|
+
data.tar.gz: 9d67e526bec8927736dfe9f5178655f7deb9957643c6171bbb97702010234b8e26eb59226899d690bcac247c0bb819662888ff16adeacfcb30a3a59f1bfd9dc3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# [develop](https://github.com/adhearsion/punchblock)
|
|
2
2
|
|
|
3
|
+
# [v2.5.2](https://github.com/adhearsion/punchblock/compare/v2.5.1...v2.5.2) - [2014-04-03](https://rubygems.org/gems/punchblock/versions/2.5.2)
|
|
4
|
+
* Bugfix: No longer confound start and stop beeps on record commands (#220)
|
|
5
|
+
|
|
3
6
|
# [v2.5.1](https://github.com/adhearsion/punchblock/compare/v2.5.0...v2.5.1) - [2014-03-31](https://rubygems.org/gems/punchblock/versions/2.5.1)
|
|
4
7
|
* Bugfix: Ensure DTMF recognisers get shut down when finishing
|
|
5
8
|
* Bugfix: Hangup reason on Asterisk was `:hangup`, should be `:hungup`. See [the Rayo spec](http://xmpp.org/extensions/xep-0327.html#def-end-reason).
|
data/lib/punchblock/version.rb
CHANGED
|
@@ -13,7 +13,7 @@ module Punchblock
|
|
|
13
13
|
subject do
|
|
14
14
|
Record.new :format => 'WAV',
|
|
15
15
|
:start_beep => true,
|
|
16
|
-
:stop_beep =>
|
|
16
|
+
:stop_beep => false,
|
|
17
17
|
:start_paused => false,
|
|
18
18
|
:max_duration => 500000,
|
|
19
19
|
:initial_timeout => 10000,
|
|
@@ -24,7 +24,7 @@ module Punchblock
|
|
|
24
24
|
|
|
25
25
|
its(:format) { should be == 'WAV' }
|
|
26
26
|
its(:start_beep) { should be == true }
|
|
27
|
-
its(:stop_beep) { should be ==
|
|
27
|
+
its(:stop_beep) { should be == false }
|
|
28
28
|
its(:start_paused) { should be == false }
|
|
29
29
|
its(:max_duration) { should be == 500000 }
|
|
30
30
|
its(:initial_timeout) { should be == 10000 }
|
|
@@ -38,7 +38,7 @@ module Punchblock
|
|
|
38
38
|
new_instance.should be_instance_of described_class
|
|
39
39
|
new_instance.format.should be == 'WAV'
|
|
40
40
|
new_instance.start_beep.should be == true
|
|
41
|
-
new_instance.stop_beep.should be ==
|
|
41
|
+
new_instance.stop_beep.should be == false
|
|
42
42
|
new_instance.start_paused.should be == false
|
|
43
43
|
new_instance.max_duration.should be == 500000
|
|
44
44
|
new_instance.initial_timeout.should be == 10000
|
|
@@ -63,7 +63,7 @@ module Punchblock
|
|
|
63
63
|
<record xmlns="urn:xmpp:rayo:record:1"
|
|
64
64
|
format="WAV"
|
|
65
65
|
start-beep="true"
|
|
66
|
-
stop-beep="
|
|
66
|
+
stop-beep="false"
|
|
67
67
|
start-paused="false"
|
|
68
68
|
max-duration="500000"
|
|
69
69
|
initial-timeout="10000"
|
|
@@ -79,7 +79,7 @@ module Punchblock
|
|
|
79
79
|
|
|
80
80
|
its(:format) { should be == 'WAV' }
|
|
81
81
|
its(:start_beep) { should be == true }
|
|
82
|
-
its(:stop_beep) { should be ==
|
|
82
|
+
its(:stop_beep) { should be == false }
|
|
83
83
|
its(:start_paused) { should be == false }
|
|
84
84
|
its(:max_duration) { should be == 500000 }
|
|
85
85
|
its(:initial_timeout) { should be == 10000 }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: punchblock
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.5.
|
|
4
|
+
version: 2.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason Goecke
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2014-03
|
|
13
|
+
date: 2014-04-03 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: nokogiri
|