You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are dependencies on some native extensions not supported by JRuby (or supported, but not in the standard gems):
The dbm native extension library is not supported by JRuby, but it is a dependency in the stdlib tests section.
The pathname gem does not include native support for JRuby. We ship our own pure-Ruby pathname that has not been merged into the gem (JRuby support pathname#17).
rubocop-on-rbs gem has a dependency on zlib, which does not currently ship JRuby's extension (JRuby support zlib#38).
stackprof is a native extension specific to CRuby and not supported on JRuby.
Additionally, memory_profiler depends on CRuby-specific features and probably isn't useful on JRuby.
The following diff limits these gems to the ruby platform, but of course some tests fail when they are not available.
There are dependencies on some native extensions not supported by JRuby (or supported, but not in the standard gems):
dbm
native extension library is not supported by JRuby, but it is a dependency in the stdlib tests section.pathname
gem does not include native support for JRuby. We ship our own pure-Ruby pathname that has not been merged into the gem (JRuby support pathname#17).rubocop-on-rbs
gem has a dependency onzlib
, which does not currently ship JRuby's extension (JRuby support zlib#38).stackprof
is a native extension specific to CRuby and not supported on JRuby.Additionally,
memory_profiler
depends on CRuby-specific features and probably isn't useful on JRuby.The following diff limits these gems to the
ruby
platform, but of course some tests fail when they are not available.The text was updated successfully, but these errors were encountered: