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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 04851c91ceb009b391e4d88cd43136f058bfc729
4
- data.tar.gz: 5c27720d3277680199ad4a5e73984669c0803e14
3
+ metadata.gz: 10d3f193d5d683b9f8144a1928833764530c1c36
4
+ data.tar.gz: 809ecd4445b9770fec78812683dd1f3c381d03bd
5
5
  SHA512:
6
- metadata.gz: a00a3e02a77c97182063156e5d507d9208899246fadb180af9123da2e71eceb923f78239ba34387b457a7a240098591e1c90c2ae54f5d5c5ccea4a3b27880716
7
- data.tar.gz: 76be7111e297639752090580c56061f465345339e6bd8657c28828021443121f12e1f06b7c770ed26cefdd69010e7891dc3e5b42c60ae9d02759c88a081ca1e4
6
+ metadata.gz: 68d1f5c2dcca4a16124736832d40654ad3e543847db8afc4cd9bf121098767c9a11cd9b8e02e6980cab24c42873b8f732d8db914af66859c2c3b6f8c24b37df3
7
+ data.tar.gz: 88dcee94f0f3ea7371f7f4d4b6157da2e2496eb746fd9953363c7dcea2df4ca1dbfdd3cd9e1569210e1376b8a10cfae5454b9283059497ab2bf8020f5a67c3c0
@@ -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
@@ -4,8 +4,8 @@
4
4
  module Voicemail
5
5
  class Matcher
6
6
  def initialize(entered, actual)
7
- @entered = entered.try :to_s
8
- @actual = actual.try :to_s
7
+ @entered = entered.to_s
8
+ @actual = actual.to_s
9
9
  end
10
10
 
11
11
  def matches?
@@ -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.seconds, desc: "Timeout for all menus"
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
 
@@ -1,3 +1,3 @@
1
1
  module Voicemail
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
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.0
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-05-07 00:00:00.000000000 Z
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: