-
Notifications
You must be signed in to change notification settings - Fork 7
/
mix.exs
51 lines (44 loc) · 1.04 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
50
51
defmodule ElmScaffold.Mixfile do
use Mix.Project
@github_url "https://github.com/andrewMacmurray/phoenix-elm-scaffold"
def project do
[app: :phoenix_elm_scaffold,
name: "Phoenix Elm Scaffold",
version: "0.2.6",
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
description: description(),
package: package(),
docs: docs(),
source_url: @github_url,
homepage_url: @github_url]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[{:phoenix, "~> 1.3.0"},
{:ex_doc, "~> 0.14", only: :dev}]
end
defp description do
"""
A mix task to generate scaffolding for an elm app inside a Phoenix (1.3) app
"""
end
defp package do
[
maintainers: ["Andrew MacMurray"],
licenses: ["BSD3"],
links: %{"GitHub" => @github_url},
source_url: @github_url
]
end
defp docs do
[
logo: "priv/static/elm-logo.png",
extras: ["README.md"]
]
end
end