If we follow the current instructions, we get NoMethodError: undefined method second for [1,2,3]:Array.
It seems we need to execute make install before make test-all.
Without make install, build/ruby are still old even if we execute make -j.
I think it's because build/ruby loads install/lib/libruby.3.2.dylib (in macOS), and make -j does not update it.
If we follow the current instructions, we get
NoMethodError: undefined method second for [1,2,3]:Array
. It seems we need to executemake install
beforemake test-all
.Without
make install
,build/ruby
are still old even if we executemake -j
. I think it's becausebuild/ruby
loadsinstall/lib/libruby.3.2.dylib
(in macOS), andmake -j
does not update it.