forked from CaptChrisD/logger_led_backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
42 lines (34 loc) · 1007 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
defmodule LoggerLedBackend.Mixfile do
@version "2.0.0"
use Mix.Project
def project do
[ app: :logger_led_backend,
version: @version,
elixir: "~> 1.11",
deps: deps(),
description: description(),
package: package(),
name: "LoggerLedBackend",
docs: [
source_ref: "v#{@version}", main: "LoggerLedBackend",
source_url: "https://github.com/CaptChrisD/logger_led_backend",
extras: [ "README.md", "CHANGELOG.md"] ]]
end
def application do [
applications: [:logger, :nerves_leds]
]
end
defp description do
"A backend for Logger that Flashes LED when log events meeting level received"
end
defp deps, do: [
{:ex_doc, "~> 0.23"},
{:nerves_leds, "~>0.8.1"}
]
defp package do
[ maintainers: ["Rose Point"],
licenses: ["MIT"],
links: %{github: "https://github.com/rosepointnav/logger_led_backend"},
files: ~w(lib config) ++ ~w(README.md CHANGELOG.md LICENSE mix.exs) ]
end
end