-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmix.exs
57 lines (50 loc) · 1.23 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
defmodule Ecto.Rut.Mixfile do
use Mix.Project
@version "1.2.2"
def project do
[
# Project
app: :ecto_rut,
version: @version,
elixir: "~> 1.0",
description: description(),
package: package(),
deps: deps(),
# ExDoc
name: "Ecto.Rut",
source_url: "https://github.com/sheharyarn/ecto_rut",
homepage_url: "https://github.com/sheharyarn/ecto_rut",
docs: [
main: "Ecto.Rut",
canonical: "https://hexdocs.pm/ecto_rut",
extras: ["README.md"]
]
]
end
def application do
[applications: [:logger, :ecto, :ex_utils]]
end
defp deps do
[
{:ex_utils, "~> 0.1.4"},
{:ecto, ">= 2.0.0"},
{:postgrex, ">= 0.12.0", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev},
{:inch_ex, ">= 0.0.0", only: :docs}
]
end
defp description do
"""
Ecto Model shortcuts to make your life easier! 🎉
"""
end
defp package do
[
name: :ecto_rut,
maintainers: ["Sheharyar Naseer"],
licenses: ["MIT"],
files: ~w(mix.exs lib README.md),
links: %{"Github" => "https://github.com/sheharyarn/ecto_rut"}
]
end
end