-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
62 lines (55 loc) · 1.37 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
defmodule PlugDynamic.MixProject do
@moduledoc false
use Mix.Project
@version "1.0.0"
def project do
[
app: :plug_dynamic,
version: @version,
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
docs: docs(),
test_coverage: [tool: ExCoveralls]
]
end
defp description do
"""
Allows registration of every Plug with dynamic configuration.
"""
end
def application do
[
extra_applications: [:logger],
mod: {PlugDynamic.Application, []}
]
end
defp deps do
[
{:plug, "~> 1.6"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
# {:inch_ex, only: :dev, runtime: false},
{:excoveralls, "~> 0.4", only: :test, runtime: false},
{:dialyxir, "~> 1.0-rc", only: :dev, runtime: false},
{:credo, "~> 0.5", only: :dev, runtime: false}
]
end
defp package do
# These are the default files included in the package
[
name: :plug_dynamic,
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Jonatan Männchen"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/jshmrtn/plug-dynamic"}
]
end
defp docs do
[
source_ref: "v" <> @version,
source_url: "https://github.com/jshmrtn/crontab"
]
end
end