stealth 2.1.0 → 2.1.1

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/VERSION +1 -1
  4. data/lib/stealth/redis.rb +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ac41b0515e5073d79de1d4c5abdc76ec7ab57eccbc3ba5b8ce0e081f4ef8de51
4
- data.tar.gz: 88621a529af26a406f02e65b8f757a0969d3a936577b522b2589e781e676a987
3
+ metadata.gz: 97316a583a77734ec9025c02d4b5171a5fa0f536d0e19514b404c5fbc6545ed5
4
+ data.tar.gz: 67d00b23cfdc66e1d6fb5853d09fe2b122ff225c9f906e0d1f66b88b07e9158c
5
5
  SHA512:
6
- metadata.gz: 78ece1a059e95b7df55ed430f35adb79cb1bb8e7a9b5df659def6513cf670db0123525f026855b31f96d00d15506478f77a6aa567a99597df122297dad8c979d
7
- data.tar.gz: 92e908365e8256fa2264609224b9a136254bec5fd91aea08bf277f6b2e2173c9b09774fac1da3762617ac29df08ac56cbcb4ae9178f02674b927a5d24667e0db
6
+ metadata.gz: 4ec0437b731a88a662cfc3f68af359e8cfe415bc0453ca83db1e899da3546314042a61a007782570974e7e8adf2f1db7adff7c5b599bcd2fd71706572faaea53
7
+ data.tar.gz: 12547504be798166ee1e52fedcb304bb2e5c62e62668b7a144010912cfcb37fcc2ae3442fa18a401582b9154eca48e1af5d9772ee36f0687b80ba4d4f7e900e9
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stealth (2.1.0)
4
+ stealth (2.1.1)
5
5
  activesupport (~> 7.0)
6
6
  connection_pool (~> 2.4)
7
7
  multi_json (~> 1.12)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.1.0
1
+ 2.1.1
data/lib/stealth/redis.rb CHANGED
@@ -8,7 +8,7 @@ module Stealth
8
8
  attr_accessor :url, :pool_size, :pool_timeout
9
9
 
10
10
  def initialize
11
- @url = Stealth.env.development? ? "redis://localhost:6379/0" : ENV["STEALTH_REDIS_URL"] || ENV["REDIS_URL"]
11
+ @url = ENV["STEALTH_REDIS_URL"] || ENV["REDIS_URL"] || "redis://localhost:6379/0"
12
12
  @pool_size = Integer(ENV["STEALTH_REDIS_POOL"] || 5)
13
13
  @pool_timeout = Integer(ENV["STEALTH_REDIS_TIMEOUT"] || 5)
14
14
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stealth
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mauricio Gomes
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-08-07 00:00:00.000000000 Z
12
+ date: 2025-08-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport