twilio_contactable 0.7.3 → 0.7.4
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/controller.rb +2 -0
- data/test/twilio_contactable_controller_test.rb +4 -0
- data/twilio_contactable.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.7.
|
1
|
+
0.7.4
|
data/lib/controller.rb
CHANGED
@@ -50,6 +50,8 @@ module TwilioContactable
|
|
50
50
|
).tap do |gather|
|
51
51
|
gather.addSay "Please type the numbers that appear on your screen, followed by the pound sign"
|
52
52
|
end
|
53
|
+
response.addSay "Thank you, please return to the website and continue"
|
54
|
+
response.addPause
|
53
55
|
end.respond)
|
54
56
|
end
|
55
57
|
|
@@ -89,6 +89,10 @@ class TwilioContactableControllerTest < ActionController::TestCase
|
|
89
89
|
Please type the numbers that appear on your screen, followed by the pound sign
|
90
90
|
</say>
|
91
91
|
</gather>
|
92
|
+
<say>
|
93
|
+
Thank you, please return to the website and continue
|
94
|
+
</say>
|
95
|
+
<pause></pause>
|
92
96
|
</response>
|
93
97
|
}, @response.body
|
94
98
|
end
|
data/twilio_contactable.gemspec
CHANGED