-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
46 lines (38 loc) · 966 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
44
45
46
defmodule Exstatic.Mixfile do
use Mix.Project
@version "0.1.0"
def project do
[app: :exstatic,
version: @version,
elixir: "~> 1.0",
deps: deps,
package: package,
description: description,
name: "ExStatic"]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:plug, "~> 1.0"}
]
end
defp description do
"""
Serve static files from memory in the Phoenix Framework.
This extension compiles all of a project's static assets
(e.g. Javascript, HTML, images, etc) into Erlang modules and loads
them into the Erlang VM, with the purpose of serving them fast and
without a dependency on a filesystem.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: ["Arjan Scherpenisse"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/arjan/exstatic"}
]
end
end