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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a0caca6f4fbd9e03da42b9a5d6774f41cd3a75e0c3531e6a4a856a6db46fda31
4
- data.tar.gz: 405900c040ca95a168ab288cdd44d3bbfb563c3513ba34bf17ca4054262591ba
3
+ metadata.gz: 7be054131b629522f7ad9db32f01f5c90c3ef9013c813e8bbfc1c08377b93065
4
+ data.tar.gz: 611dc19fe9015db1bc7a7d9a709f56e34b734dfe92d4233adb0d3ef0e880fad3
5
5
  SHA512:
6
- metadata.gz: 2620410cdb72ea66cf1a6a9deef3d2d945b9208fd80c3d351a4946f31ae3288302c095420a3c8c4351688bef6fb788c936de5e2aead20e6003ae001d5303290c
7
- data.tar.gz: 44c96f16d953c00127df8a21905515e29accdac583117ccd52d7c5f410fe190bc98962c173968bda2f460227745a462fade990aba26a4c4ddbbf55b6f23904b1
6
+ metadata.gz: 8c2e4d481e3c66f0e40b7699f29c994b2ba7a06cb7fb3866bc3c7bc1388c9422563aa73dc743c570e2f4fd37da5975e93d078d27e30a7200f25421f5fcaf2b89
7
+ data.tar.gz: 455cd054443c3da1ef07b2eef10aa544356e54c6c1fe799c55262712652219b9fe4d4d9a5201aed109ea69b7b9afd32ee9e71c675fd36f946dd9f7c9933d53d0
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [1.3.1] - 2025-08-16
6
+
7
+ - Migrate project to Codeberg
8
+
5
9
  ## [1.3.0] - 2023-10-04
6
10
 
7
11
  - Provide `Signalize::Struct`, a struct-like object to hold multiple signals (including computed)
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- signalize (1.3.0)
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.2.2)
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://github.com/whitefusionhq/signalize/blob/main/CODE_OF_CONDUCT.md).
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Signalize
4
- VERSION = "1.3.0"
4
+ VERSION = "1.3.1"
5
5
  end
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://github.com/whitefusionhq/signalize"
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.0
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: 2023-10-04 00:00:00.000000000 Z
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://github.com/whitefusionhq/signalize
48
+ homepage: https://codeberg.org/jaredwhite/signalize
49
49
  licenses:
50
50
  - MIT
51
51
  metadata:
52
- homepage_uri: https://github.com/whitefusionhq/signalize
53
- source_code_uri: https://github.com/whitefusionhq/signalize
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.3.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,