diff --git a/.gitignore b/.gitignore index 755b605..008b35d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ /_build /cover /deps +/doc erl_crash.dump *.ez diff --git a/README.md b/README.md index 01d4cbb..1a03df4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ -# Logster [![Build Status](https://travis-ci.org/navinpeiris/logster.svg?branch=master)](https://travis-ci.org/navinpeiris/logster) +# Logster + +[![Build Status](https://travis-ci.org/navinpeiris/logster.svg?branch=master)](https://travis-ci.org/navinpeiris/logster) An easy to parse, one line logger for Elixir Plug.Conn and Phoenix, heavily inspired by [lograge](https://github.com/roidrage/lograge). diff --git a/mix.exs b/mix.exs index 11430bb..23e0b3f 100644 --- a/mix.exs +++ b/mix.exs @@ -4,12 +4,16 @@ defmodule Logster.Mixfile do def project do [app: :logster, version: "0.1.0", + name: "Logster", description: "Easily parsable log output for Plug and Phoenix applications", package: package, + source_url: "https://github.com/navinpeiris/logster", + homepage_url: "https://github.com/navinpeiris/logster", elixir: "~> 1.2", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, - deps: deps] + deps: deps, + docs: [extras: ["README.md"]]] end def application do @@ -20,6 +24,9 @@ defmodule Logster.Mixfile do [{:plug, "~> 1.0"}, {:poison, "~> 1.5 or ~> 2.0"}, + {:earmark, "~> 0.1", only: :dev}, + {:ex_doc, "~> 0.11", only: :dev}, + {:mix_test_watch, "~> 0.2", only: :dev}, {:ex_unit_notifier, "~> 0.1", only: :test}] end diff --git a/mix.lock b/mix.lock index 8eda6e8..e794ea5 100644 --- a/mix.lock +++ b/mix.lock @@ -1,4 +1,6 @@ -%{"ex_unit_notifier": {:hex, :ex_unit_notifier, "0.1.0"}, +%{"earmark": {:hex, :earmark, "0.2.1"}, + "ex_doc": {:hex, :ex_doc, "0.11.4"}, + "ex_unit_notifier": {:hex, :ex_unit_notifier, "0.1.0"}, "fs": {:hex, :fs, "0.9.2"}, "mix_test_watch": {:hex, :mix_test_watch, "0.2.6"}, "plug": {:hex, :plug, "1.1.3"},