queue_classic 2.2.1 → 2.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/readme.md +3 -3
  3. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3137935dc373e4d8af179e93422961d1a5c07e89
4
- data.tar.gz: 709e4565ef2dcf4635094391558942c02c44e113
3
+ metadata.gz: 11ab0c3c8f956147d92d4e4c26afcbc30d102b74
4
+ data.tar.gz: 6e6999ac49bd207a12bc134a86121573d6b2efff
5
5
  SHA512:
6
- metadata.gz: 0141f28277f3f8e26422c77c0787f3cbc84986504a97a762a62119a0036237feea1fc43ee7cc081e2483737d524aa3576d553a1a8601bf15688cf11fc0576f81
7
- data.tar.gz: 4abb6f06e3ab1e7ad39e410cea0ff277a4b0948faf923797cec4e193131f1c54d69b36a90fba06c43b9ef6f0ed1f69ad7a9acde266c48f3566fe3a72f9e05ed1
6
+ metadata.gz: 11a3b9d8577aed68d3fabecc18cd800706de22c9731d3da642453242e826cb7ad8a8edd6bd4ecbbc80bf10aeedb8adebf479ce51f092633542e443530dbbbfbc
7
+ data.tar.gz: 25a04c43672817244f3ac0eda71c265e97e3731b92e8145550ea15f63a19b0fd51fd8baa454e0762c9f9ef2358cca1b0487d60f227077b64e79f213fd7753b6c
data/readme.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # queue_classic
2
2
 
3
- v2.2.1
3
+ v2.2.2
4
4
 
5
5
  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.
6
6
 
@@ -14,7 +14,7 @@ Features:
14
14
 
15
15
  Contents:
16
16
 
17
- * [Documentation](http://rubydoc.info/gems/queue_classic/2.2.1/frames)
17
+ * [Documentation](http://rubydoc.info/gems/queue_classic/2.2.2/frames)
18
18
  * [Usage](#usage)
19
19
  * [Setup](#setup)
20
20
  * [Configuration](#configuration)
@@ -129,7 +129,7 @@ Declare dependencies in Gemfile.
129
129
 
130
130
  ```ruby
131
131
  source "http://rubygems.org"
132
- gem "queue_classic", "2.2.1"
132
+ gem "queue_classic", "2.2.2"
133
133
  ```
134
134
 
135
135
  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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: queue_classic
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Smith (♠ ace hacker)
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: 0.15.1
19
+ version: 0.16.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: 0.15.1
26
+ version: 0.16.0
27
27
  description: queue_classic is a queueing library for Ruby apps. (Rails, Sinatra, Etc...)
28
28
  queue_classic features asynchronous job polling, database maintained locks and no
29
29
  ridiculous dependencies. As a matter of fact, queue_classic only requires pg.
@@ -73,7 +73,7 @@ rubyforge_project:
73
73
  rubygems_version: 2.0.3
74
74
  signing_key:
75
75
  specification_version: 4
76
- summary: postgres backed queue
76
+ summary: Simple, efficient worker queue for Ruby & PostgreSQL.
77
77
  test_files:
78
78
  - test/benchmark_test.rb
79
79
  - test/conn_test.rb