diff options
author | Nobuyoshi Nakada <[email protected]> | 2020-10-27 13:42:52 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-10-27 16:12:45 +0900 |
commit | 3198e7abd70bd2af977f2bb6c967e9df8f91adb0 () | |
tree | 12265cda813be994c0aaa3a63c66a06f15e91354 /lib/webrick/httpproxy.rb | |
parent | acdb8933384da8fce1e8d8a96946eacfaa8897e2 (diff) |
Separate `send` into `public_send` and `__send__`
-rw-r--r-- | lib/webrick/httpproxy.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -115,7 +115,7 @@ module WEBrick proxy_auth(req, res) begin - self.send("do_#{req.request_method}", req, res) rescue NoMethodError raise HTTPStatus::MethodNotAllowed, "unsupported method `#{req.request_method}'." |