punchblock 2.5.1 → 2.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 85f605669ee36883cccb2b7d33830c63b1b5de9c
4
- data.tar.gz: 48f9adbd486d8605a48c8757854fb6ea2303fcaf
3
+ metadata.gz: cb567322334ceb90d6813db4059f8daa82d68e2e
4
+ data.tar.gz: b9b41cf838b4a5507ff24c0bed04967d9b9e6f69
5
5
  SHA512:
6
- metadata.gz: 40c3712d24b3c6eaf4d78526fda48b03e71895252a0efa86c23984b4bd34c6867d8c88885f8cd9ac79b5cd25c6ba673b2e2f75a2ae326e08215911052314e3d5
7
- data.tar.gz: 57c1421e0a20fc88ad2b2c41fb3eb70e6c9e658aa44c59daa1f13ba43dfa4e68c1e6a97b78e4180ced54bfed6ee11a106640f6f22bf5db11f64740fe91dca98f
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).
@@ -47,7 +47,7 @@ module Punchblock
47
47
  'final-timeout' => final_timeout,
48
48
  'max-duration' => max_duration,
49
49
  'start-beep' => start_beep,
50
- 'stop-beep' => start_beep,
50
+ 'stop-beep' => stop_beep,
51
51
  'start-paused' => start_paused,
52
52
  'direction' => direction,
53
53
  'mix' => mix
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module Punchblock
4
- VERSION = "2.5.1"
4
+ VERSION = "2.5.2"
5
5
  end
@@ -13,7 +13,7 @@ module Punchblock
13
13
  subject do
14
14
  Record.new :format => 'WAV',
15
15
  :start_beep => true,
16
- :stop_beep => true,
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 == true }
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 == true
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="true"
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 == true }
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.1
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-31 00:00:00.000000000 Z
13
+ date: 2014-04-03 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: nokogiri