diff options
-rw-r--r-- | mix.exs | 9 | ||||
-rw-r--r-- | mix.lock | 13 |
2 files changed, 18 insertions, 4 deletions
@@ -7,6 +7,8 @@ defmodule ExIrc.Mixfile do elixir: "~> 1.0", description: "An IRC client library for Elixir.", package: package, + test_coverage: [tool: ExCoveralls], + preferred_cli_env: ["coveralls": :test, "coveralls.detail": :test, "coveralls.html": :test, "coveralls.post": :test], deps: deps ] end @@ -24,8 +26,11 @@ defmodule ExIrc.Mixfile do end defp deps do - [{:ex_doc, "~> 0.5", only: :dev}, - {:earmark, ">= 0.0.0", only: :dev}] + [ + {:ex_doc, "~> 0.5", only: :dev}, + {:earmark, ">= 0.0.0", only: :dev}, + {:excoveralls, "~> 0.5", only: :test}, + ] end end @@ -1,2 +1,11 @@ -%{"earmark": {:hex, :earmark, "0.2.1"}, - "ex_doc": {:hex, :ex_doc, "0.11.4"}} +%{"certifi": {:hex, :certifi, "0.4.0"}, + "earmark": {:hex, :earmark, "0.2.1"}, + "ex_doc": {:hex, :ex_doc, "0.11.4"}, + "excoveralls": {:hex, :excoveralls, "0.5.1"}, + "exjsx": {:hex, :exjsx, "3.2.0"}, + "hackney": {:hex, :hackney, "1.6.0"}, + "idna": {:hex, :idna, "1.2.0"}, + "jsx": {:hex, :jsx, "2.6.2"}, + "metrics": {:hex, :metrics, "1.0.1"}, + "mimerl": {:hex, :mimerl, "1.0.2"}, + "ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.0"}} |