philiprehberger-html_builder 0.2.0 → 0.2.3

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: 595807de03e97765d4e856e8c1948bf1bf5a2d47ab75fd847589ae3fb2751e95
4
- data.tar.gz: 6783b0d074ef48345176cf2dc69ea05a502eba3ab217399f0485d506e43789e3
3
+ metadata.gz: 7adb93135a8abcbddf9f42e762bc2bef5a4064f6f8f5b1da41886bb273c9772b
4
+ data.tar.gz: f4d99a25336e81110f750205034016462a3b81f586256b3460498adf755fb2fa
5
5
  SHA512:
6
- metadata.gz: e36fc11adf732b544ad9f42d43a91fbc2b230ed5bc5803ab2c16f8515ae7ccfe691dfc40a301e604a1cb10cf0aa8e6e2c82513a4e926b42e2ab2c35d8a5239ca
7
- data.tar.gz: b0ac790fd555a82e537f1b023a8f74f3de1d330ccfe3113fb4e11996d252f2d00221ac7c1109cf171080f693a283362d36b7abf6330aa8decf275c74a73588b4
6
+ metadata.gz: 2d0b29e568c5d08ab9722c1f23c8b1dc146dbc092ed0eaa80ef923f72342c20b27647c2b85b9b6f7492334e89e9b035eb0255a2033674bffce5f1b01e462d519
7
+ data.tar.gz: bde5f9a4a4514748e0f13b32120a497b585ce7a6a6b8c2a2dbab27ef23beb2e48461eb11f539ee076d8b6d2a1fbe5e83cabf20eec8a81449752f01ca7e89cab6
data/CHANGELOG.md CHANGED
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.3] - 2026-04-08
11
+
12
+ ### Changed
13
+ - Align gemspec summary with README description.
14
+
15
+ ## [0.2.2] - 2026-03-31
16
+
17
+ ### Added
18
+ - Add GitHub issue templates, dependabot config, and PR template
19
+
20
+ ## [0.2.1] - 2026-03-31
21
+
22
+ ### Changed
23
+ - Standardize README badges, support section, and license format
24
+
10
25
  ## [0.2.0] - 2026-03-28
11
26
 
12
27
  ### Added
data/README.md CHANGED
@@ -1,8 +1,10 @@
1
1
  # philiprehberger-html_builder
2
2
 
3
- [![Tests](https://github.com/philiprehberger/rb-html-builder/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-html-builder/actions/workflows/ci.yml) [![Gem Version](https://img.shields.io/gem/v/philiprehberger-html_builder)](https://rubygems.org/gems/philiprehberger-html_builder) [![GitHub release](https://img.shields.io/github/v/release/philiprehberger/rb-html-builder)](https://github.com/philiprehberger/rb-html-builder/releases) [![GitHub last commit](https://img.shields.io/github/last-commit/philiprehberger/rb-html-builder)](https://github.com/philiprehberger/rb-html-builder/commits/main) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) [![Bug Reports](https://img.shields.io/badge/bug-reports-red.svg)](https://github.com/philiprehberger/rb-html-builder/issues) [![Feature Requests](https://img.shields.io/badge/feature-requests-blue.svg)](https://github.com/philiprehberger/rb-html-builder/issues) [![GitHub Sponsors](https://img.shields.io/badge/sponsor-philiprehberger-ea4aaa.svg?logo=github)](https://github.com/sponsors/philiprehberger)
3
+ [![Tests](https://github.com/philiprehberger/rb-html-builder/actions/workflows/ci.yml/badge.svg)](https://github.com/philiprehberger/rb-html-builder/actions/workflows/ci.yml)
4
+ [![Gem Version](https://badge.fury.io/rb/philiprehberger-html_builder.svg)](https://rubygems.org/gems/philiprehberger-html_builder)
5
+ [![Last updated](https://img.shields.io/github/last-commit/philiprehberger/rb-html-builder)](https://github.com/philiprehberger/rb-html-builder/commits/main)
4
6
 
5
- Programmatic HTML builder with tag DSL, auto-escaping, form helpers, components, and output formatting.
7
+ Programmatic HTML builder with tag DSL, auto-escaping, form helpers, components, and output formatting
6
8
 
7
9
  ## Requirements
8
10
 
@@ -213,8 +215,22 @@ bundle exec rubocop
213
215
 
214
216
  ## Support
215
217
 
216
- [![LinkedIn](https://img.shields.io/badge/LinkedIn-Philip%20Rehberger-blue?logo=linkedin)](https://linkedin.com/in/philiprehberger) [![More Packages](https://img.shields.io/badge/more-packages-blue.svg)](https://github.com/philiprehberger?tab=repositories)
218
+ If you find this project useful:
219
+
220
+ ⭐ [Star the repo](https://github.com/philiprehberger/rb-html-builder)
221
+
222
+ 🐛 [Report issues](https://github.com/philiprehberger/rb-html-builder/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
223
+
224
+ 💡 [Suggest features](https://github.com/philiprehberger/rb-html-builder/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
225
+
226
+ ❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
227
+
228
+ 🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
229
+
230
+ 💻 [GitHub Profile](https://github.com/philiprehberger)
231
+
232
+ 🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
217
233
 
218
234
  ## License
219
235
 
220
- MIT
236
+ [MIT](LICENSE)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module HtmlBuilder
5
- VERSION = '0.2.0'
5
+ VERSION = '0.2.3'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-html_builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Philip Rehberger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-28 00:00:00.000000000 Z
11
+ date: 2026-04-09 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Build HTML programmatically using a clean tag DSL with nested blocks,
14
14
  automatic content escaping, void element support, and attribute hashes.
@@ -26,11 +26,11 @@ files:
26
26
  - lib/philiprehberger/html_builder/escape.rb
27
27
  - lib/philiprehberger/html_builder/node.rb
28
28
  - lib/philiprehberger/html_builder/version.rb
29
- homepage: https://github.com/philiprehberger/rb-html-builder
29
+ homepage: https://philiprehberger.com/open-source-packages/ruby/philiprehberger-html_builder
30
30
  licenses:
31
31
  - MIT
32
32
  metadata:
33
- homepage_uri: https://github.com/philiprehberger/rb-html-builder
33
+ homepage_uri: https://philiprehberger.com/open-source-packages/ruby/philiprehberger-html_builder
34
34
  source_code_uri: https://github.com/philiprehberger/rb-html-builder
35
35
  changelog_uri: https://github.com/philiprehberger/rb-html-builder/blob/main/CHANGELOG.md
36
36
  bug_tracker_uri: https://github.com/philiprehberger/rb-html-builder/issues
@@ -53,5 +53,6 @@ requirements: []
53
53
  rubygems_version: 3.5.22
54
54
  signing_key:
55
55
  specification_version: 4
56
- summary: Programmatic HTML builder with tag DSL and auto-escaping
56
+ summary: Programmatic HTML builder with tag DSL, auto-escaping, form helpers, components,
57
+ and output formatting
57
58
  test_files: []