sqlcached_client 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/sqlcached_client/entity.rb +2 -2
- data/lib/sqlcached_client/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1d7081154f231b08f1e85a1fa5a7104fc0fd3fd
|
4
|
+
data.tar.gz: e9417935129734d01bb8963812dc7bad64f06d1d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5209a595a579fe676cafb93a560c3029a109a4bfc68aac344e909191fbae6b8693aa5d51b39db251bca2c59bed59a6323f103ca57d6ecb3f687858ba33af1d28
|
7
|
+
data.tar.gz: 6114598d416b573c17c69bc49084f760ac0aa06f126bae6061c8dabb1f2179b4e851de3505be98fb37056953d83c5a983d7bd785a4f426c3fd32f8fa5523dbd0
|
@@ -48,7 +48,7 @@ module SqlcachedClient
|
|
48
48
|
def server(config = nil)
|
49
49
|
if config.nil?
|
50
50
|
@server ||
|
51
|
-
if
|
51
|
+
if superclass = ancestors[1..-1].detect { |a| a.respond_to?(:server) }
|
52
52
|
superclass.server
|
53
53
|
else
|
54
54
|
nil
|
@@ -193,7 +193,7 @@ module SqlcachedClient
|
|
193
193
|
def cache(seconds = nil)
|
194
194
|
if seconds.nil?
|
195
195
|
@cache ||
|
196
|
-
if
|
196
|
+
if superclass = ancestors[1..-1].detect { |a| a.respond_to?(:cache) }
|
197
197
|
superclass.cache
|
198
198
|
else
|
199
199
|
true
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sqlcached_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roberto Maestroni
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-06-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|