ライブラリ
- ビルトイン (141)
- json (24)
-
minitest
/ unit (4) - mkmf (12)
-
net
/ http (204) - rake (24)
-
rdoc
/ generator / darkfish (12) -
rdoc
/ generator / ri (12) -
rexml
/ document (12) -
rubygems
/ gem _ path _ searcher (12) -
rubygems
/ specification (12)
クラス
- Enumerator (12)
-
Enumerator
:: Chain (7) -
Enumerator
:: Lazy (24) - Float (24)
-
Gem
:: GemPathSearcher (12) -
Gem
:: Specification (12) -
JSON
:: State (24) -
MiniTest
:: Unit (2) -
Net
:: HTTP (204) - Numeric (62)
-
RDoc
:: Generator :: Darkfish (12) -
RDoc
:: Generator :: RI (12) -
REXML
:: Elements (12) -
Rake
:: Application (24) - Range (12)
モジュール
- Kernel (12)
-
MiniTest
:: Assertions (2)
キーワード
-
assert
_ match (1) -
assert
_ operator (1) -
buffer
_ initial _ length (12) -
buffer
_ initial _ length= (12) - chunk (12)
- copy (12)
-
create
_ makefile (12) - delete (12)
- finite? (12)
- infinite? (12)
-
init
_ gemspecs (12) - initialize (24)
- inject (12)
- location (1)
- lock (12)
- mkcol (12)
- move (12)
- patch (24)
- propfind (12)
- proppatch (12)
- put (12)
- put2 (24)
-
request
_ put (24) - run (12)
- size (31)
-
slice
_ before (12) - status (1)
- step (62)
- trace (12)
- unlock (12)
-
yaml
_ initialize (12)
検索結果
先頭5件
- Rake
:: Application # init(app _ name = & # 39;rake& # 39;) - Gem
:: GemPathSearcher # init _ gemspecs -> [Gem :: Specification] - MiniTest
:: Assertions # assert _ operator(operand1 , operator , operand2 , message = nil) -> true - RDoc
:: Generator :: Darkfish # initialize(store , options) -> RDoc :: Generator :: Darkfish - RDoc
:: Generator :: RI # initialize(store , options) -> RDoc :: Generator :: RI
-
Rake
:: Application # init(app _ name = & # 39;rake& # 39;) (21108.0) -
コマンドラインオプションとアプリケーション名を初期化します。
...ンドラインオプションとアプリケーション名を初期化します。
//emlist[例][ruby]{
# Rakefile での記載例とする
task default: :test
task :test
Rake.application.name # => "rake"
Rake.application.init("MyApp") # => ["default"]
Rake.application.name # => "MyApp"
//}... -
Gem
:: GemPathSearcher # init _ gemspecs -> [Gem :: Specification] (9202.0) -
インストール済みの Gem の Gem::Specification のリストを返します。
...インストール済みの Gem の Gem::Specification のリストを返します。
リストはアルファベット順かつバージョンの新しい順にソートされています。... -
MiniTest
:: Assertions # assert _ operator(operand1 , operator , operand2 , message = nil) -> true (9201.0) -
与えられたオブジェクトから作成する式を評価した結果が真を返す場合、検査にパスしたことになります。
...が真を返す場合、検査にパスしたことになります。
@param operand1 任意のオブジェクトを指定します。
@param operator 真偽値を返すメソッドを指定します。
@param operand2 任意のオブジェクトを指定します。
@param message 検査に失......た
結果を使用します。
@raise MiniTest::Assertion 与えられたオブジェクトから作成する式を評価した結果が真でない場合に発生します。
例:
# 以下の二つは同じ
assert_operator('aaa', :==, 'aaa', 'message')
assert('aaa'.__send... -
RDoc
:: Generator :: Darkfish # initialize(store , options) -> RDoc :: Generator :: Darkfish (9201.0) -
RDoc::Generator::Darkfish オブジェクトを初期化します。
...RDoc::Generator::Darkfish オブジェクトを初期化します。
@param store RDoc::Store オブジェクトを指定します。
@param options RDoc::Options オブジェクトを指定します。... -
RDoc
:: Generator :: RI # initialize(store , options) -> RDoc :: Generator :: RI (9201.0) -
RDoc::Generator::RI オブジェクトを初期化します。
...RDoc::Generator::RI オブジェクトを初期化します。
@param store RDoc::Store オブジェクトを指定します。
@param options RDoc::Options オブジェクトを指定します。... -
Float
# finite? -> bool (9101.0) -
数値が ∞, -∞, あるいは NaN でない場合に true を返します。 そうでない場合に false を返します。
...数値が ∞, -∞, あるいは NaN でない場合に true を返します。
そうでない場合に false を返します。
//emlist[例][ruby]{
3.14.finite? # => true
inf = 1.0/0
inf.finite? # => false
//}... -
Float
# infinite? -> 1 | -1 | nil (9101.0) -
数値が +∞ のとき 1、-∞のとき -1 を返します。それ以外は nil を返 します。
...数値が +∞ のとき 1、-∞のとき -1 を返します。それ以外は nil を返
します。
//emlist[例][ruby]{
inf = 1.0/0
p inf # => Infinity
p inf.infinite? # => 1
inf = -1.0/0
p inf # => -Infinity
p inf.infinite? # => -1
//}... -
Gem
:: Specification # yaml _ initialize (9101.0) -
@todo
@todo -
JSON
:: State # buffer _ initial _ length -> Integer (9101.0) -
This integer returns the current initial length of the buffer.
...This integer returns the current initial length of the buffer.... -
JSON
:: State # buffer _ initial _ length=(length) (9101.0) -
This sets the initial length of the buffer to length, if length > 0, otherwise its value isn't changed.
...This sets the initial length of the buffer to length, if length > 0,
otherwise its value isn't changed....