Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 845 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 845 Bytes

Issues

Command line tool for fetching a project's most recent Github issues

Installation

If available in Hex, the package can be installed by adding issues to your list of dependencies in mix.exs:

def deps do
  [
    {:issues, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/issues.

Run

  • package the program with mix escript.build
  • run it using ./issues <github_username> <project> <count(optional)> Or
  • run with mix using mix run -e 'Issues.CLI.run(argv)'
    • e.g mix run -e 'Issues.CLI.run(["-h"])' or mix run -e 'Issues.CLI.run(["elixir-lang", "elixir"])'

Documentation

  • run mix docs