So I finally updated JRuby master to RG2 and want to offload a bunch of libraries as gems. Last time I looked at this was a couple months ago, so I had to review how MRI is doing it.
And what the heck...rbinstall.rb is not a lot of fun. As far as I can read it, rbinstall.rb reads the list of default gems out of defs/default_gems and reprocesses the associated specifications for RG to pick up. There seems to be a big functionality gap here. I attempted to just put specifications in the right location, but for a normal install they don't include version number (required for default gem stuff) and the filenames include version (appears to break default gems because it can't find a simple name. So...I think there's logic needed here to make it easy for an implementation fo specify a default gem. I'm willing to hack on it a bit, but wanted to get some input. * Is the configuration setup for default gems set in stone? It would be simpler if we could just use the installed specifications (version in filename but not in spec) since there is no other way to get that specification except for reprocessing. * Assuming the current format needs to stay, should this be a new command? gem install --default <x> or gem default <x> to install the given gem, reprocess specification, and put it in the right place? * Is there something I'm missing, or is the rbinstall.rb mechanism the only way to properly set up the default gemspecs right now? Thanks y'all. We're hoping to get this out in JRuby 1.7.5, perhaps in the next month or two. Short list of gems that we'll be using RG2 defaults for: rake, rdoc, psych, krypt, openssl, minitest, json. There may be others. - Charlie _______________________________________________ RubyGems-Developers mailing list http://rubyforge.org/projects/rubygems RubyGems-Developers@rubyforge.org http://rubyforge.org/mailman/listinfo/rubygems-developers