signalize 1.3.0 → 1.3.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +2 -2
- data/README.md +1 -1
- data/lib/signalize/version.rb +1 -1
- data/signalize.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7be054131b629522f7ad9db32f01f5c90c3ef9013c813e8bbfc1c08377b93065
|
4
|
+
data.tar.gz: 611dc19fe9015db1bc7a7d9a709f56e34b734dfe92d4233adb0d3ef0e880fad3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c2e4d481e3c66f0e40b7699f29c994b2ba7a06cb7fb3866bc3c7bc1388c9422563aa73dc743c570e2f4fd37da5975e93d078d27e30a7200f25421f5fcaf2b89
|
7
|
+
data.tar.gz: 455cd054443c3da1ef07b2eef10aa544356e54c6c1fe799c55262712652219b9fe4d4d9a5201aed109ea69b7b9afd32ee9e71c675fd36f946dd9f7c9933d53d0
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
signalize (1.3.
|
4
|
+
signalize (1.3.1)
|
5
5
|
concurrent-ruby (~> 1.2)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
10
|
coderay (1.1.3)
|
11
|
-
concurrent-ruby (1.
|
11
|
+
concurrent-ruby (1.3.5)
|
12
12
|
ffi (1.15.5)
|
13
13
|
formatador (1.1.0)
|
14
14
|
guard (2.18.0)
|
data/README.md
CHANGED
@@ -313,7 +313,7 @@ Signalize is considered a direct port of the [original Signals JavaScript librar
|
|
313
313
|
|
314
314
|
However, if you're able to supply a bugfix or performance optimization which will help bring Signalize _more_ into alignment with its Signals counterpart, we will gladly accept your PR!
|
315
315
|
|
316
|
-
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://
|
316
|
+
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://codeberg.org/jaredwhite/signalize/src/branch/main/CODE_OF_CONDUCT.md).
|
317
317
|
|
318
318
|
## License
|
319
319
|
|
data/lib/signalize/version.rb
CHANGED
data/signalize.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
|
11
11
|
spec.summary = "A Ruby port of Signals, providing reactive variables, derived computed state, side effect callbacks, and batched updates."
|
12
12
|
spec.description = spec.summary
|
13
|
-
spec.homepage = "https://
|
13
|
+
spec.homepage = "https://codeberg.org/jaredwhite/signalize"
|
14
14
|
spec.license = "MIT"
|
15
15
|
spec.required_ruby_version = ">= 3.0.0"
|
16
16
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: signalize
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jared White
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2025-08-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: concurrent-ruby
|
@@ -45,12 +45,12 @@ files:
|
|
45
45
|
- lib/signalize/struct.rb
|
46
46
|
- lib/signalize/version.rb
|
47
47
|
- signalize.gemspec
|
48
|
-
homepage: https://
|
48
|
+
homepage: https://codeberg.org/jaredwhite/signalize
|
49
49
|
licenses:
|
50
50
|
- MIT
|
51
51
|
metadata:
|
52
|
-
homepage_uri: https://
|
53
|
-
source_code_uri: https://
|
52
|
+
homepage_uri: https://codeberg.org/jaredwhite/signalize
|
53
|
+
source_code_uri: https://codeberg.org/jaredwhite/signalize
|
54
54
|
post_install_message:
|
55
55
|
rdoc_options: []
|
56
56
|
require_paths:
|
@@ -66,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
66
|
- !ruby/object:Gem::Version
|
67
67
|
version: '0'
|
68
68
|
requirements: []
|
69
|
-
rubygems_version: 3.
|
69
|
+
rubygems_version: 3.5.16
|
70
70
|
signing_key:
|
71
71
|
specification_version: 4
|
72
72
|
summary: A Ruby port of Signals, providing reactive variables, derived computed state,
|