-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
New feature: get the dependent gems of a particular gem #6
Comments
Yes, thought about that too, it would allow to easily catch outliers ("yes, this gem seems to be downloaded a lot, but that's just because The problem is RubyGems doesn't have any bulk API, so for something like |
We can query every gem dependency on rubygems in a multi-threaded manner and gather the data in parallel. Then analyse it and display. This can be an optional feature since sending so many queries to rubygems is obviously time consuming. |
We could talk to the Rubygems people and try to introduced convenient API for this tasks. RubyToolbox and Libraries.io would benefit through it as well. |
@arbox do you know someone who can help us out? I can write them a mail. |
It could be e.g. @indirect |
Getting the names of the gems that use a given gem and the version number of the gem that the dependents use is useful information for gem writers. It would also be great to provide details about the proportion of the downloads of the dependent with a given gem to see which dependent gem is most important by number of downloads.
The text was updated successfully, but these errors were encountered: