https://github.com/marcelog/find_rebar_deps
An escript that will search an organization repositories via the GitHub API trying to locate a dependency in the rebar.config file
https://github.com/marcelog/find_rebar_deps
Last synced: 4 months ago
JSON representation
An escript that will search an organization repositories via the GitHub API trying to locate a dependency in the rebar.config file
- Host: GitHub
- URL: https://github.com/marcelog/find_rebar_deps
- Owner: marcelog
- License: apache-2.0
- Created: 2012-09-22T18:35:44.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-10-14T17:27:59.000Z (over 13 years ago)
- Last Synced: 2025-02-22T16:05:50.807Z (over 1 year ago)
- Language: Prolog
- Size: 104 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# About
Will do a simple GET request using basic auth against the [GitHub API](http://developer.github.com/v3/), getting **all repositories** from the given **organization**. Then, for each one of them, will try to find a **rebar.config** file and look for the given **dependency** in it.
**NOTE**: Actually, to find the dependency, the string is searched for in the rebar.config file, so it might trigger some false alarms (this is ok, for my needs, but feel free to do some more complex "algorithm" to find your deps).
# Use
$ ./find_rebar_deps
* authuser and authpass: Used to authtenticate against the github api.
* organization: The github organization that owns the repos.
* dependency: The dependency to look for in rebar.config.