forked from naps62/fun_with_flags_in_memory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
61 lines (54 loc) · 1.1 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
defmodule FunWithFlagsInMemory.MixProject do
use Mix.Project
@version "0.1.1"
def project do
[
app: :fun_with_flags_in_memory,
version: @version,
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
docs: docs(),
package: package()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.19", only: :dev},
{:ecto, "~> 3.0"},
{:fun_with_flags, "~> 1.4"}
]
end
defp description do
"""
An InMemory adapter for fun_with_flags, for testing purposes.
"""
end
defp package do
[
maintainers: [
"Miguel Palhas"
],
licenses: [
"MIT"
],
links: %{
"GitHub" => "https://github.com/naps62/fun_with_flags_in_memory"
}
]
end
defp docs do
[
extras: ["README.md"],
main: "FunWithFlags.Store.Persistent.InMemory",
source_url: "https://github.com/naps62/fun_with_flags_in_memory/",
source_ref: "v#{@version}"
]
end
end