forked from danhper/phoenix-active-link
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
34 lines (29 loc) · 1013 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
defmodule PhoenixActiveLink.Mixfile do
use Mix.Project
@version "0.3.2"
def project do
[app: :phoenix_active_link,
version: @version,
name: "phoenix_active_link",
source_url: "http://github.com/tuvistavie/phoenix-active-link",
homepage_url: "http://github.com/tuvistavie/phoenix-active-link",
package: package(),
description: ~S(Phoenix view helper to manage "active" state of a link),
elixir: "~> 1.3",
deps: deps(),
docs: [source_ref: @version, extras: ["README.md"], main: "readme"]]
end
defp package do
[files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Daniel Perez"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/tuvistavie/phoenix-active-link",
"Docs" => "http://hexdocs.pm/phoenix_active_link/"}]
end
defp deps do
[{:phoenix_html, "~> 2.10 or ~> 3.0"},
{:plug, "~> 1.5"},
{:earmark, "~> 1.2", only: :dev},
{:ex_doc, "~> 0.18", only: :dev}]
end
end