module WEBrick
WEBrickโs ProcHandler only dispatches do_GET/do_POST/do_PUT; the writable-package API (REST CRUD, content writes) also needs DELETE and PATCH. AbstractServlet#service looks the do_<METHOD> up per request, so aliasing the missing verbs routes them to the same proc. rubocop:disable Style/OneClassPerFile