Sha256: 3f4350e74fb770a00e020546f2a6a28b348de8dcfdb1d5bc510fa7e80e382b7d
Contents?: true
Size: 1.03 KB
Versions: 5
Compression:
Stored size: 1.03 KB
Contents
## # DO NOT USE THIS API! # This file is temporary, to help make testing Punchblock easier. # THIS IS IMPERMANENT AND WILL DISAPPEAR module Punchblock class DSL def initialize(client, call_id, queue) # :nodoc: @client, @call_id, @queue = client, call_id, queue end def accept # :nodoc: write Command::Accept.new end def answer # :nodoc: write Command::Answer.new end def hangup # :nodoc: write Command::Hangup.new end def reject(reason = nil) # :nodoc: write Command::Reject.new(:reason => reason) end def redirect(dest) # :nodoc: write Command::Redirect.new(:to => dest) end def record(options = {}) write Component::Record.new(options) end def say(string, type = :text) # :nodoc: component = Component::Tropo::Say.new(type => string) write component component.complete_event.resource end def write(command) # :nodoc: @client.execute_command command, :call_id => @call_id, :async => false end end end
Version data entries
5 entries across 5 versions & 1 rubygems