class Gemstash::CLI::Error

Thor::Error for the CLI, which colors the message red.

Public Class Methods

new(cli, message) click to toggle source
Calls superclass method
# File lib/gemstash/cli.rb, line 19
def initialize(cli, message)
  super(cli.set_color(message, :red))
end