Class: I18nFlow::CLI::HelpCommand

Inherits:
CommandBase show all
Defined in:
lib/i18n_flow/cli/help_command.rb

Constant Summary collapse

TEXT =
<<-HELP
Manage translation status in yaml file

Usage:
i18n_flow COMMAND [args...]
i18n_flow [options]

Options:
-v, --version    Show version
-h               Show help

Commands:
lint       Validate files
format     Format and correct errors
search     Search contents and keys
copy       Copy translations and mark as todo
split      Split a file into proper-sized files
version    Show version
help       Show help
HELP

Instance Method Summary collapse

Methods inherited from CommandBase

#color_enabled?, #exit_with_message, #initialize

Constructor Details

This class inherits a constructor from I18nFlow::CLI::CommandBase

Instance Method Details

#invoke!Object



26
27
28
# File 'lib/i18n_flow/cli/help_command.rb', line 26

def invoke!
  puts TEXT
end