Module: Vivlio::Starter::CLI::EpubCommands

Defined in:
lib/vivlio/starter/cli/epub.rb

Overview

EPUB 生成コマンドモジュール

Defined Under Namespace

Classes: EpubCommandRunner

Class Method Summary collapse

Class Method Details

.execute_epub(options, target_output = nil) ⇒ Boolean

EPUB 生成を実行する

Parameters:

  • options (Hash)

    オプション

    • :verbose [Boolean] 詳細ログ出力

  • target_output (String, nil) (defaults to: nil)

    出力ファイル名(リネーム先)

Returns:

  • (Boolean)

    ビルド成功なら true



32
33
34
# File 'lib/vivlio/starter/cli/epub.rb', line 32

def execute_epub(options, target_output = nil)
  EpubCommandRunner.new(options, target_output).call
end