-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
39 lines (34 loc) · 934 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
defmodule Phoenix.PubSub.Nats.Mixfile do
use Mix.Project
def project do
[app: :phoenix_pubsub_nats,
version: "0.0.1",
elixir: "~> 1.2",
description: description(),
package: package(),
source_url: "https://github.com/mtokioka/phoenix_pubsub_nats",
deps: deps(),
docs: [readme: "README.md", main: "README"]]
end
def application do
[applications: [:logger, :poolboy, :phoenix_pubsub, :libring, :gnat]]
end
defp deps do
[{:poolboy, ">= 1.4.2"},
{:phoenix_pubsub, ">= 1.0.0"},
{:gnat, ">= 0.3.0"},
{:libring, "~> 1.0"},
]
end
defp description do
"""
Nats adapter for the Phoenix framework PubSub layer.
"""
end
defp package do
[files: ["lib", "mix.exs", "README.md", "LICENSE"],
contributors: ["Masahiro Tokioka"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/mtokioka/phoenix_pubsub_nats"}]
end
end