README.md in afterparty-0.0.2 vs README.md in afterparty-0.0.3
- old
+ new
@@ -1,9 +1,11 @@
# Afterparty
-A Rails 4 compatible queue with support for executing jobs in the future and serialization with Redis.
+[![Build Status](https://travis-ci.org/hstove/afterparty.png?branch=master)](https://travis-ci.org/hstove/afterparty)
+A Rails 4 compatible queue with support for executing jobs in the future and persistence with Redis.
+
## Installation
Make sure you've installed [redis](http://redis.io) on your machine.
Add this line to your application's Gemfile:
@@ -39,10 +41,10 @@
~~~
Then add it to the queue at any time.
~~~Ruby
-Rails.queue << Job.new
+Rails.configuration.queue << Job.new
~~~
If your job responds to an `execute_at` method, the queue will wait to process that job until the specified time.
## Contributing