-
Notifications
You must be signed in to change notification settings - Fork 10
/
mix.exs
46 lines (40 loc) · 1.01 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
defmodule Reprise.Mixfile do
use Mix.Project
def project do
[app: :reprise,
version: "0.5.2-dev",
elixir: "~> 1.1",
description: description(),
package: package(),
deps: deps()]
end
def application do
[mod: {Reprise, []},
registered: [Reprise],
applications: [:logger],
description: 'Simple module reloader',
]
end
defp deps do
[
{:dialyze, "~> 0.2", only: :dev},
{:ex_doc, "~> 0.30.6", only: :dev},
]
end
defp description do
"""
Reprise reloads your modules after they've been recompiled.
It is thought as a companion to inotify tools.
It scans for changes in beam files belonging to youyr project.
Doesn't recompile stuff by itself.
"""
end
defp package do
[ maintainers: ["Wojciech Kaczmarek",
"Yurii Rashkovskii", "Jay Doane", "Josh Austin"],
licenses: ["BSD"],
description: description(),
links: %{"GitHub" => "https://github.com/herenowcoder/reprise"}
]
end
end