GithubIssues
This is my first application according to "Programming Elixir" by Dave Thomas
It checks issues from GitHub for selected user and project. You can also narrow number of issues using third argument.
Usage
Just use mix with escript:
mix escript.build ./github_issues user project [count]
And then use it, for instance:
./github_issues elixir-lang elixir 2
Installation
If available in Hex, the package can be installed as:
Add github_issues to your list of dependencies in
mix.exs:def deps do
[{:github_issues, "~> 0.0.1"}]end
Ensure github_issues is started before your application:
def application do
[applications: [:github_issues]]end