Class: Pechkin::CLI

Inherits:
Object
  • Object
show all
Extended by:
CLIHelper
Defined in:
lib/pechkin/cli.rb

Overview

Command Line Parser Builder

Constant Summary collapse

PECHKIN_HTPASSWD_FILE =

Default file name for htpasswd file with auth credentials

'pechkin.htpasswd'.freeze

Instance Method Summary collapse

Methods included from CLIHelper

banner, opt, parse, parser_create, parser_create_default_opts, separator

Instance Method Details

#post_init(values) ⇒ Object



150
151
152
153
154
155
# File 'lib/pechkin/cli.rb', line 150

def post_init(values)
  default_htpasswd = File.join(values.config_file, PECHKIN_HTPASSWD_FILE)
  values.htpasswd ||= default_htpasswd

  values
end