yard-yaml 0.1.2 → 0.1.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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +15 -1
- data/lib/yard/yaml/config.rb +1 -1
- data/lib/yard/yaml/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +4 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9a842a02dca6a487f1a0f4678f20ad5a96ba949f721ea5f12f0a8a6c879cfaaa
|
|
4
|
+
data.tar.gz: b83b602ca51906df5d5365b0cc45a8ba2cd695beb031959224cc192615c26a92
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e306dcdf85cf5bbe06f70db4fc068f3c562ba762c121db3ca95ff36b16adc1ebd1ec8a2a1dd10309cd9d6dd76f90b874f9f359b01c765ae4c5e2bc14abe6b650
|
|
7
|
+
data.tar.gz: f657aa6e4fd309bafcc8185d3833e57260455b74ae96b393f1aaff7160621303f0f77d20797bbc584c86df9cc27633dafcc7d7a67327485b61316fe47639d42f
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,18 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [0.1.3] - 2026-05-27
|
|
34
|
+
|
|
35
|
+
- TAG: [v0.1.3][0.1.3t]
|
|
36
|
+
- COVERAGE: 94.88% -- 519/547 lines in 12 files
|
|
37
|
+
- BRANCH COVERAGE: 83.25% -- 164/197 branches in 12 files
|
|
38
|
+
- 78.38% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- YAML documentation pages no longer truncate long source lines by default,
|
|
43
|
+
preserving full values such as repository URLs in rendered CFF pages.
|
|
44
|
+
|
|
33
45
|
## [0.1.2] - 2026-05-27
|
|
34
46
|
|
|
35
47
|
- TAG: [v0.1.2][0.1.2t]
|
|
@@ -88,7 +100,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
88
100
|
|
|
89
101
|
### Security
|
|
90
102
|
|
|
91
|
-
[Unreleased]: https://github.com/galtzo-floss/yard-yaml/compare/v0.1.
|
|
103
|
+
[Unreleased]: https://github.com/galtzo-floss/yard-yaml/compare/v0.1.3...HEAD
|
|
104
|
+
[0.1.3]: https://github.com/galtzo-floss/yard-yaml/compare/v0.1.2...v0.1.3
|
|
105
|
+
[0.1.3t]: https://github.com/galtzo-floss/yard-yaml/releases/tag/v0.1.3
|
|
92
106
|
[0.1.2]: https://github.com/galtzo-floss/yard-yaml/compare/v0.1.1...v0.1.2
|
|
93
107
|
[0.1.2t]: https://github.com/galtzo-floss/yard-yaml/releases/tag/v0.1.2
|
|
94
108
|
[0.1.1]: https://github.com/galtzo-floss/yard-yaml/compare/v0.1.0...v0.1.1
|
data/lib/yard/yaml/config.rb
CHANGED
|
@@ -35,7 +35,7 @@ module Yard
|
|
|
35
35
|
DEFAULT_TOC = "auto"
|
|
36
36
|
|
|
37
37
|
# Options forwarded to yaml-converter.
|
|
38
|
-
DEFAULT_CONVERTER_OPTIONS = {}.freeze
|
|
38
|
+
DEFAULT_CONVERTER_OPTIONS = {truncate: false}.freeze
|
|
39
39
|
|
|
40
40
|
# Whether to respect YAML front matter for title/nav order.
|
|
41
41
|
DEFAULT_FRONT_MATTER = true
|
data/lib/yard/yaml/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yard-yaml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Annibelle Boling
|
|
@@ -280,10 +280,10 @@ licenses:
|
|
|
280
280
|
- MIT
|
|
281
281
|
metadata:
|
|
282
282
|
homepage_uri: https://structuredmerge.org
|
|
283
|
-
source_code_uri: https://github.com/galtzo-floss/yard-yaml/tree/v0.1.
|
|
284
|
-
changelog_uri: https://github.com/galtzo-floss/yard-yaml/blob/v0.1.
|
|
283
|
+
source_code_uri: https://github.com/galtzo-floss/yard-yaml/tree/v0.1.3
|
|
284
|
+
changelog_uri: https://github.com/galtzo-floss/yard-yaml/blob/v0.1.3/CHANGELOG.md
|
|
285
285
|
bug_tracker_uri: https://github.com/galtzo-floss/yard-yaml/issues
|
|
286
|
-
documentation_uri: https://www.rubydoc.info/gems/yard-yaml/0.1.
|
|
286
|
+
documentation_uri: https://www.rubydoc.info/gems/yard-yaml/0.1.3
|
|
287
287
|
funding_uri: https://github.com/sponsors/pboling
|
|
288
288
|
wiki_uri: https://github.com/galtzo-floss/yard-yaml/wiki
|
|
289
289
|
news_uri: https://www.railsbling.com/tags/yard-yaml
|
metadata.gz.sig
CHANGED
|
Binary file
|