From 4c5ba27061f9a3c2b950e8435a362a699758443b Mon Sep 17 00:00:00 2001 From: "Ken C. Demanawa" Date: Mon, 20 Jul 2026 12:48:59 +0800 Subject: [PATCH] [ruby/time] Exclude _xmlschema from RDoc --- lib/time.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/time.rb b/lib/time.rb index 1c66088..eaf9836 100644 --- a/lib/time.rb +++ b/lib/time.rb @@ -668,7 +668,7 @@ def rfc3339(time) private if RUBY_VERSION >= "3.2" - def _xmlschema(pattern, time) + def _xmlschema(pattern, time) # :nodoc: if pattern.match?(time) new(time) else @@ -676,7 +676,7 @@ def _xmlschema(pattern, time) end end else - def _xmlschema(pattern, time) + def _xmlschema(pattern, time) # :nodoc: if pattern =~ time year = $1.to_i mon = $2.to_i