Nobuyoshi Nakada
Nobuyoshi Nakada
keg-only formulae need each configure option to find the headers and libraries.
Show global methods, which are defined as public in `Kernel`, like as defined in `Object`. https://bugs.ruby-lang.org/issues/19300 https://bugs.ruby-lang.org/issues/19304
Currently `rdoc-ref:REF@label` link is converted to `label at REF`, with the hardcoded word `at` and in the hardcoded order. For `doc/extension.ja.rdoc` written in Japanese in Ruby, this template needs to...
A few parts of the [about page] is not properly localized. [about page]: https://rubygems.org/pages/about ## Steps to Reproduce 1. Access the page above, with locales other than English. ## Expected...
ext/cgi/escape.c uses C99 features, which cannot use before ruby 3.0. * Designated Initializers for `html_escape_table` * Variable declaration after code in `optimized_escape_html` The latter is easy to make C89-compliant but...
The class of `CGI.escapeHTML` result is not consistent for escaped/non-escaped cases. ```ruby require 'cgi/escape' class S {"a"=>S, "&"=>String} ``` Probably, should be `String` always?