-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
68 lines (62 loc) · 1.54 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
defmodule CacheMoney.Mixfile do
use Mix.Project
@source_url "https://github.com/sgtpepper43/cache_money"
@version "0.6.2"
def project do
[
app: :cache_money,
version: @version,
elixir: "~> 1.11",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
name: "Cache Money",
docs: docs(),
dialyzer: [
plt_add_apps: [:mix],
plt_add_deps: :transitive,
ignore_warnings: ".dialyzer.ignore-warnings"
]
]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:redix, "~> 1.1", optional: true}
]
end
defp package do
[
description: "ETS or Redis based caching for Elixir",
licenses: ["MIT"],
maintainers: ["Trevor Fenn<[email protected]>"],
files: ["lib", "mix.exs", "README*", "LICENSE*"],
links: %{"GitHub" => @source_url}
]
end
defp docs do
[
extras: [
"LICENSE.md": [title: "License"],
"README.md": [title: "Overview"]
],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
canonical: "http://hexdocs.pm/cache_money",
formatters: ["html"],
groups_for_modules: [
Adapters: [
CacheMoney.Adapter,
CacheMoney.Adapters.ETS,
CacheMoney.Adapters.Redis
]
]
]
end
end