-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathmix.exs
95 lines (78 loc) · 1.87 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
defmodule Memento.Mixfile do
use Mix.Project
@app :memento
@name "Memento"
@version "0.4.1"
@github "https://github.com/sheharyarn/#{@app}"
@author "Sheharyar Naseer"
@license "MIT"
# NOTE:
# To publish package or update docs, use the `docs`
# mix environment to not include support modules
# that are normally included in the `dev` environment
#
# MIX_ENV=docs mix hex.publish
#
def project do
[
# Project
app: @app,
version: @version,
elixir: "~> 1.14",
description: description(),
package: package(),
deps: deps(),
docs: docs(),
elixirc_paths: elixirc_paths(Mix.env),
homepage_url: @github,
]
end
# BEAM Application
def application do
[extra_applications: [:logger, :mnesia]]
end
# Dependencies
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :docs},
{:inch_ex, ">= 0.0.0", only: :docs},
]
end
# Compilation Paths
defp elixirc_paths(:dev), do: elixirc_paths(:test)
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(:docs), do: ["lib"]
defp elixirc_paths(_), do: ["lib"]
# Package Description
defp description do
"Simple & Powerful Elixir wrapper for the Mnesia Database"
end
# Package Information
defp package do
[
name: @app,
maintainers: [@author],
licenses: [@license],
files: ~w(mix.exs lib README.md CHANGELOG.md),
links: %{"GitHub" => @github}
]
end
# ExDoc
defp docs do
[
name: @name,
main: "readme",
source_url: @github,
source_ref: "v#{@version}",
canonical: "https://hexdocs.pm/#{@app}",
extras: [
{"README.md", title: @name},
"CHANGELOG.md",
"LICENSE"
],
assets: %{
"media" => "media"
}
]
end
end