Packages
verk
0.9.8
1.7.3
1.7.2
1.7.1
1.7.0
1.6.4
1.6.3
1.6.2
1.6.1
1.6.0
1.5.0
1.4.1
1.4.0
1.3.0
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
0.14.1
0.14.0
0.13.6
0.13.5
0.13.4
0.13.3
0.13.2
0.13.1
0.13.0
0.12.1
0.12.0
0.11.1
0.11.0
0.10.0
0.9.13
0.9.12
0.9.11
0.9.10
0.9.9
0.9.8
0.9.7
0.9.6
0.9.5
0.9.4
0.9.3
0.9.2
0.9.1
0.9.0
Verk is a job processing system backed by Redis.
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Verk.Mixfile do
use Mix.Project
@description """
Verk is a job processing system backed by Redis.
"""
def project do
[app: :verk,
version: "0.9.8",
elixir: "~> 1.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
test_coverage: [tool: Coverex.Task, coveralls: true],
name: "Verk",
description: @description,
package: package,
deps: deps]
end
def application do
[applications: [:logger, :poison, :tzdata, :timex, :redix, :poolboy, :watcher],
env: [node_id: "1", redis_url: "redis://127.0.0.1:6379"],
mod: {Verk, []}]
end
defp deps do
[{ :redix, "~> 0.3.3" },
{ :poison, "~> 1.5" },
{ :timex, "~> 1.0" },
{ :poolboy, "~> 1.5.1" },
{ :watcher, "~> 1.0" },
{ :earmark, "~> 0.1.17", only: :docs },
{ :ex_doc, "~> 0.8.0", only: :docs },
{ :coverex, "~> 1.4.7", only: :test },
{ :meck, "~> 0.8", only: :test }]
end
defp package do
[ maintainers: ["Eduardo Gurgel Pinho", "Alisson Sales"],
licenses: ["MIT"],
links: %{"Github" => "https://github.com/edgurgel/verk"} ]
end
end