Packages

A Celery producer for Elixir. Currently supports the RabbitMQ broker, and only publishing tasks (not running them or retrieving their result).

Current section

Files

Jump to
ex_celery mix.exs
Raw

mix.exs

defmodule ExCelery.Mixfile do
use Mix.Project
def project do
[
app: :ex_celery,
version: "0.1.2",
description: description(),
package: package(),
deps: deps(),
]
end
def application do
[applications: [:logger]]
end
defp deps do
[
{:amqp_client, git: "https://github.com/jbrisbin/amqp_client.git", override: true},
{:amqp, "0.1.4"},
{:poison, "~> 2.2"},
{:uuid, "~> 1.1"},
{:mock, "~> 0.2.0", only: :test},
]
end
defp description do
"""
A Celery producer for Elixir. Currently supports the RabbitMQ broker, and
only publishing tasks (not running them or retrieving their result).
"""
end
defp package do
[
maintainers: ["Rob Golding"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/robgolding/ex_celery",
"Docs" => "https://github.com/robgolding/ex_celery",
},
]
end
end