perfectqueue 0.7.29 → 0.7.30

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog CHANGED
@@ -1,4 +1,9 @@
1
1
 
2
+ == 2014-04-24 version 0.7.30
3
+
4
+ * RDBBackend: fixed NoMethodError for @url
5
+
6
+
2
7
  == 2014-04-24 version 0.7.29
3
8
 
4
9
  * RDBBackend: add MySQL's SSL support
@@ -19,7 +19,7 @@ class RDBBackend < Backend
19
19
  port: u.port ? u.port.to_i : 3306
20
20
  }
21
21
  options[:sslca] = config[:sslca] if config[:sslca]
22
- db_name = @uri.path.split('/')[1]
22
+ db_name = u.path.split('/')[1]
23
23
  @db = Sequel.mysql2(db_name, options)
24
24
 
25
25
  #@last_time = Time.now.to_i
@@ -1,5 +1,5 @@
1
1
  module PerfectQueue
2
2
 
3
- VERSION = '0.7.29'
3
+ VERSION = '0.7.30'
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: perfectqueue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.29
4
+ version: 0.7.30
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-04-24 00:00:00.000000000 Z
12
+ date: 2014-04-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sequel