Packages

Elixir worker for Faktory (successor of Sidekiq); async/background queue processing

Current section

Files

Jump to
Raw

mix.exs

defmodule Faktory.Mixfile do
use Mix.Project
def project do
[
app: :faktory_worker_ex,
version: "0.2.0",
elixir: "~> 1.5",
start_permanent: Mix.env == :prod,
deps: deps(),
# Hex
description: "Elixir worker for Faktory",
package: [
maintainers: ["Christopher J. Bottaro"],
licenses: ["GNU General Public License v3.0"],
links: %{"GitHub" => "https://github.com/cjbottaro/faktory_worker_ex"},
],
# Docs
docs: [
extras: [
"README.md": [title: "README"],
"Architecture.md": [title: "Architecture"],
]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Faktory.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:connection, "~> 1.0"},
{:poison, "~> 3.1"},
{:poolboy, "~> 1.5"},
{:ex_doc, "~> 0.18.1", only: :dev},
]
end
end