class Guard::Jobs::PryWrapper

def _create_command_aliases


first letter of the command.
`scope`, `notification`, `pause`, `exit` and `quit`, which will be the
Creates command aliases for the commands: `help`, `reload`, `change`,
def _create_command_aliases
  SHORTCUTS.each do |command, shortcut|
    _pry_commands.alias_command shortcut, command.to_s
  end
end