module EacRubyUtils::Speaker::Receiver
def error(_string)
def error(_string) raise_abstract_method(__method__) end
def fatal_error(string)
def fatal_error(string) error(string) ::Kernel.exit 1 end
def info(_string)
def info(_string) raise_abstract_method(__method__) end
def infom(_string)
def infom(_string) raise_abstract_method(__method__) end
def infov(*_args)
def infov(*_args) raise_abstract_method(__method__) end
def input(_question, _options = {})
- See: EacRubyUtils::Speaker::Sender.input -
def input(_question, _options = {}) raise_abstract_method(__method__) end
def out(_string = '')
def out(_string = '') raise_abstract_method(__method__) end
def puts(_string = '')
def puts(_string = '') raise_abstract_method(__method__) end
def success(_string)
def success(_string) raise_abstract_method(__method__) end
def title(_string)
def title(_string) raise_abstract_method(__method__) end
def warn(_string)
def warn(_string) raise_abstract_method(__method__) end