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
It seems this gem does not support JRuby now because Gem::Platform.local.cpu&os only respond java & universal.
I would like to commit a PR to support JRuby by using RbConfig::CONFIG instead of Gem::Platform and I want to make sure if this project would like to add support of JRuby?
Thanks,
The text was updated successfully, but these errors were encountered:
I'm open to adding support to JRuby, but I am hesitant to add much complexity for that support. Let's discuss what approach you have in mind!
I see that I can find the architecture, at least on some platforms, in RbConfig::CONFIG["target_cpu"] when running JRuby. But what will you do with that information? This project currently ships separate gem files for each architecture, is your intention to ship all the executables in the JRuby gem package (and then choose the executable at runtime or install time)?
It seems this gem does not support JRuby now because
Gem::Platform.local.cpu&os
only respondjava
&universal
.I would like to commit a PR to support JRuby by using
RbConfig::CONFIG
instead ofGem::Platform
and I want to make sure if this project would like to add support of JRuby?Thanks,
The text was updated successfully, but these errors were encountered: