-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
44 lines (39 loc) · 917 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
37
38
39
40
41
42
43
44
defmodule Guardsafe.Mixfile do
use Mix.Project
def project do
[
app: :guardsafe,
version: "0.5.1",
name: "Guardsafe",
source_url: "https://github.com/DevL/guardsafe",
homepage_url: "https://hex.pm/packages/guardsafe",
elixir: "~> 1.0",
deps: deps,
description: description,
package: package
]
end
def application do
[applications: []]
end
defp description do
"""
Macros expanding into code that can be safely used in guard clauses.
"""
end
defp package do
[
maintainers: ["Lennart Fridén"],
files: ["lib", "mix.exs", "README*", "LICENSE*"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/DevL/guardsafe"}
]
end
defp deps do
[
{:earmark, "~> 0.2", only: :dev},
{:ex_doc, "~> 0.11", only: :dev},
{:inch_ex, ">= 0.4.0", only: :docs}
]
end
end