-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
36 lines (33 loc) · 949 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
defmodule Blanket.Mixfile do
use Mix.Project
def project do
[app: :blanket,
version: "1.0.0",
elixir: "~> 1.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
description: "Don't loose your ETS tables with Elixir.",
package: [
maintainers: ["Ludovic Demblans"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/niahoo/blanket",
"Hex Docs" => "http://hexdocs.pm/blanket",
"Don't loose your ETS tables" => "http://steve.vinoski.net/blog/2011/03/23/dont-lose-your-ets-tables/",
"Erlang inspiration" => "https://github.com/DeadZen/etsgive"
}
],
deps: deps()]
end
def application do
[applications: [:logger],
mod: {Blanket, []}]
end
defp deps do
[
{:dogma, "~> 0.1", only: :dev},
{:earmark, ">= 0.0.0", only: :dev},
{:ex_doc, "> 0.0.0", only: :dev},
]
end
end