Would this problem be avoided if mini_portile2 declared an explicit dependency on net-http? If it would be helpful I'm happy to cut a new release of mini_portile with that change. mdalessio (Mike Dalessio)
I wonder if `-Werror` is being set implicitly? I'm seeing similar failures up and down my CI pipelines for the gems mentioned by @Earlopain, in addition to libxml2 compilation in Nokogiri's upstream integration testing.mdalessio (Mike Dalessio)
> > Is there a real-world use case to make a String with a pointer allocated outside of xmalloc? > ... Yes, it would be easiest for Nokogiri if non-xmalloc string pointers were supported, but if it was decided to not support this, I wou...mdalessio (Mike Dalessio)
argument (https://github.com/ruby/rdoc/pull/1222) It is necessary for ClassModule's instance variable @superclass to always be a String (or nil) so that the class can be saved with `#marshal_dump` and loaded with `#marshal_load`. Howev...mdalessio (Mike Dalessio)
(https://github.com/ruby/rdoc/pull/1219) There are three distinct ranges of symbols in ASCII: - the range below "A", 0..64 in decimal - the range between "Z" and "a", 91..96 in decimal - the range above "z", 123..127 in decimal With t...mdalessio (Mike Dalessio)
This would likely be useful in Nokogiri as well. The two key places I have in mind are 1. returning a large serialization string generated within libxml2 (which is configured to use `ruby_xmalloc` by default) 2. assembling an HTML5-c...mdalessio (Mike Dalessio)
`--embed-mixins` (https://github.com/ruby/rdoc/pull/842) * Embed mixed-in methods and constants with `--embed-mixins` When `--embed-mixins` option is set: - methods from an `extend`ed module are documented as singleton methods - attrs...mdalessio (Mike Dalessio)