class Adhearsion::Console::InteractiveController

Public Instance Methods

hangup(*args) click to toggle source
Calls superclass method Adhearsion::CallController#hangup
# File lib/adhearsion/console.rb, line 158
def hangup(*args)
  super
  exit
end
run() click to toggle source
# File lib/adhearsion/console.rb, line 152
def run
  logger.debug "Starting interactive controller"
  pry
  logger.debug "Interactive controller finished"
end