forked from elixir-ecto/ecto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
143 lines (130 loc) · 3.81 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
143
defmodule Ecto.MixProject do
use Mix.Project
@source_url "https://github.com/elixir-ecto/ecto"
@version "3.8.0-dev"
def project do
[
app: :ecto,
version: @version,
elixir: "~> 1.10",
deps: deps(),
consolidate_protocols: Mix.env() != :test,
elixirc_paths: elixirc_paths(Mix.env()),
# Hex
description: "A toolkit for data mapping and language integrated query for Elixir",
package: package(),
# Docs
name: "Ecto",
docs: docs()
]
end
def application do
[
extra_applications: [:logger, :crypto, :eex],
mod: {Ecto.Application, []}
]
end
defp deps do
[
{:telemetry, "~> 0.4 or ~> 1.0"},
{:decimal, "~> 1.6 or ~> 2.0"},
{:jason, "~> 1.0", optional: true},
{:ex_doc, "~> 0.20", only: :docs}
]
end
defp package do
[
maintainers: ["Eric Meadows-Jönsson", "José Valim", "James Fish", "Michał Muskała", "Felipe Stival"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @source_url},
files:
~w(.formatter.exs mix.exs README.md CHANGELOG.md lib) ++
~w(integration_test/cases integration_test/support)
]
end
defp docs do
[
main: "Ecto",
source_ref: "v#{@version}",
logo: "guides/images/e.png",
extra_section: "GUIDES",
source_url: @source_url,
skip_undefined_reference_warnings_on: ["CHANGELOG.md"],
extras: extras(),
groups_for_extras: groups_for_extras(),
groups_for_functions: [
group_for_function("Query API"),
group_for_function("Schema API"),
group_for_function("Transaction API"),
group_for_function("Runtime API"),
group_for_function("User callbacks")
],
groups_for_modules: [
# Ecto,
# Ecto.Changeset,
# Ecto.Multi,
# Ecto.Query,
# Ecto.Repo,
# Ecto.Schema,
# Ecto.Schema.Metadata,
# Mix.Ecto,
"Types": [
Ecto.Enum,
Ecto.ParameterizedType,
Ecto.Type,
Ecto.UUID
],
"Query APIs": [
Ecto.Query.API,
Ecto.Query.WindowAPI,
Ecto.Queryable,
Ecto.SubQuery
],
"Adapter specification": [
Ecto.Adapter,
Ecto.Adapter.Queryable,
Ecto.Adapter.Schema,
Ecto.Adapter.Storage,
Ecto.Adapter.Transaction
],
"Relation structs": [
Ecto.Association.BelongsTo,
Ecto.Association.Has,
Ecto.Association.HasThrough,
Ecto.Association.ManyToMany,
Ecto.Association.NotLoaded,
Ecto.Embedded
]
]
]
end
def extras() do
[
"guides/introduction/Getting Started.md",
"guides/introduction/Embedded Schemas.md",
"guides/introduction/Testing with Ecto.md",
"guides/howtos/Aggregates and subqueries.md",
"guides/howtos/Composable transactions with Multi.md",
"guides/howtos/Constraints and Upserts.md",
"guides/howtos/Data mapping and validation.md",
"guides/howtos/Dynamic queries.md",
"guides/howtos/Multi tenancy with query prefixes.md",
"guides/howtos/Multi tenancy with foreign keys.md",
"guides/howtos/Self-referencing many to many.md",
"guides/howtos/Polymorphic associations with many to many.md",
"guides/howtos/Replicas and dynamic repositories.md",
"guides/howtos/Schemaless queries.md",
"guides/howtos/Test factories.md",
"CHANGELOG.md"
]
end
defp group_for_function(group), do: {String.to_atom(group), &(&1[:group] == group)}
defp groups_for_extras do
[
"Introduction": ~r/guides\/introduction\/.?/,
"How-To's": ~r/guides\/howtos\/.?/
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
end