Sha256: ffcbdedb8536d9f052b3c4389617c1cff1c66355fdda513085ea38ee42b6d07e

Contents?: true

Size: 618 Bytes

Versions: 1

Compression:

Stored size: 618 Bytes

Contents

# encoding: utf-8

module CLAide
  # Including this module into an exception class will ensure that when raised,
  # while running {Command.run}, only the message of the exception will be
  # shown to the user. Unless disabled with the `--verbose` flag.
  #
  # In addition, the message will be colored red, if {Command.colorize_output}
  # is set to `true`.
  #
  module InformativeError
    # @return [Numeric] The exist status code that should be used to terminate
    #         the program with. Defaults to `1`.
    #
    attr_accessor :exit_status

    def exit_status
      @exit_status ||= 1
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
claide-0.6.0 lib/claide/informative_error.rb