Formatted

This commit is contained in:
Eishun Kondoh 2018-01-30 22:47:31 +09:00
parent 5fc01a9bec
commit 7635272fbd
150 changed files with 5055 additions and 4032 deletions

27
mix.exs
View file

@ -2,25 +2,28 @@ defmodule Tres.Mixfile do
use Mix.Project
def project do
[app: :tres,
version: "0.1.0",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
compilers: [:erlang] ++ Mix.compilers,
deps: deps(),
aliases: [test: "test --no-start"]]
[
app: :tres,
version: "0.1.0",
elixir: "~> 1.5",
start_permanent: Mix.env() == :prod,
compilers: [:erlang] ++ Mix.compilers(),
deps: deps(),
aliases: [test: "test --no-start"]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[extra_applications: [:logger, :ranch, :eovsdb],
mod: {Tres.Application, []}]
[extra_applications: [:logger, :ranch, :eovsdb], mod: {Tres.Application, []}]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[{:ranch, "~> 1.4.0"},
{:eovsdb, github: "shun159/eovsdb", branch: "master"},
{:epcap, github: "msantos/epcap", branch: "master", only: :test}]
[
{:ranch, "~> 1.4.0"},
{:eovsdb, github: "shun159/eovsdb", branch: "master"},
{:epcap, github: "msantos/epcap", branch: "master", only: :test}
]
end
end