60件ヒット
[1-60件を表示]
(0.008秒)
ライブラリ
-
rdoc
/ top _ level (24) -
rexml
/ document (24) -
rubygems
/ specification (12)
クラス
-
Gem
:: Specification (12) -
RDoc
:: TopLevel (24) -
REXML
:: Text (24)
キーワード
-
all
_ classes _ and _ modules (12) -
find
_ class _ named (12) - normalize (12)
-
normalize
_ yaml _ input (12) - unnormalize (12)
検索結果
先頭5件
- Gem
:: Specification . normalize _ yaml _ input(input) -> String - REXML
:: Text . normalize(input , doctype = nil , entity _ filter = nil) -> String - REXML
:: Text . unnormalize(string , doctype = nil , filter = nil , illegal = nil) -> String - RDoc
:: TopLevel . all _ classes _ and _ modules -> [RDoc :: NormalClass | RDoc :: SingleClass | RDoc :: NormalModule] - RDoc
:: TopLevel . find _ class _ named(name) -> RDoc :: NormalClass | RDoc :: SingleClass | nil
-
Gem
:: Specification . normalize _ yaml _ input(input) -> String (6101.0) -
YAML 形式の gemspec を正しくフォーマットします。
YAML 形式の gemspec を正しくフォーマットします。
@param input 文字列か IO オブジェクトを指定します。 -
REXML
:: Text . normalize(input , doctype = nil , entity _ filter = nil) -> String (6101.0) -
input を正規化(すべての entity をエスケープ)したものを 返します。
input を正規化(すべての entity をエスケープ)したものを
返します。
@param input 正規化する文字列
@param doctype DTD(REXML::DocType オブジェクト)
@param entity_filter 置換したい実体の名前の配列 -
REXML
:: Text . unnormalize(string , doctype = nil , filter = nil , illegal = nil) -> String (6101.0) -
string を非正規化(すべての entity をアンエスケープ)したものを 返します。
...アンエスケープしない実体の実体名(文字列配列)
@param illegal 内部用。使わないでください。
//emlist[][ruby]{
require 'rexml/text'
REXML::Text.unnormalize("& &foobar; <") # => "& &foobar; <"
REXML::Text.unnormalize("< >", nil, ["lt"]) # => "< >"
//}... -
RDoc
:: TopLevel . all _ classes _ and _ modules -> [RDoc :: NormalClass | RDoc :: SingleClass | RDoc :: NormalModule] (201.0) -
RDoc が収集したクラス、モジュールを配列で返します。
RDoc が収集したクラス、モジュールを配列で返します。 -
RDoc
:: TopLevel . find _ class _ named(name) -> RDoc :: NormalClass | RDoc :: SingleClass | nil (101.0) -
RDoc が収集したクラスの内、name で指定した名前のクラスを返します。見つ からなかった場合は nil を返します。
RDoc が収集したクラスの内、name で指定した名前のクラスを返します。見つ
からなかった場合は nil を返します。
@param name クラス名を文字列で指定します。