Skip to content

Commit

Permalink
Generating module docs
Browse files Browse the repository at this point in the history
  • Loading branch information
navinpeiris committed Mar 31, 2016
1 parent 8e52bb7 commit eb512d5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,5 +1,6 @@
/_build
/cover
/deps
/doc
erl_crash.dump
*.ez
4 changes: 3 additions & 1 deletion 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).

Expand Down
9 changes: 8 additions & 1 deletion mix.exs
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 3 additions & 1 deletion 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"},
Expand Down

0 comments on commit eb512d5

Please sign in to comment.