piko-tools 1.0.3 → 1.0.4

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: b24d94cf9680123a4cc1c2b421fe6d35db7ddc083dcf5558f8cbcf2950e115cf
4
- data.tar.gz: 0a43ccdded4b3f0122a2a21eebd6f8a974925663c454f172ca21814bbb145727
3
+ metadata.gz: 7bf8c65f75aad253dae581f3b224a307bae2ae11e6287c3c2a82ce669a68c6db
4
+ data.tar.gz: d6450a1138e28358eece0626d185b66a640230f32648567bce7f73d30039feaa
5
5
  SHA512:
6
- metadata.gz: 11b82066788856f87b1ece4f1b41345f8d5a10cfce114091378998bee60a057917e5a961b0456e335bee773cf4f2139575040afef6398740956a036db2ef0cda
7
- data.tar.gz: 7be734cea5b77fb79e92da3fcce5c32d04ddff0e8292f49dc0dfdb7ecbd6368d6e83a5c775392b21b8f0dc46563bd48ad2b86e7ec5833cbf19568d26a9070b34
6
+ metadata.gz: 616e52664b0662f36a4ba8f633a13cc8347452d82cf947467cde6d5e6437df94263a61515b4c8257a18b5bc0741ba9fa6d54b49c24fc28f7185e5233546046b2
7
+ data.tar.gz: 8f9dffd341e6e134241ecbc70b2d10499bc65ae729fb992d90d0a26c18e9656f06b59b372a9537d089ab3fbf80b683b4095980077bf5d7937bc5874399fc5d9b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.3] - 2026-05-21
4
+
5
+ ### Changed
6
+
7
+ - Cleanup, tests, optimization
8
+
3
9
  ## [1.0.2] - 2025-09-02
4
10
 
5
11
  ### Fixed
@@ -20,6 +26,8 @@ Init
20
26
 
21
27
  - Init
22
28
 
29
+ [1.0.3]: https://gitlab.com/skopciewski/piko-tools/-/compare/1.0.2...1.0.3
30
+
23
31
  [1.0.2]: https://gitlab.com/skopciewski/piko-tools/-/compare/1.0.1...1.0.2
24
32
 
25
33
  [1.0.1]: https://gitlab.com/skopciewski/piko-tools/-/compare/1.0.0...1.0.1
data/README.md CHANGED
@@ -67,7 +67,7 @@ handler # => #<Handler @args={foo: 1, bar: 2, build_args: {baz: 3}}>
67
67
 
68
68
  ### Component
69
69
 
70
- Mixin providing config-based private attributes via `OpenStruct`.
70
+ Mixin providing config-based private attributes.
71
71
 
72
72
  ```ruby
73
73
  class MyComponent
@@ -1,3 +1,3 @@
1
1
  module PikoTools
2
- VERSION = "1.0.3"
2
+ VERSION = "1.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: piko-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Szymon Kopciewski
@@ -65,7 +65,9 @@ dependencies:
65
65
  - - ">="
66
66
  - !ruby/object:Gem::Version
67
67
  version: '0'
68
- description: Micro-framework for building applications with data-driven architecture
68
+ description: 'PikoTools bundles three foundational patterns for Ruby applications:
69
+ a lazy lifecycle manager (State), a fluent builder DSL (Builder), and a config-driven
70
+ mixin (Component). Designed for minimal overhead with no external dependencies.'
69
71
  email:
70
72
  - s.kopciewski@dlamnie.net
71
73
  executables: []
@@ -101,5 +103,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
101
103
  requirements: []
102
104
  rubygems_version: 3.6.9
103
105
  specification_version: 4
104
- summary: Micro-framework for building applications with data-driven architecture
106
+ summary: Data-driven application toolkit with lifecycle, builder, and component patterns
105
107
  test_files: []