Module: Bovem

Defined in:
lib/bovem/shell.rb,
lib/bovem/errors.rb,
lib/bovem/logger.rb,
lib/bovem/console.rb,
lib/bovem/version.rb,
lib/bovem/configuration.rb

Overview

This file is part of the bovem gem. Copyright (C) 2012 and above Shogun . Licensed under the MIT license, which can be found at http://www.opensource.org/licenses/mit-license.php.

Defined Under Namespace

Modules: Errors, Version Classes: Configuration, Console, Logger, Shell

Constant Summary collapse

TERM_COLORS =

List of valid terminal colors.

{
  :black => 0,
  :red => 1,
  :green => 2,
  :yellow => 3,
  :blue => 4,
  :magenta => 5,
  :cyan => 6,
  :white => 7,
  :default => 9,
}
TERM_EFFECTS =

List of valid terminal text effects.

{
  :reset => 0,
  :bright => 1,
  :italic => 3,
  :underline => 4,
  :blink => 5,
  :inverse => 7,
  :hide => 8,
}