yard-to_mkdocs 0.1.1 → 0.1.2

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: 06f16153b27f1affa449a6b0fcd189a12d1bf092ca3d867a1837b5134b21ee1f
4
- data.tar.gz: 1f790f55e1ba7941eec184f190c4e3667ffb7d03dee2967db6e7ed552652e565
3
+ metadata.gz: eb02656950e3eae3f9362378514ff9c747454600044dd9f0fb5ce0ebe1543c34
4
+ data.tar.gz: a8c78f1ca520268b2c14ba9f895fbbe1ba286704d2c7295f942099725f488791
5
5
  SHA512:
6
- metadata.gz: b28dc98d69ef6b2f4bde495fa4c715804998fed6a90d009522dabc27485111feac15d9bf425d080cb64602d15b352851350de1101bc8f358720ac8b818b532b3
7
- data.tar.gz: 2ee225e2068965eecaa19d401fdd0873d3ae9d7fe808452aea6944e6dcfa59c96d16ddf223e532fb0409d1623f49bf7fe139978924d1bc697899747a39255709
6
+ metadata.gz: ddfcac9b49dc49b92ea61976c17497a76329bf389e1f7c7f2e4e8f446aab173703ef8c02991f29f9cc4e3feecf0f8de05e8b6ab0f91c6a15976ce0b69df24b1b
7
+ data.tar.gz: be3357c9247a68eaaab2caeae3ad8d4aed52e53fdaa6982fcf3846bb06eced9209908756ceaa884269412e5098774a57128b0e2b0c90238be2bdfd679ce0b77e
data/CHANGELOG.md CHANGED
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
 
8
+ ## [0.1.2] - 2025-12-15
9
+ - Fix `File.exists?` bug in Ruby 3.2+
10
+
8
11
  ## [0.1.1] - 2022-05-31
9
12
  ### Added
10
13
  - Respect the title given for the root directory name in mkdocs navigation
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- yard-to_mkdocs (0.1.1)
4
+ yard-to_mkdocs (0.1.2)
5
5
  yard
6
6
 
7
7
  GEM
@@ -27,6 +27,7 @@ GEM
27
27
  webrick (~> 1.7.0)
28
28
 
29
29
  PLATFORMS
30
+ arm64-darwin-24
30
31
  x86_64-darwin-20
31
32
  x86_64-linux
32
33
 
@@ -36,4 +37,4 @@ DEPENDENCIES
36
37
  yard-to_mkdocs!
37
38
 
38
39
  BUNDLED WITH
39
- 2.2.29
40
+ 4.0.1
@@ -29,7 +29,7 @@ def init
29
29
 
30
30
  mkdocs_file_path = File.expand_path('../../mkdocs.yml', options.serializer.basepath)
31
31
  root_path = options.serializer.basepath.split('/')[1..-1].join('/')
32
- if File.exists?(mkdocs_file_path)
32
+ if File.exist?(mkdocs_file_path)
33
33
  mkdocs_yaml = YAML.load_file(mkdocs_file_path)
34
34
  mkdocs_nav = mkdocs_yaml['nav'].reject { |item| item["YARD Docs"] }
35
35
  mkdocs_yaml['nav'] = mkdocs_nav + [{ options[:title] => mkdocs_nav_tree(objects.first, root_path) }]
@@ -2,6 +2,6 @@
2
2
 
3
3
  module YARD
4
4
  module ToMkdocs
5
- VERSION = "0.1.1"
5
+ VERSION = "0.1.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yard-to_mkdocs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Octothope
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2022-05-31 00:00:00.000000000 Z
10
+ date: 2025-12-15 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: yard
@@ -155,7 +154,6 @@ licenses:
155
154
  metadata:
156
155
  allowed_push_host: https://rubygems.org
157
156
  homepage_uri: https://github.com/invoca/yard-to_mkdocs
158
- post_install_message:
159
157
  rdoc_options: []
160
158
  require_paths:
161
159
  - lib
@@ -170,8 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
170
168
  - !ruby/object:Gem::Version
171
169
  version: '0'
172
170
  requirements: []
173
- rubygems_version: 3.1.6
174
- signing_key:
171
+ rubygems_version: 3.6.2
175
172
  specification_version: 4
176
173
  summary: Simple template that removes extra frames from yardocs html template
177
174
  test_files: []