Sha256: f2b5cf6e4e521e3bad8455a6a361c33d54c6537b44c6dfcb9a915e6cbc68b68a
Contents?: true
Size: 389 Bytes
Versions: 17
Compression:
Stored size: 389 Bytes
Contents
require "fsr/app" module FSR module App class PreAnswer < Application # PreAnswer a call def initialize end def arguments [] end def sendmsg "call-command: execute\nexecute-app-name: %s\n\n" % [app_name] end def app_name 'pre_answer' end end register(:pre_answer, PreAnswer) end end
Version data entries
17 entries across 17 versions & 1 rubygems