-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
49 lines (44 loc) · 1.15 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
defmodule Plug.Assign.Mixfile do
use Mix.Project
def project do
[
app: :plug_assign,
name: "Plug.Assign",
version: "2.0.2",
elixir: "~> 1.11",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
docs: [extras: ["README.md", "LICENSE.md", "CHANGELOG.md"], main: "readme"],
source_url: "https://github.com/nshafer/plug_assign",
homepage_url: "http://blog.lotech.org/a-phoenix-plug-for-assigning-template-variables.html"
]
end
def application do
[]
end
defp deps do
[
{:plug, "~> 1.15"},
{:ex_doc, "> 0.0.0", only: :dev}
]
end
defp description do
"""
A simple plug to allow setting variables in a connection.
"""
end
defp package do
[
maintainers: ["Nathan Shafer"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/nshafer/plug_assign",
"Docs" => "http://hexdocs.pm/plug_assign",
"Howto" => "http://blog.lotech.org/a-phoenix-plug-for-assigning-template-variables.html"
}
]
end
end