108件ヒット
[1-100件を表示]
(0.058秒)
ライブラリ
- ビルトイン (36)
- psych (12)
-
rubygems
/ ext / configure _ builder (12) -
rubygems
/ ext / ext _ conf _ builder (12) -
rubygems
/ ext / rake _ builder (12) -
rubygems
/ source _ index (12) -
rubygems
/ version (12)
クラス
- Complex (24)
- File (12)
-
Gem
:: Ext :: ConfigureBuilder (12) -
Gem
:: Ext :: ExtConfBuilder (12) -
Gem
:: Ext :: RakeBuilder (12) -
Gem
:: SourceIndex (12) -
Gem
:: Version (12) -
Psych
:: Nodes :: Document (12)
キーワード
- build (36)
- correct? (12)
- directory? (12)
-
installed
_ spec _ directories (12) - new (12)
- rectangular (12)
検索結果
先頭5件
-
Complex
. rect(r , i = 0) -> Complex (21214.0) -
実部が r、虚部が i である Complex クラスのオブジェクトを生成します。
...Complex クラスのオブジェクトを生成します。
@param r 生成する複素数の実部。
@param i 生成する複素数の虚部。省略した場合は 0 です。
//emlist[例][ruby]{
Complex.rect(1) # => (1+0i)
Complex.rect(1, 2) # => (1+2i)
Complex.rectangular(......1, 2) # => (1+2i)
//}
@see Kernel.#Complex... -
Gem
:: SourceIndex . installed _ spec _ directories -> [String] (12201.0) -
gemspec ファイルがインストールされているディレクトリのリストを返します。
...gemspec ファイルがインストールされているディレクトリのリストを返します。
@see Gem.#path... -
Complex
. rectangular(r , i = 0) -> Complex (9214.0) -
実部が r、虚部が i である Complex クラスのオブジェクトを生成します。
...Complex クラスのオブジェクトを生成します。
@param r 生成する複素数の実部。
@param i 生成する複素数の虚部。省略した場合は 0 です。
//emlist[例][ruby]{
Complex.rect(1) # => (1+0i)
Complex.rect(1, 2) # => (1+2i)
Complex.rectangular(......1, 2) # => (1+2i)
//}
@see Kernel.#Complex... -
File
. directory?(path) -> bool (6201.0) -
FileTest.#directory? と同じです。
...FileTest.#directory? と同じです。
@param path パスを表す文字列か IO オブジェクトを指定します。... -
Gem
:: Version . correct?(version) -> 0 | nil (6119.0) -
version が正しいバージョンであれば 0 を返します。そうでなければ nil を返します。
...0 を返します。そうでなければ nil を返します。
//emlist[][ruby]{
p Gem::Version.correct?("9.1") # => 0
p Gem::Version.correct?("incorrect") # => nil
p Gem::Version.correct?(nil) # => 0
//}
@param version バージョンを文字列か数値で指定します。... -
Gem
:: Version . correct?(version) -> bool (6119.0) -
version が正しいバージョンであれば true を返します。そうでなければ false を返します。
...ければ false を返します。
//emlist[][ruby]{
p Gem::Version.correct?("9.1") # => true
p Gem::Version.correct?("incorrect") # => false
p Gem::Version.correct?(nil) # => true
# nil versions are discouraged and will be deprecated in Rubygems 4
# version が nil のときは true......を返しますが、推奨はされず、Ruby 2.6以降では警告がでます。
//}
@param version バージョンを文字列か数値で指定します。... -
Psych
:: Nodes :: Document . new(version=[] , tag _ directives=[] , implicit=false) -> Psych :: Nodes :: Document (3201.0) -
Document オブジェクトを生成します。
...す。
tag_directives には tag directive の配列を指定します。
それぞれの tag は [prefix, suffix] という文字列の配列で
表現します。
implicit にはドキュメントが implicit に始まっているかどうかを
真偽値で指定します。
@param version YAM......キュメントのバージョン
@param tag_directives tag directive の配列
@param implicit ドキュメントが implicit に始まっているかどうか
=== 例
以下の例では、YAML 1.1 のドキュメントで、
tag directive を1つ持ち、 implicit にドキュメントが開始......している Document オブジェクトを生成しています。
Psych::Nodes::Document.new(
[1,1],
tenderlovemaking.com,2009:",
true)
@see Psych::Handler#start_document... -
Gem
:: Ext :: ConfigureBuilder . build(extension , directory , dest _ path , results) -> Array (201.0) -
@todo
...nfigure スクリプトを実行して
Makefile を作成してから make を実行します。
@param extension このメソッドでは使用しません。
@param directory
@param dest_path
@param results コマンドの実行結果を格納します。破壊的に変更されます。
@se... -
Gem
:: Ext :: ExtConfBuilder . build(extension , directory , dest _ path , results) -> Array (201.0) -
@todo
...を実行して
Makefile を作成してから make を実行します。
@param extension ファイル名を指定します。
@param directory このメソッドでは使用していません。
@param dest_path ???
@param results コマンドの実行結果を格納します。破壊的に変... -
Gem
:: Ext :: RakeBuilder . build(extension , directory , dest _ path , results) -> Array (201.0) -
@todo
...する場合は、それを実行してから Rake を実行します。
@param extension ファイル名を指定します。
@param directory このメソッドでは使用していません。
@param dest_path ???
@param results コマンドの実行結果を格納します。破壊的に変...