るりまサーチ

最速Rubyリファレンスマニュアル検索!
33件ヒット [1-33件を表示] (0.079秒)

別のキーワード

  1. tracer add_filter
  2. logger add
  3. rexml/document add
  4. openssl add_extension
  5. socket ip_add_membership

ライブラリ

クラス

キーワード

検索結果

Gem::SourceIndex#add_spec(gem_spec) -> Gem::Specification (18102.0)

自身に引数で与えられた Gem::Specification のインスタンスを追加します。

自身に引数で与えられた Gem::Specification のインスタンスを追加します。

@param gem_spec Gem::Specification のインスタンスを指定します。

Gem::SourceIndex#add_specs(*gem_specs) -> Hash (6101.0)

自身に引数で与えられた Gem::Specification のインスタンスを全て追加します。

自身に引数で与えられた Gem::Specification のインスタンスを全て追加します。

@param gem_specs 複数の Gem::Specification のインスタンスを指定します。

RDoc::Markup#add_special(pattern, name) -> () (6101.0)

pattern で指定した正規表現にマッチする文字列をフォーマットの対象にしま す。

...ToHtml
def handle_special_WIKIWORD(special)
"<font color=red>" + special.text + "</font>"
end
end

m = SM::SimpleMarkup.new
m.add_special(/\b([A-Z][a-z]+[A-Z]\w+)/, :WIKIWORD)

h = WikiHtml.new
puts m.convert(input_string, h)

変換時に実際にフォーマットを行う...