minion 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +3 -3
- data/VERSION +1 -1
- metadata +1 -1
data/README.rdoc
CHANGED
|
@@ -5,11 +5,11 @@ Minion makes processing jobs over AMQP simple and easy.
|
|
|
5
5
|
|
|
6
6
|
== Setup
|
|
7
7
|
|
|
8
|
-
Minion pulls the AMQP credentials out the environment via
|
|
8
|
+
Minion pulls the AMQP credentials out the environment via AMQP_URL.
|
|
9
9
|
|
|
10
|
-
$ export
|
|
10
|
+
$ export AMQP_URL="amqp://johndoe:abc123@localhost/my_vhost"
|
|
11
11
|
|
|
12
|
-
If no
|
|
12
|
+
If no URL is supplied, Minion defaults to "amqp://guest:guest@localhost/" which
|
|
13
13
|
is the default credentials for Rabbitmq running locally.
|
|
14
14
|
|
|
15
15
|
== Principles
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.7
|