-
Notifications
You must be signed in to change notification settings - Fork 42
/
mix.exs
65 lines (59 loc) · 1.53 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
defmodule Hammer.Mixfile do
use Mix.Project
@source_url "https://github.com/ExHammer/hammer"
@version "6.2.1"
def project do
[
app: :hammer,
description: "A rate-limiter with plugable backends.",
version: @version,
elixir: "~> 1.13",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
package: package(),
test_coverage: [summary: [threshold: 70]]
]
end
def application do
# Specify extra applications you'll use from Erlang/Elixir
[mod: {Hammer.Application, []}, extra_applications: [:logger, :runtime_tools]]
end
defp deps do
[
{:credo, "~> 1.7", only: [:dev, :test]},
{:ex_doc, "~> 0.30", only: :dev},
{:dialyxir, "~> 1.3", only: [:dev, :test], runtime: false},
{:poolboy, "~> 1.5"}
]
end
defp docs do
[
main: "readme",
extra_section: "GUIDES",
extras: [
"CHANGELOG.md",
{:"README.md", title: "Readme"},
{:"guides/Frontpage.md", title: "Overview"},
"guides/Tutorial.md",
"guides/CreatingBackends.md"
],
source_url: @source_url,
source_ref: "v#{@version}",
homepage_url: @source_url,
assets: "assets"
]
end
defp package do
[
name: :hammer,
maintainers: ["Emmanuel Pinault", "June Kelly (june@junek.xyz)"],
licenses: ["MIT"],
links: %{
"GitHub" => @source_url,
"Changelog" => "#{@source_url}/blob/master/CHANGELOG.md"
}
]
end
end