This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[cloudvox] rrodriguez:mbp-robin >cap staging deploy | |
* executing `staging' | |
triggering start callbacks for `deploy' | |
* executing `multistage:ensure' | |
* executing `deploy' | |
triggering before callbacks for `deploy' | |
* executing `campfire:ifbyphone:notify_start' | |
* executing "cat /srv/www/cloudvox/current/REVISION" | |
servers: ["cv03a01.cloudvox.com"] | |
[cv03a01.cloudvox.com] executing command |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"name":"speak","phrase":"Thanks for calling!"}, | |
{"name":"Silence","silencerequired":"1","iterations":"2"}, | |
{"name":"speak","phrase":"silence detection worked"}, | |
{"name":"dial","destination":"8635296493"}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"name":"speak","phrase":"Thanks for calling!"}, | |
{"name":"Silence","silencerequired":"500","iterations":"2"}, | |
{"name":"speak","phrase":"silence detection worked"}, | |
{"name":"dial","destination":"8635296493"}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"name":"Dial","destination":"2503564725","timeout":"20","url":"https://gist.github.com/raw/670972/6acda495379b193a3cbe2ea791287974331f1696/gistfile1.json"} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"name":"Dial","destination":"2503348888","timeout":"20","url":"https://gist.github.com/raw/670972/6acda495379b193a3cbe2ea791287974331f1696/gistfile1.json"} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"name":"Dial","destination":"2504238366","timeout":"20","url":"https://gist.github.com/raw/670972/6acda495379b193a3cbe2ea791287974331f1696/gistfile1.json"} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"name":"speak","phrase":"This is a <break time='4500ms' /> 4.5 second pause."}, | |
{"name":"playback","filename":"lots-o-monkeys"}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"name":"Playback","filename":"vm-theperson"}, | |
{"name":"Playback","filename":"vm-theperson"}, | |
{"name":"Playback","filename":"vm-theperson"}, | |
{"name":"Playback","filename":"vm-theperson"}, | |
{"name":"Playback","filename":"vm-theperson"}, | |
{"name":"Playback","filename":"vm-theperson"}, | |
{"name":"Playback","filename":"vm-theperson"}, | |
{"name":"Playback","filename":"vm-theperson"} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Class | |
def initialize foo, bar | |
@foo = foo | |
@bar = bar | |
end | |
end | |
class SubClass < Class | |
def initialize foo, bar, awk | |
super foo, bar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'sinatra' | |
require 'lib/sms' | |
require 'thread' | |
SECONDS_PER_MESSAGE = 1.0 | |
queue = Queue.new | |
consumer = Thread.new do |
NewerOlder