120件ヒット
[1-100件を表示]
(0.091秒)
ライブラリ
-
irb
/ cmd / load (36) -
irb
/ input-method (12) - rake (12)
-
rdoc
/ code _ object (12) -
rubygems
/ config _ file (24) -
rubygems
/ installer (12) -
rubygems
/ specification (12)
クラス
-
Gem
:: ConfigFile (24) -
Gem
:: Installer (12) -
Gem
:: Specification (12) -
IRB
:: ExtendCommand :: Load (12) -
IRB
:: ExtendCommand :: Require (12) -
IRB
:: ExtendCommand :: Source (12) -
IRB
:: InputMethod (12) -
RDoc
:: CodeObject (12) -
Rake
:: FileList (12)
キーワード
-
config
_ file _ name (12) -
excluded
_ from _ list? (12) - execute (36)
-
load
_ file (12) -
parent
_ file _ name (12) - shebang (12)
検索結果
先頭5件
-
Gem
:: Specification # file _ name -> String (24203.0) -
生成される Gem パッケージの名前を返します。
生成される Gem パッケージの名前を返します。 -
IRB
:: InputMethod # file _ name -> String (24203.0) -
ファイル名を文字列で返します。
ファイル名を文字列で返します。 -
Gem
:: ConfigFile # config _ file _ name -> String (15203.0) -
設定ファイルの名前を返します。
設定ファイルの名前を返します。 -
RDoc
:: CodeObject # parent _ file _ name -> String (12203.0) -
self.parent のファイル名を返します。
self.parent のファイル名を返します。
@see RDoc::CodeObject#parent -
Gem
:: ConfigFile # load _ file(file _ name) -> object (9316.0) -
与えられたファイル名のファイルが存在すれば YAML ファイルとしてロードします。
...与えられたファイル名のファイルが存在すれば YAML ファイルとしてロードします。
@param file_name YAML 形式で記述された設定ファイル名を指定します。... -
Rake
:: FileList # excluded _ from _ list?(file _ name) -> bool (3239.0) -
与えられたファイル名が除外される場合は、真を返します。 そうでない場合は偽を返します。
...す。
@param file_name ファイル名を指定します。
//emlist[][ruby]{
# Rakefile での記載例とする
IO.write("test1.rb", "test")
IO.write("test2.rb", "test")
task default: :test_rake_app
task :test_rake_app do
file_list = FileList.new("test1.rb", "test2.rb")
file_list.exclude(......"test1.rb")
file_list.excluded_from_list?("test1.rb") # => true
file_list.excluded_from_list?("test2.rb") # => false
end
//}... -
IRB
:: ExtendCommand :: Require # execute(file _ name) -> bool (271.0) -
ファイル file_name を現在の irb インタプリタ上で実行します。
...ファイル file_name を現在の irb インタプリタ上で実行します。
file_name に Ruby スクリプトを指定した場合は、Kernel.#require と異
なり、file_name の内容を irb で一行ずつタイプしたかのように、irb 上で一
行ずつ評価されます。req......uire に成功した場合は true を、そうでない場合は
false を返します。
拡張ライブラリ(*.so,*.o,*.dll など)を指定した場合は単純に require され
ます。
@param file_name ファイル名を文字列で指定します。... -
Gem
:: Installer # shebang(bin _ file _ name) -> String (215.0) -
実行ファイル内で使用する shebang line (#! line) を表す文字列を返します。
...実行ファイル内で使用する shebang line (#! line) を表す文字列を返します。
@param bin_file_name 実行ファイルの名前を指定します。... -
IRB
:: ExtendCommand :: Load # execute(file _ name , priv = nil) -> nil (215.0) -
ファイル path を Ruby スクリプトとみなし、現在の irb インタプリタ上で実 行します。
...l.#load と異なり、path の内容を irb で一行ずつタイプしたかの
ように、irb 上で一行ずつ評価されます。
@param file_name ファイル名を文字列で指定します。
@param priv 真を指定した場合は実行は内部的に生成される無名モジュー...