philiprehberger-html_builder 0.2.0 → 0.2.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: 595807de03e97765d4e856e8c1948bf1bf5a2d47ab75fd847589ae3fb2751e95
4
- data.tar.gz: 6783b0d074ef48345176cf2dc69ea05a502eba3ab217399f0485d506e43789e3
3
+ metadata.gz: 1db4aa27ac8efcac6696652cbee26b101c8ef0cabb0104f978180d44df4051c0
4
+ data.tar.gz: 0f1def151fa4c0eaa1cf7ee909943ff121116126d042c2385618fbe106eea0fc
5
5
  SHA512:
6
- metadata.gz: e36fc11adf732b544ad9f42d43a91fbc2b230ed5bc5803ab2c16f8515ae7ccfe691dfc40a301e604a1cb10cf0aa8e6e2c82513a4e926b42e2ab2c35d8a5239ca
7
- data.tar.gz: b0ac790fd555a82e537f1b023a8f74f3de1d330ccfe3113fb4e11996d252f2d00221ac7c1109cf171080f693a283362d36b7abf6330aa8decf275c74a73588b4
6
+ metadata.gz: 852eb83f9db5180e9df20f5cb796afa822fbc33728b09caae7b5a95075fa46a515b878a277e7359ef469cc7cfb476c928eaeccd14d97cd98acff786feba28916
7
+ data.tar.gz: 053ad69f405a6dcd36c1a26cd8fc099ae5f047a5f4cdadc83927ac93f26cb9f04724748b6e3589e17c2b8474d03e9540b2e97411b0d3352b417f22fb4898c618
data/CHANGELOG.md CHANGED
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.1] - 2026-03-31
11
+
12
+ ### Changed
13
+ - Standardize README badges, support section, and license format
14
+
10
15
  ## [0.2.0] - 2026-03-28
11
16
 
12
17
  ### Added
data/README.md CHANGED
@@ -1,6 +1,8 @@
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
7
  Programmatic HTML builder with tag DSL, auto-escaping, form helpers, components, and output formatting.
6
8
 
@@ -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.1'
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.1
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-03-31 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.