264件ヒット
[1-100件を表示]
(0.181秒)
ライブラリ
- ビルトイン (12)
- erb (24)
-
rdoc
/ context (36) -
rdoc
/ parser / c (12) -
rdoc
/ parser / changelog (12) -
rdoc
/ parser / markdown (12) -
rdoc
/ parser / rd (12) -
rdoc
/ parser / ruby (12) -
rdoc
/ parser / simple (12) -
rdoc
/ top _ level (120)
クラス
- ERB (24)
- Module (12)
-
RDoc
:: Context (36) -
RDoc
:: Parser :: C (12) -
RDoc
:: Parser :: ChangeLog (12) -
RDoc
:: Parser :: Markdown (12) -
RDoc
:: Parser :: RD (12) -
RDoc
:: Parser :: Ruby (12) -
RDoc
:: Parser :: Simple (12) -
RDoc
:: TopLevel (120)
キーワード
-
add
_ class _ or _ module (12) -
add
_ require (12) -
file
_ absolute _ name (12) -
file
_ absolute _ name= (12) -
file
_ relative _ name (12) -
file
_ relative _ name= (12) -
file
_ stat (12) -
file
_ stat= (12) -
find
_ local _ symbol (12) -
find
_ module _ named (12) -
full
_ name (12) - public (12)
-
record
_ location (12) - result (12)
- run (12)
- scan (72)
検索結果
先頭5件
-
RDoc
:: Context # toplevel -> RDoc :: TopLevel (24419.0) -
自身が所属する RDoc::TopLevel オブジェクトを返します。
...自身が所属する RDoc::TopLevel オブジェクトを返します。... -
RDoc
:: TopLevel # file _ stat -> File :: Stat (9201.0) -
自身が管理するファイルに関する File::Stat オブジェクトを返します。
...自身が管理するファイルに関する File::Stat オブジェクトを返します。... -
RDoc
:: TopLevel # file _ absolute _ name -> String (9101.0) -
自身が管理するファイルに関する絶対パスを文字列で返します。
自身が管理するファイルに関する絶対パスを文字列で返します。 -
RDoc
:: TopLevel # file _ absolute _ name=(val) (9101.0) -
自身が管理するファイルに関する絶対パスを文字列で設定します。
自身が管理するファイルに関する絶対パスを文字列で設定します。
@param val パスを文字列で指定します。 -
RDoc
:: TopLevel # file _ relative _ name -> String (9101.0) -
自身が管理するファイルに関する相対パスを文字列で返します。
自身が管理するファイルに関する相対パスを文字列で返します。 -
RDoc
:: TopLevel # file _ relative _ name=(val) (9101.0) -
自身が管理するファイルに関する相対パスを文字列で設定します。
自身が管理するファイルに関する相対パスを文字列で設定します。
@param val パスを文字列で指定します。 -
RDoc
:: TopLevel # file _ stat=(val) (9101.0) -
自身が管理するファイルに関する File::Stat オブジェクトを設定しま す。
...自身が管理するファイルに関する File::Stat オブジェクトを設定しま
す。
@param val File::Stat オブジェクトを指定します。... -
ERB
# result(b=TOPLEVEL _ BINDING) -> String (6202.0) -
ERB を b の binding で実行し、結果の文字列を返します。
...を b の binding で実行し、結果の文字列を返します。
@param b eRubyスクリプトが実行されるときのbinding
//emlist[例][ruby]{
require 'erb'
erb = ERB.new("test <%= test1 %>\ntest <%= test2 %>\n")
test1 = "foo"
test2 = "bar"
puts erb.result
# test foo
# test bar
//}......し、結果の文字列を返します。
@param b eRubyスクリプトが実行されるときのbinding
//emlist[例][ruby]{
require 'erb'
erb = ERB.new("test <%= test1 %>\ntest <%= test2 %>\n")
test1 = "foo"
test2 = "bar"
puts erb.result
# test foo
# test bar
//}
@see ERB#result_with_hash... -
RDoc
:: Context # record _ location(toplevel) (6202.0) -
Record the file that we happen to find it in
...Record the file that we happen to find it in...