Skip to content

Commit

Permalink
version 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Smith (ace hacker) committed May 8, 2012
1 parent 1664e47 commit 54295fa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
11 changes: 6 additions & 5 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
Version 2.0.0rc4
- fix the loading of sql functions

Version 2.0.0rc1
- TODO
Version 2.0.0
- simpler setup via QC::Setup.create (rake qc:create) & QC::Setup.drop (rake
qc:drop)
- simpler abstractions in implementation
- better support for instrumentation via log_yield hook in QC module
- multiple queues use one table with a queue_name column

Version 1.0.2
- update to latest okjson as the current has bugs
Expand Down
4 changes: 2 additions & 2 deletions queue_classic.gemspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Gem::Specification.new do |s|
s.name = "queue_classic"
s.email = "[email protected]"
s.version = "2.0.0rc14"
s.version = "2.0.0"
s.date = "2012-02-29"
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."
s.summary = "postgres backed queue"
s.authors = ["Ryan Smith (ace hacker)"]
s.authors = ["Ryan Smith (ace hacker)"]
s.homepage = "http://github.com/ryandotsmith/queue_classic"

files = []
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# queue_classic

v2.0.0rc14
v2.0.0

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

```ruby
source :rubygems
gem "queue_classic", "2.0.0rc14"
gem "queue_classic", "2.0.0"
```

**Rakefile**
Expand Down

0 comments on commit 54295fa

Please sign in to comment.