class Escalator::Command

Constants

DEFAULT_OPTIONS
DEFAULT_ROOT_OPTIONS

Public Class Methods

options() click to toggle source
# File lib/escalator/command.rb, line 36
def self.options
  if root_command?
    DEFAULT_ROOT_OPTIONS + DEFAULT_OPTIONS
  else
    DEFAULT_OPTIONS
  end
end