Bug #21541
openmake install is failing due to using rdoc repo
Description
Currently, ruby-dev-builder & ruby-loco are failing due to https://github.com/ruby/ruby/commit/8f6f9e88c70bbae, which changed the rdoc 'bundled gem' install from using a released gem to the repo. This results in an invalid rdoc installation.
RDoc contains *.ry and *.kpeg source files that need to be 'compiled' into *.rb files with racc and kpeg.
These *.rb files are not contained in the rdoc repo.
One possible change would be to have rdoc include the compiled *.rb files in its repo. Puma has a similar issue with ragel files. A GHA workflow (https://github.com/puma/puma/blob/master/.github/workflows/ragel.yml) checks that the compiled *.c file matches its respective *.rl source file.
Otherwise, a bit of code would be required in Ruby (and install of kpeg), or, rdoc must be installed from a released gem.