voicemail 1.1.0 → 1.1.1
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 +7 -2
- data/lib/voicemail/matcher.rb +2 -2
- data/lib/voicemail/plugin.rb +1 -1
- data/lib/voicemail/version.rb +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10d3f193d5d683b9f8144a1928833764530c1c36
|
4
|
+
data.tar.gz: 809ecd4445b9770fec78812683dd1f3c381d03bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68d1f5c2dcca4a16124736832d40654ad3e543847db8afc4cd9bf121098767c9a11cd9b8e02e6980cab24c42873b8f732d8db914af66859c2c3b6f8c24b37df3
|
7
|
+
data.tar.gz: 88dcee94f0f3ea7371f7f4d4b6157da2e2496eb746fd9953363c7dcea2df4ca1dbfdd3cd9e1569210e1376b8a10cfae5454b9283059497ab2bf8020f5a67c3c0
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1
|
-
#develop
|
1
|
+
# develop
|
2
|
+
|
3
|
+
# v1.1.1 - 2014-06-10
|
4
|
+
* BUG - Remove implicit dependency on loading activesupport
|
5
|
+
|
6
|
+
# v1.1.0 - 2014-05-07
|
2
7
|
* CHANGE - Menu intros are one message, making them skippable.
|
3
8
|
* FEATURE - Personalized voicemail greetings can be deleted
|
4
9
|
* FEATURE - Add message to play after recording a voicemail is complete
|
@@ -7,7 +12,7 @@
|
|
7
12
|
* FEATURE - Allow messages to be skipped
|
8
13
|
* BUG - Resolve issue where caller presses the pound key twice in succession
|
9
14
|
|
10
|
-
#v1.0.0 - 2014-01-02
|
15
|
+
# v1.0.0 - 2014-01-02
|
11
16
|
* FEATURE - Optional per-mailbox override of default recording hash
|
12
17
|
* FEATURE - Optional rerecording of voicemail messages
|
13
18
|
* FEATURE - I18n numeric methods
|
data/lib/voicemail/matcher.rb
CHANGED
data/lib/voicemail/plugin.rb
CHANGED
@@ -13,7 +13,7 @@ module Voicemail
|
|
13
13
|
config :voicemail do
|
14
14
|
use_i18n false, desc: "Whether to use i18n for voice prompts"
|
15
15
|
prompt_timeout 5, desc: "Timeout for the various prompts, in seconds"
|
16
|
-
menu_timeout 15
|
16
|
+
menu_timeout 15, desc: "Timeout for all menus"
|
17
17
|
menu_tries 3, desc: "Tries to get matching input for all menus"
|
18
18
|
datetime_format "Q 'digits/at' IMp", desc: "Format to use for message date and time formatting"
|
19
19
|
|
data/lib/voicemail/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: voicemail
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luca Pradovera
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-06-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: adhearsion
|
@@ -221,4 +221,3 @@ test_files:
|
|
221
221
|
- spec/voicemail/localization_loader_spec.rb
|
222
222
|
- spec/voicemail/storage_pstore_spec.rb
|
223
223
|
- spec/voicemail/storage_spec.rb
|
224
|
-
has_rdoc:
|