-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
59 lines (53 loc) · 1.21 KB
/
Copy pathmix.exs
File metadata and controls
59 lines (53 loc) · 1.21 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
defmodule Then.MixProject do
use Mix.Project
def project do
[
app: :then,
version: "1.2.0",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "Then",
description: description(),
package: package(),
docs: docs()
]
end
def description do
"Simple way to set after-function callback"
end
def package do
[
name: "then",
files: ~w(lib .formatter.exs mix.exs README* LICENSE* CHANGELOG*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/bardoor/then"}
]
end
def application do
[
# nope
]
end
defp docs do
[
main: "getting-started",
source_url: "https://github.com/bardoor/then",
extras: [
{"docs/then.md", title: "Getting Started", filename: "getting-started"},
{"CHANGELOG.md", title: "Changelog"},
{"LICENSE", title: "License"}
],
groups_for_extras: [
"Documentation": ["docs/then.md"],
"Legal": ["CHANGELOG.md", "LICENSE"]
]
]
end
defp deps do
[
{:ex_doc, "~> 0.14", only: :dev, runtime: false},
{:credo, "~> 1.7", only: :dev, runtime: false}
]
end
end