Class: Command::Inspect
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from CommandBase
execute!, #force_change_settings_function, help, #hook_call, #load_local_settings, #tagname_to_ids
Constructor Details
Returns a new instance of Inspect.
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# File 'lib/command/inspect.rb', line 18
def initialize
super("[<target> ...]")
@opt.separator <<-EOS
・引数を指定しなかった場合は直前に変換した小説の状態調査状況ログを表示します。
・小説を指定した場合はその小説のログを表示します。
・narou setting convert.inspect=true とすれば変換時に常に表示されるようになります。
Examples:
narou inspect # 直前の変換時のログを表示
narou inspect 6 # ログを表示したい小説を指定する
EOS
end
|
Class Method Details
.oneline_help ⇒ Object
14
15
16
|
# File 'lib/command/inspect.rb', line 14
def self.oneline_help
"小説状態の調査状況ログを表示します"
end
|
Instance Method Details
#display_log(data) ⇒ Object
54
55
56
57
58
|
# File 'lib/command/inspect.rb', line 54
def display_log(data)
puts "(#{data["title"]} の小説状態調査状況ログ)"
novel_setting = NovelSetting.load(data["id"], false, false)
puts Inspector.read_messages(novel_setting) || "調査ログがまだ無いようです"
end
|