Skip to content

Commit 54295fa

Browse files
author
Ryan Smith (ace hacker)
committed
version 2.0
1 parent 1664e47 commit 54295fa

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

changelog

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
Version 2.0.0rc4
2-
- fix the loading of sql functions
3-
4-
Version 2.0.0rc1
5-
- TODO
1+
Version 2.0.0
2+
- simpler setup via QC::Setup.create (rake qc:create) & QC::Setup.drop (rake
3+
qc:drop)
4+
- simpler abstractions in implementation
5+
- better support for instrumentation via log_yield hook in QC module
6+
- multiple queues use one table with a queue_name column
67

78
Version 1.0.2
89
- update to latest okjson as the current has bugs

queue_classic.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Gem::Specification.new do |s|
22
s.name = "queue_classic"
33
s.email = "[email protected]"
4-
s.version = "2.0.0rc14"
4+
s.version = "2.0.0"
55
s.date = "2012-02-29"
66
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."
77
s.summary = "postgres backed queue"
8-
s.authors = ["Ryan Smith (ace hacker)"]
8+
s.authors = ["Ryan Smith (ace hacker)"]
99
s.homepage = "http://github.com/ryandotsmith/queue_classic"
1010

1111
files = []

readme.md

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

3-
v2.0.0rc14
3+
v2.0.0
44

55
queue_classic provides PostgreSQL-backed queueing focused on concurrent job
66
locking and minimizing database load while providing a simple, intuitive user
@@ -69,7 +69,7 @@ $ ruby -r queue_classic -e "QC::Worker.new.work"
6969

7070
```ruby
7171
source :rubygems
72-
gem "queue_classic", "2.0.0rc14"
72+
gem "queue_classic", "2.0.0"
7373
```
7474

7575
**Rakefile**

0 commit comments

Comments
 (0)