-
Notifications
You must be signed in to change notification settings - Fork 12
/
mix.exs
142 lines (122 loc) · 3.06 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
defmodule Knigge.MixProject do
use Mix.Project
@repo "https://github.com/alexocode/knigge"
def project do
[
app: :knigge,
config_path: "config/config.exs",
elixir: ">= 1.7.4 and < 2.0.0",
elixirc_paths: elixirc_paths(Mix.env()),
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
test_coverage: [tool: ExCoveralls],
start_permanent: Mix.env() == :prod,
aliases: aliases(),
deps: deps(),
# Deps
dialyzer: dialyzer(),
# Docs
name: "Knigge",
source_url: @repo,
homepage_url: @repo,
# Hex
description: description(),
docs: docs(),
package: package(),
version: version()
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Aliases are shortcuts or tasks specific to the current project.
# See the documentation for `Mix` for more info on aliases.
defp aliases do
[
"check.all": ["format --check-formatted", "credo", "dialyzer"]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:bunt, "~> 0.2", runtime: false},
# No Runtime
{:credo, ">= 1.0.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: :dev, runtime: false},
{:ex_doc, "~> 0.23", only: :dev, runtime: false},
# Test
{:excoveralls, "~> 0.13", only: :test},
{:mox, "~> 0.5", only: :test},
# Docs
{:inch_ex, ">= 0.0.0", only: :docs}
]
end
defp dialyzer do
[
ignore_warnings: ".dialyzer_ignore.exs",
plt_add_apps: [:bunt],
plt_file: {:no_warn, ".dialyzer/dialyzer.plt"}
]
end
#######
# Hex #
#######
def description do
"An opinionated way of dealing with behaviours."
end
@extras Path.wildcard("pages/**/*.md")
def docs do
[
main: "Knigge",
source_ref: "v#{version()}",
source_url: @repo,
extras: @extras,
groups_for_modules: [
"Overview & Configuration": [
Knigge,
Knigge.Options
],
"Code Generation": [
Knigge.Behaviour,
Knigge.Code,
Knigge.Implementation
],
Verification: [
Knigge.Verification
]
]
]
end
def package do
[
files: ["lib", "mix.exs", "CHANGELOG*", "LICENSE*", "README*", "version"],
licenses: ["MIT"],
links: %{
"GitHub" => @repo
},
maintainers: ["Alex Wolf <craft@alexocode.dev>"]
]
end
@version_file "version"
def version do
cond do
File.exists?(@version_file) ->
@version_file
|> File.read!()
|> String.trim()
System.get_env("REQUIRE_VERSION_FILE") == "true" ->
exit("Version file (`#{@version_file}`) doesn't exist but is required!")
true ->
"0.0.0-dev"
end
end
end