Sha256: 167bd6fdb266c0cf29209d844b6939ee1d52893521a9093bbe2f2ca770e668c7
Contents?: true
Size: 1.72 KB
Versions: 32
Compression:
Stored size: 1.72 KB
Contents
# -*- coding: utf-8 -*- # # Copyright 2013 whiteleaf. All rights reserved. # require "fileutils" require_relative "../downloader" require_relative "../inspector" require_relative "../novelsetting" require_relative "../inventory" module Command class Inspect < CommandBase def self.oneline_help "小説状態の調査状況ログを表示します" end def initialize super("[<target> ...]") @opt.separator <<-EOS ・引数を指定しなかった場合は直前に変換した小説の状態調査状況ログを表示します。 ・小説を指定した場合はその小説のログを表示します。 ・narou setting convert.inspect=true とすれば変換時に常に表示されるようになります。 Examples: narou inspect # 直前の変換時のログを表示 narou inspect 6 # ログを表示したい小説を指定する EOS end def execute(argv) super if argv.empty? latest_id = Inventory.load("latest_convert")["id"] if latest_id data = Downloader.get_data_by_target(latest_id) display_log(data) end return end tagname_to_ids(argv) argv.each_with_index do |target, i| Helper.print_horizontal_rule if i > 0 data = Downloader.get_data_by_target(target) unless data error "#{target} は存在しません" next end display_log(data) end end def display_log(data) puts "(#{data["title"]} の小説状態調査状況ログ)" novel_setting = NovelSetting.load(data["id"], false, false) puts Inspector.read_messages(novel_setting) || "調査ログがまだ無いようです" end end end
Version data entries
32 entries across 32 versions & 1 rubygems