module Ey::Core::Cli::Helpers::Deprecated

Public Class Methods

included(base) click to toggle source

Module magic @api private

# File lib/ey-core/cli/helpers/deprecated.rb, line 27
def self.included(base)
  base.extend(ClassMethods)
end

Public Instance Methods

handle() click to toggle source

Terminate the deprecated command with a message

# File lib/ey-core/cli/helpers/deprecated.rb, line 32
def handle
  abort "This command is deprecated".red
end