yard-fence 0.6.0 → 0.7.0

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: dedaaa231c20409b1d4aedb72ac7b12c0716076eedea5375ed2a232999b2ea7b
4
- data.tar.gz: f6b65e208d3fc7c9a0b19939949309e6020ad1808cb5378372ac0a6ef2511715
3
+ metadata.gz: ab9b554560a42067263a056274659da9b71ab9d384a255dfda0e9e8f0ef86db9
4
+ data.tar.gz: 540eaf18d29756c303e7e4cba3ffcdddd29db9bc4f73a9507448509aac84efd1
5
5
  SHA512:
6
- metadata.gz: a5f0e3c15d75462209e1a717b762b137256aab58dfc44527008cf159458ed50fa47450ddb8355f0f2b006db3cff4f18ba9258ffc6f5542177c5921a2a2d42292
7
- data.tar.gz: 81f406fdc8c3e399fa730ec7ab3790fa62981a96a02852abaaa8c0edca52cc8070cef89933407e142bc1e741a3f1e46cd933c369ade528cbf2f593c188d02b52
6
+ metadata.gz: 7724c35b7df1307d0220cfdf5610f3f7a0495e9ab6a8c325f709fbcfadbc3857f755f71879e859a62aa82c03a599bfebddfd164d62ec6ea30b1948315e077bfb
7
+ data.tar.gz: e57d9c374b51e94874be71f261c6d02cf689f3722245fd374daffa48f48022218321ade826453a33e16523d984eb74c71743c7012d8f49aedc7b09f4d784073c
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,17 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [0.7.0] - 2025-11-08
34
+
35
+ - TAG: [v0.7.0][0.7.0t]
36
+ - COVERAGE: 99.19% -- 123/124 lines in 4 files
37
+ - BRANCH COVERAGE: 90.00% -- 36/40 branches in 4 files
38
+ - 37.93% documented
39
+
40
+ ### Changed
41
+
42
+ - Actually use custom KramdownGFM
43
+
33
44
  ## [0.6.0] - 2025-11-07
34
45
 
35
46
  - TAG: [v0.6.0][0.6.0t]
@@ -105,7 +116,9 @@ Please file a bug if you notice a violation of semantic versioning.
105
116
 
106
117
  - Initial release
107
118
 
108
- [Unreleased]: https://github.com/galtzo-floss/yard-fence/compare/v0.6.0...HEAD
119
+ [Unreleased]: https://github.com/galtzo-floss/yard-fence/compare/v0.7.0...HEAD
120
+ [0.7.0]: https://github.com/galtzo-floss/yard-fence/compare/v0.6.0...v0.7.0
121
+ [0.7.0t]: https://github.com/galtzo-floss/yard-fence/releases/tag/v0.7.0
109
122
  [0.6.0]: https://github.com/galtzo-floss/yard-fence/compare/v0.5.0...v0.6.0
110
123
  [0.6.0t]: https://github.com/galtzo-floss/yard-fence/releases/tag/v0.6.0
111
124
  [0.5.0]: https://github.com/galtzo-floss/yard-fence/compare/v0.4.0...v0.5.0
data/README.md CHANGED
@@ -586,7 +586,7 @@ Thanks for RTFM. ☺️
586
586
  [📌gitmoji]: https://gitmoji.dev
587
587
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
588
588
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
589
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-0.119-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
589
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-0.124-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
590
590
  [🔐security]: SECURITY.md
591
591
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
592
592
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -66,3 +66,13 @@ module Yard
66
66
  end
67
67
  end
68
68
  end
69
+
70
+ # Ensure YARD can resolve the provider constant at the top-level
71
+ # YARD does something akin to Object.const_get("::" + const), so it expects
72
+ # a top-level ::KramdownGfmDocument when const == "KramdownGfmDocument".
73
+ # Provide an alias to our namespaced implementation.
74
+ # :nocov:
75
+ unless defined?(KramdownGfmDocument)
76
+ KramdownGfmDocument = Yard::Fence::KramdownGfmDocument
77
+ end
78
+ # :nocov:
@@ -3,7 +3,7 @@
3
3
  module Yard
4
4
  module Fence
5
5
  module Version
6
- VERSION = "0.6.0"
6
+ VERSION = "0.7.0"
7
7
  end
8
8
  VERSION = Version::VERSION
9
9
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yard-fence
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -316,10 +316,10 @@ licenses:
316
316
  - MIT
317
317
  metadata:
318
318
  homepage_uri: https://yard-fence.galtzo.com/
319
- source_code_uri: https://github.com/galtzo-floss/yard-fence/tree/v0.6.0
320
- changelog_uri: https://github.com/galtzo-floss/yard-fence/blob/v0.6.0/CHANGELOG.md
319
+ source_code_uri: https://github.com/galtzo-floss/yard-fence/tree/v0.7.0
320
+ changelog_uri: https://github.com/galtzo-floss/yard-fence/blob/v0.7.0/CHANGELOG.md
321
321
  bug_tracker_uri: https://github.com/galtzo-floss/yard-fence/issues
322
- documentation_uri: https://www.rubydoc.info/gems/yard-fence/0.6.0
322
+ documentation_uri: https://www.rubydoc.info/gems/yard-fence/0.7.0
323
323
  funding_uri: https://github.com/sponsors/pboling
324
324
  wiki_uri: https://github.com/galtzo-floss/yard-fence/wiki
325
325
  news_uri: https://www.railsbling.com/tags/yard-fence
metadata.gz.sig CHANGED
Binary file