philiprehberger-xml_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 +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +18 -2
- data/lib/philiprehberger/xml_builder/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 82e57a50119722850b37aea9fb4dc8d4ed53774c8377750baee25faf0b118b76
|
|
4
|
+
data.tar.gz: 41d22968c8eff5a8e31c1223f6169d40aa65ac5b2c9eb07034495681a0dcd94f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7923d521f4ad86f86d608541cb482b4cadc1a41a378d4a228a4e9e48dc9068047dadfb4670d3e3a2060bac706f2df02f1c426ea48a1421bb4570eb3c52524c05
|
|
7
|
+
data.tar.gz: 53aa3ea970baf6adf08387b2a9900f61390ea8ec316d9de912205bab2095f2d3c90a3fb6ffa0affb847e5598ff2d60ce73dcb998a99cb2a4dd1da17763f69fac
|
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-xml_builder
|
|
2
2
|
|
|
3
|
-
[](https://github.com/philiprehberger/rb-xml-builder/actions/workflows/ci.yml)
|
|
3
|
+
[](https://github.com/philiprehberger/rb-xml-builder/actions/workflows/ci.yml)
|
|
4
|
+
[](https://rubygems.org/gems/philiprehberger-xml_builder)
|
|
5
|
+
[](https://github.com/philiprehberger/rb-xml-builder/commits/main)
|
|
4
6
|
|
|
5
7
|
Lightweight XML builder DSL without Nokogiri dependency
|
|
6
8
|
|
|
@@ -219,7 +221,21 @@ bundle exec rubocop
|
|
|
219
221
|
|
|
220
222
|
## Support
|
|
221
223
|
|
|
222
|
-
|
|
224
|
+
If you find this project useful:
|
|
225
|
+
|
|
226
|
+
⭐ [Star the repo](https://github.com/philiprehberger/rb-xml-builder)
|
|
227
|
+
|
|
228
|
+
🐛 [Report issues](https://github.com/philiprehberger/rb-xml-builder/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
|
|
229
|
+
|
|
230
|
+
💡 [Suggest features](https://github.com/philiprehberger/rb-xml-builder/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement)
|
|
231
|
+
|
|
232
|
+
❤️ [Sponsor development](https://github.com/sponsors/philiprehberger)
|
|
233
|
+
|
|
234
|
+
🌐 [All Open Source Projects](https://philiprehberger.com/open-source-packages)
|
|
235
|
+
|
|
236
|
+
💻 [GitHub Profile](https://github.com/philiprehberger)
|
|
237
|
+
|
|
238
|
+
🔗 [LinkedIn Profile](https://www.linkedin.com/in/philiprehberger)
|
|
223
239
|
|
|
224
240
|
## License
|
|
225
241
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-xml_builder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
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-
|
|
11
|
+
date: 2026-03-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Programmatic XML construction with a clean DSL, auto-escaping, CDATA,
|
|
14
14
|
comments, processing instructions, and pretty printing. Zero dependencies.
|