GithubIssues

Build Status

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

  1. Just use mix with escript:

    mix escript.build ./github_issues user project [count]

  2. And then use it, for instance:

    ./github_issues elixir-lang elixir 2

Installation

If available in Hex, the package can be installed as:

  1. Add github_issues to your list of dependencies in mix.exs:

    def deps do

     [{:github_issues, "~> 0.0.1"}]

    end

  2. Ensure github_issues is started before your application:

    def application do

     [applications: [:github_issues]]

    end