punchblock 1.8.1 → 1.8.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/input.rb +1 -1
- data/lib/punchblock/version.rb +1 -1
- 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: 90ceeeef84eac2fec034a32edbc3fdd387c8d1f2
|
|
4
|
+
data.tar.gz: ca82c8ffbfa67c81369eb3146b5c4f333d443613
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 333ac7e2473e30d84f38f23493dba4c33d4422cb4725e7c5da3fd98c468ab170156922ad5f540936e871653a34993bf57dd9e227ebcf6b9091335ab27d5a1445
|
|
7
|
+
data.tar.gz: bb079007e70f4e27552354c8327c5d602961b7335c6a102ef51d106c2ca847d972bec2852a99f5623381c88e1c377ce88d74e93cba5b49ec4cc88719e1f24041
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# [develop](https://github.com/adhearsion/punchblock)
|
|
2
2
|
|
|
3
|
+
# [v1.8.2](https://github.com/adhearsion/punchblock/compare/v1.8.1...v1.8.2) - [2013-04-19](https://rubygems.org/gems/punchblock/versions/1.8.2)
|
|
4
|
+
* Bugfix: Input initial timeout was being set as a float rather than an integer
|
|
5
|
+
|
|
3
6
|
# [v1.8.1](https://github.com/adhearsion/punchblock/compare/v1.8.0...v1.8.1) - [2013-03-25](https://rubygems.org/gems/punchblock/versions/1.8.1)
|
|
4
7
|
* Bugfix: FreeSWITCH was requiring a from attribute on a dial command
|
|
5
8
|
* Bugfix: Asterisk translator now properly checks for existence of the recordings directory
|
|
@@ -132,7 +132,7 @@ module Punchblock
|
|
|
132
132
|
# @param [Integer] timeout Indicates the amount of time preceding input which may expire before a timeout is triggered.
|
|
133
133
|
#
|
|
134
134
|
def initial_timeout=(other)
|
|
135
|
-
write_attr :'initial-timeout', other, :
|
|
135
|
+
write_attr :'initial-timeout', other, :to_i
|
|
136
136
|
end
|
|
137
137
|
|
|
138
138
|
##
|
data/lib/punchblock/version.rb
CHANGED
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: 1.8.
|
|
4
|
+
version: 1.8.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: 2013-
|
|
13
|
+
date: 2013-04-19 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: niceogiri
|