-
Notifications
You must be signed in to change notification settings - Fork 10
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
-in option to search from file #3
Comments
It is an interesting feature, but, IMHO, we should first fix #9 before start this one. |
Yes, agreed. I guess we should discuss the migration to JCommander ASAP. Will talk to @fernandocastor this week and see. |
Development/debugging pro-tip for the log the another example (search term: cepfacil): https://api.github.com/legacy/repos/search/cepfacil?start_page=1&language=java |
And if we parse regular expressions in the project name? Such as |
hmm, I don't understand :( |
I mean, and if the user want to download all facebook related projects. Wouldn't it be nice if I could pass |
Ah, yeah. Got it. |
Using regular expressions to search for projects is also related to issue #19 because you could search for all projects in a repository using the regular expression '*'. |
People, I believe that it would be better if the JSON file provided all the command line arguments instead of passing only the names of the projects. @fernandocastor talked about this feature in #17, so I propose that we close this issue, that talks about passing project names through a file, and create another issue about passing all command line arguments. What do you think? |
Agreed. |
As I said this issue will be replaced by #33 so I'm closing this one. |
We must implement in the
Options
class the option from searching projects from the content of an informed file so that the names of the project can be passed in "bulk" rather than individually. Take this as an example:Currently we do:
This will look for projects whose name match either
phonegap-facebook-plugin
, orfacebook-android-sdk
orspring-social-facebook
.But this approach can be tedious and hard to repeat as the number of projects gets larger.
So, the
-in
option would make our lives easier by making Groundhog read the search terms from a JSON file, like this:this file is called projects.txt
and then:
The text was updated successfully, but these errors were encountered: