-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmix.exs
42 lines (39 loc) · 981 Bytes
/
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
defmodule Tmate.Mixfile do
use Mix.Project
def project do
[app: :tmate,
version: "0.1.1",
elixir: "~> 1.9",
elixirc_paths: ["lib"],
compilers: Mix.compilers,
deps: deps(),
# dialyzer: [paths: ~w(tmate ranch) |> Enum.map(fn(x) -> "_build/dev/lib/#{x}/ebin" end)]
]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
case Mix.env do
:test -> [mod: {ExUnit, []}]
_ -> [mod: {Tmate, []}]
end
end
# Specifies your project dependencies
#
# Type `mix help deps` for examples and options
defp deps do
[
{:ranch, "~> 1.0"},
{:cowboy, "~> 2.0"},
{:plug, "~> 1.0"},
{:plug_cowboy, "~> 2.0"},
{:uuid, "~> 1.1" },
{:jason, ">= 0.0.0"},
{:httpoison, ">= 0.0.0"},
{:message_pack, github: "nviennot/msgpack-elixir"},
{:distillery, "~> 2.1"},
{:timex, "~> 3.5"},
]
end
end