summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorLindolfo 'Lorn' Rodrigues <lorn@lornlab.org>2019-02-13 17:13:50 -0200
committerLindolfo 'Lorn' Rodrigues <lorn@lornlab.org>2019-02-13 17:13:50 -0200
commit1e9e9448ab88a14a58cc26068446423b63304c4a (patch)
treead13410a5b4e65899e44c11ddd845c7459ed2ebb /mix.exs
parentMerge pull request #13 from locaweb/elixir-1.8 (diff)
Fix docs for hex publish
Publication failed because the "docs" task is unavailable. You may resolve this by: 1. Adding {:ex_doc, ">= 0.0.0", only: :dev} to your dependencies in your mix.exs and trying again 2. If ex_doc was already added, make sure you run "mix hex.publish" in the same environment as the ex_doc package 3. Publishing the package without docs by running "mix hex.publish package" (not recommended) We dont have good docs, but that problem is for another time shrug
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs7
1 files changed, 6 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index 94fe8a5..e1ee79b 100644
--- a/mix.exs
+++ b/mix.exs
@@ -19,7 +19,12 @@ defmodule PowerDNSex.Mixfile do
end
defp deps do
- [{:httpoison, "~> 1.5.0"}, {:poison, "~> 4.0.1"}, {:exvcr, "~> 0.10.3", only: :test}]
+ [
+ {:httpoison, "~> 1.5.0"},
+ {:poison, "~> 4.0.1"},
+ {:exvcr, "~> 0.10.3", only: :test},
+ {:ex_doc, ">= 0.0.0", only: :dev}
+ ]
end
defp description do