Skip to content

Commit

Permalink
ENH committing local changes of mix.exs preparing for a release
Browse files Browse the repository at this point in the history
  • Loading branch information
lowks committed Feb 2, 2015
1 parent 43267d5 commit 27ef57d
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ defmodule Radpath.Mixfile do
elixir: "~> 1.0.0",
description: description,
package: package,
deps: deps(Mix.env) ]
deps: deps(Mix.env),
test_coverage: [tool: ExCoveralls]
]
end

# Configuration for the OTP application
Expand Down Expand Up @@ -56,6 +58,15 @@ defmodule Radpath.Mixfile do
{:inch_ex, only: :docs}]
end

defp deps(:dev) do
[{:tempfile, github: "lowks/tempfile"},
{:ex_doc, github: "elixir-lang/ex_doc"},
{:finder, github: "h4cc/Finder"},
{:amrita, "~>0.4", github: "josephwilk/amrita"},
{:erlware_commons, github: "erlware/erlware_commons"},
{:excoveralls, "~> 0.3"}]
end

defp deps(_) do
deps(:prod)
end
Expand Down

0 comments on commit 27ef57d

Please sign in to comment.