core-local 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/CHANGELOG.md +6 -0
- data/lib/core/local/store.rb +1 -1
- data/lib/core/local/version.rb +1 -1
- data/lib/is/localized.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3833c0a7562ca1fa2a2a5d278cf5978003da75f418e2e95523a5c160156edfbb
|
|
4
|
+
data.tar.gz: bd2708472e0410a3e93ab4ced300afce6da45e716022bdde102ec1dda0f4ade8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9418411bba915f4597a9f05bf4dfc24d8a5d66cf06ea9b8417ecea0f0ca760eed8e6642cd438457384e8dd9f68d61e3595274a9f453ecb04a21d63b7209b22cb
|
|
7
|
+
data.tar.gz: 37c59aa28256ffb3e34c193024194b18d2fc93a1c090b67a04a27b2ef27eb193235618eadc4d2a42d0a96887a3affd2a811f76824607504c03e45eefbe2646c8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [v0.1.2](https://github.com/metabahn/corerb/releases/tag/2021-11-02)
|
|
2
|
+
|
|
3
|
+
*released on 2021-11-02*
|
|
4
|
+
|
|
5
|
+
* `chg` [#97](https://github.com/metabahn/corerb/pull/97) Designate internal state with leading and trailing double underscores ([bryanp](https://github.com/bryanp))
|
|
6
|
+
|
|
1
7
|
## [v0.1.0](https://github.com/metabahn/corerb/releases/tag/2021-07-07)
|
|
2
8
|
|
|
3
9
|
*released on 2021-07-07*
|
data/lib/core/local/store.rb
CHANGED
|
@@ -13,7 +13,7 @@ module Core
|
|
|
13
13
|
def_delegators :state, :[], :[]=, :fetch, :delete, :clear, :count
|
|
14
14
|
|
|
15
15
|
def initialize
|
|
16
|
-
@key = :"__corerb_localized_state_#{object_id}"
|
|
16
|
+
@key = :"__corerb_localized_state_#{object_id}__"
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
# [public] Returns a proc that, when called, deletes the key from the global store.
|
data/lib/core/local/version.rb
CHANGED
data/lib/is/localized.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: core-local
|
|
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
|
- Bryan Powell
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-11-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: core-extension
|
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '0'
|
|
71
71
|
requirements: []
|
|
72
|
-
rubygems_version: 3.2.
|
|
72
|
+
rubygems_version: 3.2.22
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: Manage thread-local program state.
|