We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When indexing the ~730k gems on rubygems.org, the latest_specs.4.8.gz file contains a gem [nil, nil, nil]
irb code:
irb(main):049:0> require 'zlib' irb(main):050:0> content = Marshal.load(Zlib::GzipReader.open('./latest_specs.4.8.gz').read) irb(main):051:0> content.each do |elt| irb(main):052:0> puts elt.inspect if elt[0].nil? irb(main):053:0> end
output:
[nil, nil, nil]
The text was updated successfully, but these errors were encountered:
Hi,
Can you try with rubygems.org/latest_specs.4.8.gz, this file is directly downloading from selected source (rubygems by default).
Regards
Sorry, something went wrong.
Hey Pierre,
Using rubygems' specs files instead of those created by gemirro index resolves this issue.
gemirro index
Best, Max
Sorry I'm not able to reproduce, maybe there are missing check in this method: https://github.com/PierreRambaud/gemirro/blob/master/lib/gemirro/indexer.rb#L181
If you have any idea? Regards
No branches or pull requests
When indexing the ~730k gems on rubygems.org, the latest_specs.4.8.gz file contains a gem [nil, nil, nil]
irb code:
output:
The text was updated successfully, but these errors were encountered: