psych-pure 0.2.0 → 0.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 +4 -4
- data/CHANGELOG.md +14 -1
- data/lib/psych/pure/version.rb +1 -1
- data/lib/psych/pure.rb +1563 -927
- data/psych-pure.gemspec +2 -0
- metadata +32 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 35490c1f1c411a9f2cec6c47a8d82f0f1ef8c8be88d465f40e3068f52e71c6f3
|
|
4
|
+
data.tar.gz: 0ced963d77678c5272dfaccac1fc4bb437050753553de960e61ccc20406eac0a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9821a7d3ea7d875fd54b0806ab872bf02ff3b03b0da358669c10d3b5a09006c9245343252988314a084032762da520680326dcacb3f832a02889fc381ecd55ba
|
|
7
|
+
data.tar.gz: c128bc89ef14461a7118534276a1ae253b11fa0aac0e7610cf53abe013c8cf940d240914b05bb36653ed82cedb43dc16050f18b083a07caee64170be9b065ed4
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.3.1] - 2026-04-03
|
|
10
|
+
|
|
11
|
+
- Fix merge losing comments from second hash.
|
|
12
|
+
- Fix array element deletion leaving blank lines in output.
|
|
13
|
+
- Lots and lots of optimizations.
|
|
14
|
+
- Fix up empty array and comments.
|
|
15
|
+
|
|
16
|
+
## [0.3.0] - 2025-12-25
|
|
17
|
+
|
|
18
|
+
- Support Psych >= 5.3.0 by adding the `parse_symbols` option.
|
|
19
|
+
|
|
9
20
|
## [0.2.0] - 2025-11-11
|
|
10
21
|
|
|
11
22
|
- Add `sequence_indent` option to `Psych::Pure.dump` to control whether sequence elements contained within mapping elements are indented.
|
|
@@ -42,7 +53,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
|
|
|
42
53
|
|
|
43
54
|
- 🎉 Initial release. 🎉
|
|
44
55
|
|
|
45
|
-
[unreleased]: https://github.com/kddnewton/psych-pure/compare/v0.
|
|
56
|
+
[unreleased]: https://github.com/kddnewton/psych-pure/compare/v0.3.1...HEAD
|
|
57
|
+
[0.3.1]: https://github.com/kddnewton/psych-pure/compare/v0.3.0...v0.3.1
|
|
58
|
+
[0.3.0]: https://github.com/kddnewton/psych-pure/compare/v0.2.0...v0.3.0
|
|
46
59
|
[0.2.0]: https://github.com/kddnewton/psych-pure/compare/v0.1.4...v0.2.0
|
|
47
60
|
[0.1.4]: https://github.com/kddnewton/psych-pure/compare/v0.1.3...v0.1.4
|
|
48
61
|
[0.1.3]: https://github.com/kddnewton/psych-pure/compare/v0.1.2...v0.1.3
|