summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorPaul Schoenfelder <paulschoenfelder@gmail.com>2015-08-10 13:34:26 -0500
committerPaul Schoenfelder <paulschoenfelder@gmail.com>2015-08-10 13:34:26 -0500
commit511df305194cc3b948b75597c316b8faff187c80 (patch)
treeba653de64bd2c855fec95cd72b0e1fdae7976b2f /mix.exs
parentVersion 0.9.2 (diff)
Add ex_doc dep
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs6
1 files changed, 5 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index 9ec65ed..4d05391 100644
--- a/mix.exs
+++ b/mix.exs
@@ -7,7 +7,7 @@ defmodule ExIrc.Mixfile do
elixir: "~> 1.0",
description: "An IRC client library for Elixir.",
package: package,
- deps: [] ]
+ deps: deps ]
end
# Configuration for the OTP application
@@ -23,4 +23,8 @@ defmodule ExIrc.Mixfile do
"Home Page" => "http://bitwalker.org/exirc"} ]
end
+ defp deps do
+ [{:ex_doc, "~> 0.5", only: :dev}]
+ end
+
end