Module: Hawknee
- Defined in:
- lib/hawknee.rb,
lib/hawknee/cli.rb,
lib/hawknee/colors.rb,
lib/hawknee/engine.rb,
lib/hawknee/version.rb,
app/controllers/hawknee/main_controller.rb,
app/controllers/hawknee/application_controller.rb,
lib/generators/hawknee/install/install_generator.rb
Defined Under Namespace
Modules: Helpers, Version Classes: ApplicationController, Cli, Engine, InstallGenerator, MainController
Constant Summary collapse
- Effects =
Effects for lines in terminal
{ :clear => "\e[0m", :bold => "\e[1m", :underline => "\e[4m", :blink => "\e[5m", :reverse => "\e[7m", :hide => "\e[8m", }
- Colors =
Colors for lines in terminal
{ :black => "\e[30m", :red => "\e[31m", :green => "\e[32m", :yellow => "\e[33m", :blue => "\e[34m", :magenta => "\e[35m", :cyan => "\e[36m", :white => "\e[37m", :default => "\e[39m", :on_black => "\e[40m", :on_red => "\e[41m", :on_green => "\e[42m", :on_yellow => "\e[43m", :on_blue => "\e[44m", :on_magenta => "\e[45m", :on_cyan => "\e[46m", :on_white => "\e[47m", :on_default => "\e[49m", }