Class: Command::Help

Inherits:
CommandBase show all
Defined in:
lib/command/help.rb

Constant Summary collapse

HEADER =
"Narou.rb ― 小説家になろうダウンローダ&縦書き用整形スクリプト"

Instance Attribute Summary

Attributes inherited from CommandBase

#stream_io

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CommandBase

#disable_logging, #display_help!, #execute!, execute!, #force_change_settings_function, help, #hook_call, #initialize, #load_local_settings, #tagname_to_ids

Constructor Details

This class inherits a constructor from Command::CommandBase

Class Method Details

.oneline_helpObject



11
12
13
# File 'lib/command/help.rb', line 11

def self.oneline_help
  "このヘルプを表示します"
end

Instance Method Details

#display_helpObject



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/command/help.rb', line 24

def display_help
  stream_io.puts(<<~HELP.termcolor)
    #{HEADER}

     <bold><green>Usage: narou &lt;command&gt; [arguments...] [options...]
                  [--no-color] [--multiple] [--time] [--backtrace]</green></bold>

     コマンドの簡単な説明:
  HELP
  cmd_list = Command.get_list
  cmd_list.each do |key, command|
    oneline = command.oneline_help.split("\n")
    stream_io.puts "   <bold><green>#{key.ljust(12)}</green></bold> #{oneline.shift}".termcolor
    oneline.each do |h|
      stream_io.puts " " * 16 + h
    end
  end
  stream_io.puts(<<-HELP.termcolor)

  各コマンドの詳細は narou &lt;command&gt; -h を参照してください。
  各コマンドは先頭の一文字か二文字でも指定できます。
  (e.g. `narou <bold><yellow>d</yellow></bold> n4259s', `narou <bold><yellow>fr</yellow></bold> musyoku')

  <underline><bold>Global Options:</bold></underline>
--no-color   カラー表示を無効にする
--multiple   引数の区切りにスペースの他に","も使えるようにする
--time       実行時間表示
--backtrace  エラー発生時詳細情報を表示
  HELP
end

#display_help_first_timeObject



55
56
57
58
59
60
61
62
63
64
# File 'lib/command/help.rb', line 55

def display_help_first_time
  stream_io.puts(<<~HELP.termcolor)
    #{HEADER}

     <bold><green>Usage: narou init</green></bold>

       まだこのフォルダは初期化されていません。
       <bold><yellow>narou init</yellow></bold> コマンドを実行して初期化を行いましょう。
  HELP
end

#execute(_argv) ⇒ Object



15
16
17
18
19
20
21
22
# File 'lib/command/help.rb', line 15

def execute(_argv)
  disable_logging
  if Narou.already_init?
    display_help
  else
    display_help_first_time
  end
end