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):
dbmnative extension library is not supported by JRuby, but it is a dependency in the stdlib tests section.pathnamegem 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-rbsgem has a dependency onzlib, which does not currently ship JRuby's extension (JRuby support zlib#38).stackprofis a native extension specific to CRuby and not supported on JRuby.Additionally,
memory_profilerdepends on CRuby-specific features and probably isn't useful on JRuby.The following diff limits these gems to the
rubyplatform, but of course some tests fail when they are not available.