Sha256: 6ce6c3a5700eb3eb84d65683eee30569da0665834ccc1068b6f5f2e3f0a951bc

Contents?: true

Size: 620 Bytes

Versions: 1

Compression:

Stored size: 620 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.5.0 lib/claide/informative_error.rb