Module: Githuh::CLI

Defined in:
lib/githuh.rb,
lib/githuh/cli/launcher.rb,
lib/githuh/cli/commands/base.rb,
lib/githuh/cli/commands/version.rb,
lib/githuh/cli/commands/repo/list.rb,
lib/githuh/cli/commands/user/info.rb,
lib/githuh/cli/commands/issue/export.rb,
lib/githuh/cli/commands/issue/export_paginated.rb

Defined Under Namespace

Modules: Commands Classes: Launcher

Constant Summary collapse

<<~BANNER

  #{'Githuh CLI'.bold.yellow} #{::Githuh::VERSION.bold.green} — API client for Github.com.
  #{'© 2020 Konstantin Gredeskoul, All rights reserved.  MIT License.'.cyan}

BANNER
BOX_OPTIONS =
{
  padding: 1,
  align:   :left,
  title:   { top_center: "#{Githuh::BANNER}" },
  width:   80,
  style:   {
    bg:     :yellow,
    fg:     :black,
    border: {
      fg: :red,
      bg: :yellow
    }
  }
}.freeze