Add earmark dependency.

This commit is contained in:
Martin Frost 2015-08-10 22:06:42 +02:00
parent d166a36b47
commit f623e5337c
3 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@
erl_crash.dump erl_crash.dump
*.ez *.ez
docs docs
doc

View File

@ -43,6 +43,7 @@ defmodule Isn.Mixfile do
[{:postgrex, "~> 0.9"}, [{:postgrex, "~> 0.9"},
{:ecto, "~> 0.15"}, {:ecto, "~> 0.15"},
{:eh, "~> 0.2", only: :dev}, {:eh, "~> 0.2", only: :dev},
{:ex_doc, "~> 0.8", only: :dev}] {:ex_doc, "~> 0.8", only: :dev},
{:earmark, ">= 0.0.0", only: :dev}]
end end
end end

View File

@ -1,4 +1,5 @@
%{"decimal": {:hex, :decimal, "1.1.0"}, %{"decimal": {:hex, :decimal, "1.1.0"},
"earmark": {:hex, :earmark, "0.1.17"},
"ecto": {:hex, :ecto, "0.15.0"}, "ecto": {:hex, :ecto, "0.15.0"},
"eh": {:hex, :eh, "0.2.0"}, "eh": {:hex, :eh, "0.2.0"},
"ex_doc": {:hex, :ex_doc, "0.8.0"}, "ex_doc": {:hex, :ex_doc, "0.8.0"},