Class: GDK::Command::Run Deprecated

Inherits:
BaseCommand show all
Defined in:
lib/gdk/command/run.rb

Overview

Deprecated.

GDK run command has been deprecated should be removed in a future update

Handles ‘gdk run` command execution

Instance Attribute Summary

Attributes inherited from BaseCommand

#stderr, #stdout

Instance Method Summary collapse

Methods inherited from BaseCommand

#config, #display_help_message, #help, #initialize, #print_help, #print_ready_message, #ready_messages, validate_config?

Constructor Details

This class inherits a constructor from GDK::Command::BaseCommand

Instance Method Details

#run(_args = []) ⇒ Object



9
10
11
12
13
14
15
# File 'lib/gdk/command/run.rb', line 9

def run(_args = [])
  abort <<~GDK_RUN_NO_MORE
    'gdk run' is no longer available; see doc/runit.md.

    Use 'gdk start', 'gdk stop', and 'gdk tail' instead.
  GDK_RUN_NO_MORE
end