tiny-redis 0.0.13 → 0.0.14

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7d027f2a5a16f37ee213f2fb5bbf6cc9cfeab6e2f734c3982eca4a0cd4f357df
4
- data.tar.gz: b8afbbedebb2c78b5497cc2f13dc2bc5d5757fe3b274b57f9c340857bf98c2bf
3
+ metadata.gz: 918f94d1b08f82aa6f060ae16cc3c97b6bbb11193ab07aa2716269712af1552d
4
+ data.tar.gz: b30a59ebd5df985b7a7a06c7e23c13e9d35719aeb49f1f33ae2d7f43c3ad7849
5
5
  SHA512:
6
- metadata.gz: 10a6cab1de4d76f20e9a53f9dbb22a3714c4444e3f806d1a72fd1454116b1415c2c040784f246879d7273713767a6f2ee429c8a2100ab47a66a8044176dca80a
7
- data.tar.gz: 52dff9c8552d0cae2f87cbbffeb93342951f5a89e732f7397cedd51a4557c7bfd56faea9957a17f94d3bc8c162331e38a873d13c18c79691ce0c54f1f2b47fa6
6
+ metadata.gz: 2be38b1337f852082f19b5e2c369272ad99cc6384737216bdf588f718d8dab3d0f7cc6d044f92e97534ed402dce80777f007312c9c9355d75fef1e11509b1fbe
7
+ data.tar.gz: 2693fdf6e11e657aa775a2c847dc663dbefaaec81d8f27e7f8fc6dbdfc68ae822cd3a65936e3c51c58aa6ee1bf4aa8ddee0a100a08dc84a34537f5cae1066cec
@@ -12,10 +12,10 @@ url = Env.fetch(:REDIS_URL){
12
12
  }
13
13
 
14
14
  if Rails.env.test?
15
- $redis = ConnectionPool::Wrapper.new(size: concurrency, timeout: timeout) { Redis.new(url: url }
15
+ $redis = ConnectionPool::Wrapper.new(size: concurrency, timeout: timeout) { Redis.new(url: url )}
16
16
  $redis.flushall
17
17
  else
18
- $redis = ConnectionPool::Wrapper.new(size: concurrency, timeout: timeout) { Redis.new(url: url }
18
+ $redis = ConnectionPool::Wrapper.new(size: concurrency, timeout: timeout) { Redis.new(url: url )}
19
19
  end
20
20
  EOD
21
21
  end
@@ -1,5 +1,5 @@
1
1
  module Tiny
2
2
  module Redis
3
- VERSION = '0.0.13'
3
+ VERSION = '0.0.14'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiny-redis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pavel Zaitsev