322件ヒット
[1-100件を表示]
(0.137秒)
種類
- 特異メソッド (166)
- インスタンスメソッド (120)
- ライブラリ (24)
- 定数 (12)
ライブラリ
- ビルトイン (49)
-
irb
/ cmd / load (36) -
irb
/ input-method (36) - rake (12)
-
rdoc
/ code _ object (12) -
rdoc
/ parser (24) -
rdoc
/ parser / c (12) -
rdoc
/ parser / ruby (12) -
rdoc
/ parser / simple (12) -
rdoc
/ top _ level (12) -
rubygems
/ config _ file (24) -
rubygems
/ installer (12) -
rubygems
/ source _ index (12) -
rubygems
/ specification (12) -
yaml
/ store (21)
クラス
- Dir (21)
- File (28)
-
Gem
:: ConfigFile (24) -
Gem
:: Installer (12) -
Gem
:: SourceIndex (12) -
Gem
:: Specification (12) -
IRB
:: ExtendCommand :: Load (12) -
IRB
:: ExtendCommand :: Require (12) -
IRB
:: ExtendCommand :: Source (12) -
IRB
:: InputMethod (24) -
RDoc
:: CodeObject (12) -
RDoc
:: Parser (24) -
RDoc
:: Parser :: C (12) -
RDoc
:: Parser :: Ruby (12) -
RDoc
:: Parser :: Simple (12) -
RDoc
:: TopLevel (12) -
Rake
:: FileList (12) -
YAML
:: Store (21)
モジュール
- IRB (12)
キーワード
-
STDIN
_ FILE _ NAME (12) -
absolute
_ path (12) -
absolute
_ path? (6) -
can
_ parse (12) -
config
_ file _ name (12) -
excluded
_ from _ list? (12) - execute (36)
- exist? (12)
- exists? (9)
- irb (12)
-
load
_ file (12) -
load
_ specification (12) - mkfifo (10)
- new (81)
-
parent
_ file _ name (12) -
parser
_ for (12) -
rdoc
/ parser (12) - shebang (12)
検索結果
先頭5件
-
Gem
:: Specification # file _ name -> String (24201.0) -
生成される Gem パッケージの名前を返します。
生成される Gem パッケージの名前を返します。 -
IRB
:: InputMethod # file _ name -> String (24201.0) -
ファイル名を文字列で返します。
ファイル名を文字列で返します。 -
Gem
:: ConfigFile # config _ file _ name -> String (12201.0) -
設定ファイルの名前を返します。
設定ファイルの名前を返します。 -
IRB
:: STDIN _ FILE _ NAME -> "(line)" (12201.0) -
標準入力を使用する際のファイル名を文字列で返します。
標準入力を使用する際のファイル名を文字列で返します。 -
RDoc
:: CodeObject # parent _ file _ name -> String (12201.0) -
self.parent のファイル名を返します。
...self.parent のファイル名を返します。
@see RDoc::CodeObject#parent... -
RDoc
:: Parser . parser _ for(top _ level , file _ name , body , options , stats) -> RDoc :: Parser (9323.0) -
file_name を解析できるパーサのインスタンスを返します。 見つからなかった場合は RDoc::Parser::Simple のインスタンスを返します。
...
file_name を解析できるパーサのインスタンスを返します。
見つからなかった場合は RDoc::Parser::Simple のインスタンスを返します。
@param top_level RDoc::TopLevel オブジェクトを指定します。
@param file_name ファイル名を文字列で指定......します。
@param body ソースコードの内容を文字列で指定します。
@param options RDoc::Options オブジェクトを指定します。
@param stats RDoc::Stats オブジェクトを指定します。... -
RDoc
:: Parser . can _ parse(file _ name) -> RDoc :: Parser | nil (9223.0) -
file_name を解析できるパーサクラスを返します。見つからなかった場合は nil を返します。
...
file_name を解析できるパーサクラスを返します。見つからなかった場合は
nil を返します。
@param file_name 解析するファイルの名前を指定します。... -
File
. absolute _ path(file _ name , dir _ string=nil) -> String (6223.0) -
file_name を絶対パスに変換した文字列を返します。
...
file_name を絶対パスに変換した文字列を返します。
相対パスの場合はカレントディレクトリを基準とします。
dir_string を渡した場合はそのディレクトリを基準とします。
File.expand_path と異なり、 file_name 先頭が "~" である場......"/home/matz/work/bar"
p ENV["HOME"] #=> "/home/matz"
p File.absolute_path("..") #=> "/home/matz/work"
p File.absolute_path("..", "/tmp") #=> "/"
p File.absolute_path("~") #=> "/home/matz/work/bar/~"
p File.absolute_path("~foo") #=> "/home/matz/work/bar/~foo"......//}
@see File.expand_path... -
File
. absolute _ path?(file _ name) -> bool (6223.0) -
file_name が絶対パスなら true を、そうでなければ false を返します。
...
file_name が絶対パスなら true を、そうでなければ false を返します。
@param file_name ファイル名を表す文字列を指定します。文字列でない場合は、to_path メソッド、to_str メソッドの順で暗黙の型変換が試みられます。
@raise TypeE.......absolute_path?("//foo/bar\\baz") # => true
File.absolute_path?("C:foo\\bar") # => false
File.absolute_path?("~") # => false
# プラットフォームが cygwin、mswin、mingw の場合
File.absolute_path?("C:\\foo\\bar") # => true
File.absolute_path?("/foo/bar\\baz") # => fal......se
# プラットフォームが上記以外の場合
File.absolute_path?("C:\\foo\\bar") # => false
File.absolute_path?("/foo/bar\\baz") # => true
//}...