-
Notifications
You must be signed in to change notification settings - Fork 23
/
mix.exs
36 lines (31 loc) · 839 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
defmodule Phoenix.PubSub.RabbitMQ.Mixfile do
use Mix.Project
def project do
[app: :phoenix_pubsub_rabbitmq,
version: "0.0.1",
elixir: "~> 1.0",
description: description,
package: package,
source_url: "https://github.com/pma/phoenix_pubsub_rabbitmq",
deps: deps,
docs: [readme: "README.md", main: "README"]]
end
def application do
[applications: [:logger, :amqp, :poolboy]]
end
defp deps do
[{:poolboy, "~> 1.4.2"},
{:amqp, "~> 0.1.0"}]
end
defp description do
"""
RabbitMQ adapter for the Phoenix framework PubSub layer.
"""
end
defp package do
[files: ["lib", "mix.exs", "README.md", "LICENSE"],
contributors: ["Paulo Almeida"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/pma/phoenix_pubsub_rabbitmq"}]
end
end