class Thor::Options

def normalize_switch(arg)


Check if the given argument is actually a shortcut.
def normalize_switch(arg)
  @shorts.key?(arg) ? @shorts[arg] : arg
end