-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
43 lines (38 loc) · 1007 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
43
defmodule Plugs.Mixfile do
use Mix.Project
def project do
[ app: :plugs,
version: "0.1.1",
elixir: "~> 1.0",
name: "Plugs",
deps: deps(),
package: package(),
description: description(),
docs: [readme: "README.md", main: "README"],
test_coverage: [tool: ExCoveralls] ]
end
# Configuration for the OTP application
def application do
[ applications: [:plug] ]
end
defp deps do
[
{:cowboy, "~> 1.0"},
{:plug, "~> 1.16"},
{:ex_doc, "~> 0.8", only: :docs},
{:earmark, "~> 0.1", only: :docs},
{:excoveralls, "~> 0.18", only: :test}
]
end
defp description do
"""
A collection of Plug middleware for web applications
"""
end
defp package do
%{maintainers: ["Shane Logsdon", "Ryan S. Northrup"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/sugar-framework/plugs",
"Docs" => "http://sugar-framework.github.io/docs/api/plugs/"}}
end
end