Class: Cliqr::Command::BaseCommand Private

Inherits:
Object
  • Object
show all
Defined in:
lib/cliqr/command/base_command.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Base class for all commands to extend from

Direct Known Subclasses

ShellCommand

Instance Method Summary collapse

Instance Method Details

#execute(_context) ⇒ Integer

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Execute the command

Returns:

  • (Integer)

    Exit status of the command execution



12
13
14
# File 'lib/cliqr/command/base_command.rb', line 12

def execute(_context)
  0
end