[前][次][番号順一覧][スレッド一覧]

ruby-changes:71368

From: Burdette <ko1@a...>
Date: Sat, 12 Mar 2022 01:46:59 +0900 (JST)
Subject: [ruby-changes:71368] 09186f381f (master): Adding guidance about characters in C-code doc (#5641)

https://git.ruby-lang.org/ruby.git/commit/?id=09186f381f

From 09186f381f3ddadd6b9ffcd770255fe3bf175257 Mon Sep 17 00:00:00 2001
From: Burdette Lamar <BurdetteLamar@Y...>
Date: Fri, 11 Mar 2022 10:46:47 -0600
Subject: Adding guidance about characters in C-code doc (#5641)

Showing how to do as @nobu does -- putting doc into doc/*.rdoc instead of in *.c.
---
 doc/documentation_guide.rdoc | 56 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 56 insertions(+)

diff --git a/doc/documentation_guide.rdoc b/doc/documentation_guide.rdoc
index ff1bb88565..f93203d4f3 100644
--- a/doc/documentation_guide.rdoc
+++ b/doc/documentation_guide.rdoc
@@ -33,6 +33,62 @@ Use your judgment about what the user needs to know. https://github.com/ruby/ruby/blob/trunk/doc/documentation_guide.rdoc#L33
     consider a {list}[https://docs.ruby-lang.org/en/master/RDoc/Markup.html#class-RDoc::Markup-label-Simple+Lists].
   - Idioms and culture-specific references.
   - Overuse of headers.
+  - Using US-ASCII-incompatible characters in C source files;
+    see {Characters}[#label-Characters] below.
+
+=== Characters
+
+Use only US-ASCII-compatible characters in a C source file.
+(If you use other characters, the Ruby CI will gently let you know.)
+
+If want to put ASCII-incompatible characters into the documentation
+for a C-coded class, module, or method, there are workarounds
+involving new files <tt>doc/*.rdoc</tt>:
+
+- For class +Foo+ (defined in file <tt>foo.c</tt>),
+  create file <tt>doc/foo.rdoc</tt>, declare <tt>class Foo; end</tt>,
+  and place the class documentation above that declaration:
+
+    # :markup: ruby
+    # Documentation for class Foo goes here.
+    class Foo; end
+
+- Similarly, for module +Bar+ (defined in file <tt>bar.c</tt>,
+  create file <tt>doc/bar.rdoc</tt>, declare <tt>module Bar; end</tt>,
+  and place the module documentation above that declaration:
+
+    # :markup: ruby
+    # Documentation for module Bar goes here.
+    module Bar; end
+
+- For an instance method Baz#bat (defined in file <tt>baz.c</tt>),
+  create file <tt>doc/baz.rdoc</tt>, declare class +Baz+
+  and instance method +bat+, and place the method documentation above
+  the method declaration:
+
+    # :markup: ruby
+    class Baz
+      # Documentation for method bat goes here.
+      # (Don't forget the call-seq.)
+      def bat; end
+    end
+
+- For a singleton method Bam.bah (defined in file <tt>bam.c</tt>),
+  create file <tt>doc/bam.rdoc</tt>, declare class +Bam+
+  and singleton method +bah+, and place the method documentation above
+  the method declaration:
+
+    # :markup: ruby
+    class Bam
+      # Documentation for method bah goes here.
+      # (Don't forget the call-seq.)
+      def self.bah; end
+    end
+
+  See these examples:
+
+  - https://raw.githubusercontent.com/ruby/ruby/master/doc/string.rdoc
+  - https://raw.githubusercontent.com/ruby/ruby/master/doc/transcode.rdoc
 
 === \RDoc
 
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]