Skip to content

Commit 8251d26

Browse files
committed
v2.2.1 updates
1 parent 8c97ac1 commit 8251d26

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

changelog

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
Version 3.0.0
1+
Version 2.2.1
22
- Force listen/notify on worker
33
- Notifications happen inside PostgreSQL trigger
4+
- Add rake task for generating rails migrations
5+
- Fix bug related to listening worker
46

57
Version 2.2.0
68
- Use json from the stdlib in place of MultiJson.

queue_classic.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Gem::Specification.new do |s|
33
s.name = "queue_classic"
44
s.email = "[email protected]"
5-
s.version = "2.2.0"
5+
s.version = "2.2.1"
66
s.date = "2013-01-02"
77
s.description = "queue_classic is a queueing library for Ruby apps. (Rails, Sinatra, Etc...) queue_classic features asynchronous job polling, database maintained locks and no ridiculous dependencies. As a matter of fact, queue_classic only requires pg."
88
s.summary = "postgres backed queue"

readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# queue_classic
22

3-
v2.2.0
3+
v2.2.1
44

55
queue_classic provides a simple interface to a PostgreSQL-backed message queue. queue_classic specializes in concurrent locking and minimizing database load while providing a simple, intuitive developer experience. queue_classic assumes that you are already using PostgreSQL in your production environment and that adding another dependency (e.g. redis, beanstalkd, 0mq) is undesirable.
66

@@ -14,7 +14,7 @@ Features:
1414

1515
Contents:
1616

17-
* [Documentation](http://rubydoc.info/gems/queue_classic/2.2.0/frames)
17+
* [Documentation](http://rubydoc.info/gems/queue_classic/2.2.1/frames)
1818
* [Usage](#usage)
1919
* [Setup](#setup)
2020
* [Configuration](#configuration)
@@ -129,7 +129,7 @@ Declare dependencies in Gemfile.
129129

130130
```ruby
131131
source "http://rubygems.org"
132-
gem "queue_classic", "2.2.0"
132+
gem "queue_classic", "2.2.1"
133133
```
134134

135135
By default, queue_classic will use the QC_DATABASE_URL falling back on DATABASE_URL. The URL must be in the following format: `postgres://username:password@localhost/database_name`. If you use Heroku's PostgreSQL service, this will already be set. If you don't want to set this variable, you can set the connection in an initializer. **QueueClassic will maintain its own connection to the database.** This may double the number of connections to your database. Set QC::Conn.connection to share the connection between Rails & QueueClassic

0 commit comments

Comments
 (0)