aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2017-01-05 11:11:21 -0700
committerkballou <kballou@devnulllabs.io>2017-01-05 11:11:21 -0700
commitd3829329dbc41be03f304b8a0a0939e80cdf383c (patch)
treecd7d539503c6ee2cac0bc6a75a9aca1a3599efbe
parent6e36a9c3fb482cc993a3fa6511c51cc19b59d5a2 (diff)
downloadexdatadog-master.tar.gz
exdatadog-master.tar.xz
Remove `:docs` environment, use `:dev`HEADmaster
When attempting to publish, `hex` expects the `docs` task to work in the `dev` environment. Make it so.
-rw-r--r--config/docs.exs1
-rw-r--r--mix.exs4
2 files changed, 2 insertions, 3 deletions
diff --git a/config/docs.exs b/config/docs.exs
deleted file mode 100644
index d2d855e..0000000
--- a/config/docs.exs
+++ /dev/null
@@ -1 +0,0 @@
-use Mix.Config
diff --git a/mix.exs b/mix.exs
index d481956..aae871c 100644
--- a/mix.exs
+++ b/mix.exs
@@ -21,8 +21,8 @@ defmodule Exdatadog.Mixfile do
defp deps do
[{:credo, "~> 0.5.0", only: :dev},
{:excoveralls, "~> 0.5", only: :test},
- {:earmark, "~> 0.1", only: :docs},
- {:ex_doc, "~> 0.11", only: :docs},
+ {:earmark, "~> 0.1", only: :dev},
+ {:ex_doc, "~> 0.11", only: :dev},
{:exvcr, "~> 0.8.4", only: :test},
{:httpoison, "~> 0.10.0"},
{:meck, "~> 0.8", only: :test},