Class: Vivlio::Starter::CLI::SamovarCommands::ResizeCommand

Inherits:
Samovar::Command
  • Object
show all
Defined in:
lib/vivlio/starter/cli/samovar/resize_command.rb

Overview

resize コマンドの Samovar 実装

Instance Method Summary collapse

Instance Method Details

#callObject



40
41
42
43
44
45
46
47
48
49
# File 'lib/vivlio/starter/cli/samovar/resize_command.rb', line 40

def call
  preset = if options[:high]
             '高精細'
           elsif options[:low]
             '軽量'
           else
             '標準'
           end
  ResizeCommands.execute_resize_with_preset(preset, resolve_dir, merged_options)
end