super_settings 2.4.1 → 2.4.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/CHANGELOG.md +7 -0
- data/VERSION +1 -1
- data/lib/super_settings/storage/active_record_storage/models.rb +1 -1
- metadata +3 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d80612beb95bf30870eef8bca3bed811862aa7d31a99623b82d135ea76e79f98
|
|
4
|
+
data.tar.gz: '019850dc33568275cb36331fdb400a00c524a5dbee30422b2644ad3653ada68c'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bc91ad9dd827f2da3d7e95d13533f9246d28cad89190a9f7cf2b14c6a3483d12d2f08a844ac0cd9567d5eb513074f756bcb7fc2411a8c4f85ed19bb0198bebd
|
|
7
|
+
data.tar.gz: 9ae633a96ef5ad2fc764be7d1351917be738773254aa0ad96fa5b17bdde522e7cae600cc0a7546447a73f6575df81f512578e7b3191aef878ab09bb90df27912
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## 2.4.2
|
|
8
|
+
|
|
9
|
+
### Fxied
|
|
10
|
+
|
|
11
|
+
- Model.availability? can return false when connection pool connection exists for active record storage
|
|
12
|
+
|
|
13
|
+
|
|
7
14
|
## 2.4.1
|
|
8
15
|
|
|
9
16
|
### Added
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.4.
|
|
1
|
+
2.4.2
|
|
@@ -17,7 +17,7 @@ module SuperSettings
|
|
|
17
17
|
# ActiveRecord storage is only available if the connection pool is connected and the table exists.
|
|
18
18
|
def available?
|
|
19
19
|
attempt_connection!
|
|
20
|
-
connection_pool
|
|
20
|
+
connection_pool.with_connection { table_exists? }
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
private
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: super_settings
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.4.
|
|
4
|
+
version: 2.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Durand
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: bundler
|
|
@@ -24,7 +23,6 @@ dependencies:
|
|
|
24
23
|
- - ">="
|
|
25
24
|
- !ruby/object:Gem::Version
|
|
26
25
|
version: '0'
|
|
27
|
-
description:
|
|
28
26
|
email:
|
|
29
27
|
- bbdurand@gmail.com
|
|
30
28
|
executables: []
|
|
@@ -96,7 +94,6 @@ metadata:
|
|
|
96
94
|
homepage_uri: https://github.com/bdurand/super_settings
|
|
97
95
|
source_code_uri: https://github.com/bdurand/super_settings
|
|
98
96
|
changelog_uri: https://github.com/bdurand/super_settings/blob/main/CHANGELOG.md
|
|
99
|
-
post_install_message:
|
|
100
97
|
rdoc_options: []
|
|
101
98
|
require_paths:
|
|
102
99
|
- lib
|
|
@@ -111,8 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
111
108
|
- !ruby/object:Gem::Version
|
|
112
109
|
version: '0'
|
|
113
110
|
requirements: []
|
|
114
|
-
rubygems_version: 3.
|
|
115
|
-
signing_key:
|
|
111
|
+
rubygems_version: 3.6.9
|
|
116
112
|
specification_version: 4
|
|
117
113
|
summary: SuperSettings provides a scalable framework for managing dynamic runtime
|
|
118
114
|
application settings with in-memory caching, strong typing, a built-in web UI, and
|