Class: I18nFlow::CLI::HelpCommand

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

Constant Summary collapse

TEXT =
"Manage translation status in yaml file\n\nUsage:\ni18n_flow COMMAND [args...]\ni18n_flow [options]\n\nOptions:\n-v, --version    Show version\n-h               Show help\n\nCommands:\nlint       Validate files\nformat     Format and correct errors\nsearch     Search contents and keys\ncopy       Copy translations and mark as todo\nsplit      Split a file into proper-sized files\nversion    Show version\nhelp       Show help\n"

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