This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Loading…
Labels












Will investigate this weekend.
JRuby does not support extensions, to build a jruby gem, simply:
spec.extensions = nil
spec.platform = 'java'
and you'll get a (pure-ruby) jruby compatible algorithms-0.2.0-java.gem
Any way to automate this so jruby users get the extension-less gem while everyone else gets extensions?
I think you have to generate separate gems, but you can put if RUBY_PLATFORM =~ /java/ checks in the gemspec so jruby -S gem build algorithms.gemspec builds the jruby version.
If I generate the separate gem, will pushing that onto rubyforge automatically result in the selection choices when installing gems?
If you set .platform='java', jgem and gem will pick and install the appropriate gems correctly.