Class: Gemstash::CLI::Error

Inherits:
Thor::Error
  • Object
show all
Defined in:
lib/gemstash/cli.rb

Overview

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

Instance Method Summary collapse

Constructor Details

#initialize(cli, message) ⇒ Error

Returns a new instance of Error.



19
20
21
# File 'lib/gemstash/cli.rb', line 19

def initialize(cli, message)
  super(cli.set_color(message, :red))
end