Current section
8 Versions
Jump to
Current section
8 Versions
Compare versions
4
files changed
+5
additions
-5
deletions
| @@ -5,7 +5,7 @@ Conqueuer (pronounced like conquer) is a non-persistent Elixir work queue. | |
| 5 5 | |
| 6 6 | ### Documentation and Information |
| 7 7 | |
| 8 | - The [docs](http://hexdocs.pm/conqueuer/0.5.0/Conqueuer.html) can be found on the |
| 8 | + The [docs](http://hexdocs.pm/conqueuer/0.5.1/Conqueuer.html) can be found on the |
| 9 9 | hexdocs website and [further information](https://hex.pm/packages/conqueuer) on the |
| 10 10 | hex website. |
| 11 11 | |
| @@ -17,7 +17,7 @@ Conqueuer can be installed like: | |
| 17 17 | 1. Add test to your list of dependencies in `mix.exs`: |
| 18 18 | |
| 19 19 | def deps do |
| 20 | - [{:conqueuer, "~> 0.5.0"}] |
| 20 | + [{:conqueuer, "~> 0.5.1"}] |
| 21 21 | end |
| 22 22 | |
| 23 23 | 2. Ensure test is started before your application: |
| @@ -20,4 +20,4 @@ | |
| 20 20 | [{<<"app">>,<<"poolboy">>}, |
| 21 21 | {<<"optional">>,false}, |
| 22 22 | {<<"requirement">>,<<"~> 1.5">>}]}]}. |
| 23 | - {<<"version">>,<<"0.5.0">>}. |
| 23 | + {<<"version">>,<<"0.5.1">>}. |
| @@ -61,7 +61,7 @@ defmodule Conqueuer.Worker do | |
| 61 61 | raise "You must define a perform/1 function in your worker" |
| 62 62 | end |
| 63 63 | |
| 64 | - defoverridable [ perform: 1, perform: 2 ] |
| 64 | + defoverridable [ init: 1, perform: 1, perform: 2 ] |
| 65 65 | end |
| 66 66 | end |
| @@ -3,7 +3,7 @@ defmodule Conqueuer.Mixfile do | |
| 3 3 | |
| 4 4 | def project do |
| 5 5 | [app: :conqueuer, |
| 6 | - version: "0.5.0", |
| 6 | + version: "0.5.1", |
| 7 7 | elixir: "~> 1.1", |
| 8 8 | build_embedded: Mix.env == :prod, |
| 9 9 | preferred_cli_env: [espec: :test], |