るりまサーチ

最速Rubyリファレンスマニュアル検索!
24件ヒット [1-24件を表示] (0.252秒)
トップページ > クエリ:Class[x] > クエリ:rdoc/parser/c[x]

別のキーワード

  1. rexml/document new
  2. rexml/document write
  3. rexml/document to_s
  4. rexml/document clone
  5. rexml/document node_type

検索結果

rdoc/parser/c (38018.0)

C 言語で記述されたソースコードから組み込みクラス/モジュールのドキュメン トを解析するためのサブライブラリです。

...るためのサブライブラリです。

C 言語で記述された拡張ライブラリなどを解析するのに使用します。
rb_define_class や rb_define_method などで定義されたものに
対応する C 言語の関数のコメントを解析します。

例: Array#flatten の...
...あります。

また、Ruby のソースコードとは別にコメントには特別な命令を指定する事がで
きます。

: Document-class: name

記述する内容を name で指定した Ruby のクラスのものに指定します。同じ
.c ファイルに複数のクラス定...
...そうでない場合は以下のような指定を行います。

rb_define_method(....); // in ファイル名

例:

/*
* Document-class: MyClass
*
* Encapsulate the writing and reading of the configuration
* file. ...
*/

/*
* Document-method: read_value
*
* ca...

rdoc (36.0)

RDoc は Ruby のドキュメント生成を行うためのライブラリです。rdoc という ドキュメント生成のためのコマンドも含んでいます。

...メントを生成したければ、まずこの文章を読みましょう。
* Cで書かれた拡張ライブラリを含めたければ、rdoc/parser/c を参照してください。
* コメント部で使えるマークアップについて知りたければ、rdoc/markup を参照してく...
...source directory. Default is
the current directory.

: --page-dir dir

Directory where guides, your FAQ or other pages not associated with
a class live. Set this when you don't store such files at your
project root. NOTE: Do not use the same file name in the page dir
and the root of your...
...。これをオフにしたい場合は all 修飾
子を加えます。

//emlist{
module SM #:nodoc:
class
Input
end
end
module Markup #:nodoc: all
class
Output
end
end
//}

以上のコードでは、SM::Input のドキュメントのみが出力され...