-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
69 lines (61 loc) · 1.58 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
defmodule EctoRange.MixProject do
use Mix.Project
@url "http://github.com/davydog187/ecto_range"
@version "0.2.1"
def project do
[
aliases: aliases(),
app: :ecto_range,
version: @version,
elixir: "~> 1.14",
package: package(),
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
description: "Ecto support for Postgres Range types",
deps: deps(),
docs: docs()
]
end
defp elixirc_paths(:test), do: elixirc_paths(:dev) ++ ["test/support"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp docs do
[
main: "EctoRange",
source_url: @url,
source_ref: "v#{@version}",
extras: ["CHANGELOG.md"]
]
end
defp package do
[
licenses: ["Apache-2.0"],
maintainers: ["davydog187"],
links: %{"Github" => @url}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false},
{:ecto, "~> 3.6"},
{:ecto_sql, "~> 3.9", only: [:test]},
{:postgrex, ">= 0.0.0"},
{:ex_doc, "~> 0.27", only: :dev, runtime: false}
]
end
defp aliases do
[
setup: ["deps.get", "ecto.setup"],
"ecto.setup": ["ecto.create", "ecto.migrate"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"]
]
end
end