Skip to content

Commit

Permalink
Add ex_doc and publish
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwlewis committed Oct 31, 2016
1 parent d47939f commit 4d64e1b
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,30 @@ defmodule Tapex.Mixfile do

def project do
[app: :tapex,
description: "Tapex is a TAP (Test Anything Protocol) formatter for ExUnit.",
version: "0.1.0",
deps: deps(),
description: description(),
elixir: "~> 1.2",
deps: deps()]
package: package(),
version: "0.1.0"]
end

def application do
[]
end

defp deps do
[]
defp description do
"Tapex is a TAP (Test Anything Protocol) formatter for ExUnit."
end

def package do
defp package do
[
maintainers: ["Josh W Lewis"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/joshwlewis/tapex"}
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/joshwlewis/tapex"}
]
end

defp deps do
[{:ex_doc, "~> 0.14", only: :dev}]
end
end

0 comments on commit 4d64e1b

Please sign in to comment.