-
Notifications
You must be signed in to change notification settings - Fork 44
/
mix.exs
85 lines (76 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
defmodule SendGrid.Mixfile do
use Mix.Project
def project do
[app: :sendgrid,
version: "2.0.0",
elixir: "~> 1.4",
package: package(),
compilers: compilers(Mix.env),
description: description(),
source_url: project_url(),
homepage_url: project_url(),
elixirc_paths: elixirc_paths(Mix.env),
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
xref: [exclude: [Phoenix.View]],
preferred_cli_env: [
dialyzer: :test,
"test.integration": :test
],
aliases: aliases()
]
end
def application do
[
extra_applications: [
:logger
]
]
end
# Use Phoenix compiler depending on environment.
defp compilers(:test), do: [:phoenix] ++ Mix.compilers()
defp compilers(_), do: Mix.compilers()
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:dialyxir, "~> 1.0.0-rc.4", only: [:dev, :test], runtime: false},
{:earmark, "~> 1.2", only: :dev},
{:ex_doc, "~> 0.19", only: :dev},
{:jason, "~> 1.1"},
{:phoenix, "~> 1.2", only: :test},
{:phoenix_html, "~> 2.9", only: :test},
{:tesla, "~> 1.2"}
]
end
defp description do
"""
A wrapper for SendGrid's API to create composable emails.
"""
end
defp project_url do
"""
https://github.com/alexgaribay/sendgrid_elixir
"""
end
defp package do
[
files: ["lib", "mix.exs", "LICENSE", "README.md"],
maintainers: ["Alex Garibay"],
licenses: ["MIT"],
links: %{"GitHub" => project_url()}
]
end
defp aliases do
[
test: [
"test --exclude integration"
],
"test.integration": [
"test --only integration"
]
]
end
end