forked from PSPDFKit-labs/bypass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
66 lines (58 loc) · 1.74 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
defmodule Bypass.Mixfile do
use Mix.Project
def project do
[app: :bypass,
version: "0.8.0",
elixir: "~> 1.0",
description: description(),
package: package(),
deps: deps(Mix.env)]
end
def application do
[applications: [:logger, :ranch, :cowboy, :plug],
mod: {Bypass.Application, []},
env: env()]
end
defp deps do
[
{:cowboy, "~> 1.0",},
{:plug, "~> 1.0"},
{:ex_doc, "> 0.0.0", only: :dev},
{:espec, "~> 1.4", only: [:dev, :test]},
]
end
defp env do
[enable_debug_log: false]
end
# We need to work around the fact that gun would pull in cowlib/ranch from git, while cowboy/plug
# depend on them from hex. In order to resolv this we need to override those dependencies. But
# since you can't publish to hex with overriden dependencies this ugly hack only pulls the
# dependencies in when in the test env.
defp deps(:test) do
deps() ++ [
{:cowlib, "~> 1.0.1", override: true},
{:ranch, "~> 1.2.0", override: true},
{:gun, github: "PSPDFKit-labs/gun", only: :test}
]
end
defp deps(_), do: deps()
defp description do
"""
Bypass provides a quick way to create a custom plug that can be put in place instead of an
actual HTTP server to return prebaked responses to client requests. This is helpful when you
want to create a mock HTTP server and test how your HTTP client handles different types of
server responses.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["PSPDFKit"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/pspdfkit-labs/bypass",
"PSPDFKit" => "https://pspdfkit.com",
}
]
end
end