-
Notifications
You must be signed in to change notification settings - Fork 7
/
mix.exs
121 lines (112 loc) · 3.17 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
defmodule Retex.MixProject do
use Mix.Project
@source_url "https://github.com/lorenzosinisi/retex"
@version "0.1.11"
def project do
[
app: :retex,
version: @version,
elixir: "~> 1.12",
aliases: aliases(),
start_permanent: Mix.env() == :prod,
source_url: "https://github.com/lorenzosinisi/retex",
description: description(),
package: package(),
deps: deps(),
docs: docs(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
dialyzer: [
plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
ignore_warnings: ".dialyzer_ignore.exs"
]
]
end
defp description do
"""
Rete algorithm in Elixir
"""
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Lorenzo Sinisi"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/lorenzosinisi/retex"}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:libgraph, "~> 0.16.0"},
{:uuid_tools, "~> 0.1.0"},
{:duration_tc, "~> 0.1.1", only: :dev},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.3", only: [:dev], runtime: false},
{:excoveralls, "~> 0.10", only: :test},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:sobelow, "~> 0.7", only: [:dev, :test], runtime: false}
]
end
defp docs do
[
extras: [
"CHANGELOG.md": [],
LICENSE: [title: "License"],
"README.md": [title: "Overview"]
],
assets: "assets",
main: "readme",
canonical: "http://hexdocs.pm/retex",
homepage_url: @source_url,
source_url: @source_url,
source_ref: "v#{@version}",
before_closing_body_tag: &before_closing_body_tag/1
]
end
defp before_closing_body_tag(:html) do
"""
<script src="https://unpkg.com/[email protected]/dist/mermaid.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
mermaid.initialize({ startOnLoad: false });
let id = 0;
for (const codeEl of document.querySelectorAll("pre code.mermaid")) {
const preEl = codeEl.parentElement;
const graphDefinition = codeEl.textContent;
const graphEl = document.createElement("div");
const graphId = "mermaid-graph-" + id++;
mermaid.render(graphId, graphDefinition, function (svgSource, bindListeners) {
graphEl.innerHTML = svgSource;
bindListeners && bindListeners(graphEl);
preEl.insertAdjacentElement("afterend", graphEl);
preEl.remove();
});
}
});
</script>
"""
end
defp before_closing_body_tag(_), do: ""
defp aliases do
[
test: [
"format",
"coveralls",
"credo",
"sobelow --skip -i Config.HTTPS --verbose"
]
]
end
end