-
Notifications
You must be signed in to change notification settings - Fork 49
/
mix.exs
113 lines (103 loc) · 2.97 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
defmodule Money.Mixfile do
use Mix.Project
@version "5.18.1"
def project do
[
app: :ex_money,
version: @version,
elixir: "~> 1.12",
name: "Money",
source_url: "https://github.com/kipcole9/money",
docs: docs(),
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
test_coverage: [tool: ExCoveralls],
aliases: aliases(),
elixirc_paths: elixirc_paths(Mix.env()),
dialyzer: [
plt_add_apps: ~w(inets jason mix phoenix_html gringotts)a,
flags: [
:error_handling,
:unknown,
:underspecs,
:extra_return,
:missing_return
]
],
compilers: Mix.compilers()
]
end
defp description do
"""
Money functions for operations on and localization of a money data type with support
for ISO 4217 currencies and ISO 24165 digial tokens (crypto currencies).
"""
end
defp package do
[
maintainers: ["Kip Cole"],
licenses: ["Apache-2.0"],
links: %{
"GitHub" => "https://github.com/kipcole9/money",
"Readme" => "https://github.com/kipcole9/money/blob/v#{@version}/README.md",
"Changelog" => "https://github.com/kipcole9/money/blob/v#{@version}/CHANGELOG.md"
},
files: [
"lib",
"config",
"mix.exs",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
]
]
end
def application do
[
mod: {Money.Application, [strategy: :one_for_one, name: Money.Supervisor]},
extra_applications: [:inets, :logger, :decimal]
]
end
def docs do
[
source_ref: "v#{@version}",
extras: ["README.md", "CHANGELOG.md", "LICENSE.md"],
main: "readme",
groups_for_modules: groups_for_modules(),
logo: "logo.png",
skip_undefined_reference_warnings_on: ["changelog", "CHANGELOG.md", "README.md"]
]
end
defp groups_for_modules do
[
"Exchange Rates": ~r/^Money.ExchangeRates.?/,
Subscriptions: ~r/^Money.Subscription.?/
]
end
def aliases do
[]
end
defp deps do
[
{:ex_cldr_numbers, "~> 2.33"},
{:nimble_parsec, "~> 0.5 or ~> 1.0"},
{:decimal, "~> 1.6 or ~> 2.0"},
{:poison, "~> 3.0 or ~> 4.0 or ~> 5.0 or ~> 6.0", optional: true},
{:phoenix_html, "~> 2.0 or ~> 3.0 or ~> 4.0", optional: true},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:jason, "~> 1.0", optional: true},
{:stream_data, "~> 1.0", only: [:dev, :test]},
{:benchee, "~> 1.0", optional: true, only: :dev},
{:exprof, "~> 0.2", only: :dev, runtime: false},
{:ex_doc, "~> 0.31", only: [:dev, :release]},
{:gringotts, "~> 1.1", optional: true}
]
|> Enum.reject(&is_nil/1)
end
defp elixirc_paths(:test), do: ["lib", "test", "test/support"]
defp elixirc_paths(:dev), do: ["lib", "mix"]
defp elixirc_paths(_), do: ["lib"]
end