forked from msmykowski/double_bypass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
47 lines (42 loc) · 1.12 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
defmodule DoubleBypass.Mixfile do
use Mix.Project
def project do
[app: :double_bypass,
version: "0.0.1",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
package: package(),
description: description(),
test_coverage: [tool: ExCoveralls]]
end
def application do
[applications: [:bypass, :logger]]
end
defp deps do
[
{:bypass, "~> 0.5"},
{:ex_doc, ">= 0.0.0", only: :dev},
{:excoveralls, "~> 0.6", only: :test},
{:httpoison, "~> 0.11.1", only: :test},
{:poison, "~> 2.0"}
]
end
defp description do
"""
A wrapper around Bypass. Double Bypass makes configuring and initializing Bypass easy.
It also removes redundant test assertion code, and ecourages testing external requests in
a self documenting manner.
"""
end
defp package do
[
name: :double_bypass,
files: ["lib", "mix.exs", "README*"],
maintainers: ["Michael Smykowski"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/msmykowski/double_bypass"}
]
end
end