forked from surgeventures/surgex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
89 lines (80 loc) · 2.46 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
defmodule Surgex.Mixfile do
use Mix.Project
def project do
[app: :surgex,
version: "2.21.0",
elixir: "~> 1.4",
elixirc_paths: elixirc_paths(Mix.env),
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
package: package(),
aliases: aliases(),
test_coverage: [tool: ExCoveralls],
escript: [main_module: Surgex.Command],
preferred_cli_env: [
check: :test,
coveralls: :test,
"coveralls.detail": :test,
"coveralls.html": :test],
name: "Surgex",
description: "All Things Elixir @ Surge Ventures Inc, the creators of Shedul",
source_url: "https://github.com/surgeventures/surgex",
homepage_url: "https://github.com/surgeventures/surgex",
docs: [main: "readme",
logo: "logo.png",
extras: ["README.md", "CHANGELOG.md"]]]
end
defp package do
[maintainers: ["Karol Słuszniak"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/surgeventures/surgex",
"Shedul" => "https://www.shedul.com"
},
files: ~w(mix.exs lib LICENSE.md README.md CHANGELOG.md)]
end
def application do
[mod: {Surgex.Application, []},
extra_applications: [:logger]]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp aliases do
[
"check": check_alias(),
"test": ["ecto.drop --quiet", "ecto.create --quiet", "ecto.migrate --quiet", "test"]
]
end
defp deps do
[
{:credo, "~> 0.8.1", only: [:dev, :test]},
{:ex_doc, "~> 0.14", only: :dev, runtime: false},
{:ex_machina, "~> 2.0", only: :test},
{:excoveralls, "~> 0.7", only: :test},
{:inch_ex, "~> 0.5", only: [:dev, :test]},
{:mock, "~> 0.2.1", only: :test},
{:postgrex, ">= 0.0.0", only: :test},
] ++ optional_deps()
end
defp optional_deps do
[
{:ecto, "~> 2.1.4"},
{:ex_marshal, "~> 0.0.8"},
{:ex_phone_number, "~> 0.1.1"},
{:exprotobuf, "~> 1.2.7"},
{:httpoison, "~> 0.13.0"},
{:jabbax, ">= 0.1.0"},
{:plug, "~> 1.3.2 or ~> 1.4"},
{:plug_rails_cookie_session_store, "~> 0.2.0"},
] |> Enum.map(&merge_dep_flags(&1, optional: true))
end
defp check_alias do
[
"test",
"credo --strict",
]
end
defp merge_dep_flags({pkg, ver}, flags), do: {pkg, ver, flags}
defp merge_dep_flags({pkg, ver, flg}, flags), do: {pkg, ver, Keyword.merge(flg, flags)}
end