twilio_contactable 0.7.3 → 0.7.4
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.
- 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