forked from wkhere/webassembly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
50 lines (42 loc) · 1.2 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
defmodule WebAssembly.Mixfile do
use Mix.Project
def project do
[app: :webassembly,
docs: [main: WebAssembly],
version: "0.7.0-dev",
elixir: "~> 1.0",
deps: deps,
description: description,
package: package,
test_coverage: [tool: ExCoveralls]]
end
def application do
[applications: [],
description: 'Web DSL']
end
defp deps, do: [
{:excoveralls, "== 0.3.6", only: :test},
{:ex_doc, "~> 0.7.1", only: :dev},
{:dialyze, "== 0.1.3", only: :dev},
]
defp description do
~S"""
WebAssembly is a web DSL for Elixir.
You create html structure straight using do blocks.
Means, you can intermix html-building blocks with full Elixir syntax.
DSL output is an iolist, which you can flatten to string, but
better use is to just feed it to the socket (via Plug & Cowboy).
WebAssembly aims to have 100% test coverage.
"""
end
defp package do
[ maintainers: ["Wojciech Kaczmarek"],
licenses: ["BSD"],
description: description,
links: %{
"GitHub" => "https://github.com/herenowcoder/webassembly",
"HexDocs" => "http://hexdocs.pm/webassembly",
},
]
end
end