-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathmix.exs
More file actions
32 lines (27 loc) · 694 Bytes
/
mix.exs
File metadata and controls
32 lines (27 loc) · 694 Bytes
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
defmodule Boltun.Mixfile do
use Mix.Project
def project do
[app: :boltun,
version: "1.0.2",
elixir: "~> 1.0",
deps: deps(),
package: package(),
description: description()]
end
def application do
[applications: [:postgrex, :logger]]
end
defp deps do
[{:postgrex, "~> 0.13"},
{:earmark, "~> 1.2", only: :dev},
{:ex_doc, "~> 0.16", only: :dev}]
end
defp description do
"Transforms notifications from the Postgres LISTEN/NOTIFY mechanism into callback execution"
end
defp package do
[maintainers: ["Michele Balistreri"],
licenses: ["ISC"],
links: %{"GitHub" => "https://github.com/bitgamma/boltun"}]
end
end