Sha256: 82f039244b1a1642266b6486b31d0f43a5042e8ed12a7455dd321bf48e054429
Contents?: true
Size: 1.13 KB
Versions: 19
Compression:
Stored size: 1.13 KB
Contents
# frozen_string_literal: true require 'eac_ruby_utils/abstract_methods' module EacRubyUtils module Speaker module Receiver extend ::EacRubyUtils::AbstractMethods def error(_string) raise_abstract_method(__method__) end def fatal_error(string) error(string) ::Kernel.exit 1 # rubocop:disable Rails/Exit end # @see EacRubyUtils::Speaker::Sender.input def input(_question, _options = {}) raise_abstract_method(__method__) end def info(_string) raise_abstract_method(__method__) end def infom(_string) raise_abstract_method(__method__) end def infov(*_args) raise_abstract_method(__method__) end def out(_string = '') raise_abstract_method(__method__) end def puts(_string = '') raise_abstract_method(__method__) end def success(_string) raise_abstract_method(__method__) end def title(_string) raise_abstract_method(__method__) end def warn(_string) raise_abstract_method(__method__) end end end end
Version data entries
19 entries across 19 versions & 3 rubygems