るりまサーチ

最速Rubyリファレンスマニュアル検索!
8104件ヒット [1-100件を表示] (0.115秒)

別のキーワード

  1. _builtin end
  2. ripper end_seen?
  3. _builtin exclude_end?
  4. _builtin end_with?
  5. zlib end

クラス

キーワード

検索結果

<< 1 2 3 ... > >>

MatchData#end(n) -> Integer | nil (18156.0)

n 番目の部分文字列終端のオフセットを返します。

...

@
param n 部分文字列を指定する数値。

@
raise IndexError 範囲外の n を指定した場合に発生します。

//emlist[例][ruby]{
/(foo)(bar)(BAZ)?/ =~ "foobarbaz"
p $~.end(0) # => 6
p $~.end(1) # => 3
p $~.end(2) # => 6
p $~.end(3) # => nil
p $~.end(4) # => `end': i...
...ndex 4 out of matches (IndexError)
//}

@
see MatchData#begin...

Range#end -> object (18113.0)

終端の要素を返します。範囲オブジェクトが終端を含むかどうかは関係ありま せん。

...終端の要素を返します。範囲オブジェクトが終端を含むかどうかは関係ありま
せん。

//emlist[例][ruby]{
(10..20).last # => 20
(10...20).last # => 20
//}

@
see Range#begin...

Enumerator::ArithmeticSequence#end -> Numeric | nil (18108.0)

末項(終端)を返します。

...末項(終端)を返します。

@
see Enumerator::ArithmeticSequence#begin...

Gem::Commands::DependencyCommand#print_dependencies(spec, level = 0) -> String (9113.0)

依存関係を表す文字列を返します。

...依存関係を表す文字列を返します。

@
param spec Gem::Specification のインスタンスを指定します。

@
param level 依存関係の深さを指定します。...

Gem::Commands::DependencyCommand#find_reverse_dependencies(spec) -> Array (9107.0)

与えられた Gem スペックに依存する Gem のリストを返します。

...与えられた Gem スペックに依存する Gem のリストを返します。

@
param spec Gem::Specification のインスタンスを指定します。...

絞り込み条件を変える

Shell#append(to, filter) -> Shell::AppendFile | Shell::AppendIO (6329.0)

@todo

...@todo

@
param to 文字列か IO を指定します。

@
param filter Shell::Filter のインスタンスを指定します。...

Shell::CommandProcessor#append(to, filter) -> Shell::AppendFile | Shell::AppendIO (6329.0)

@todo

...@todo

@
param to 文字列か IO を指定します。

@
param filter Shell::Filter のインスタンスを指定します。...

Shell::Filter#append(to, filter) -> Shell::AppendFile | Shell::AppendIO (6329.0)

@todo

...@todo

@
param to 文字列か IO を指定します。

@
param filter Shell::Filter のインスタンスを指定します。...

Gem::Installer#ensure_dependency(spec, dependency) -> true (6219.0)

インストールしようとしている Gem が依存関係を満たしている事を確認します。

...ていない場合は、例外 Gem::InstallError が発生します。

@
param spec Gem::Specification のインスタンスを指定します。

@
param dependency Gem::Dependency のインスタンスを指定します。

@
raise Gem::InstallError 依存関係を満たしていない場合に発...

Gem::Specification#add_dependency(gem, *requirements) -> [Gem::Dependency] (6219.0)

この gem の RUNTIME 依存性を追加します。 実行時に必要となる gem を指定します。

...add_runtime_dependency "progressbar", ">= 1.9.0", "< 2.0"
//}

@
param gem 依存する gem の名前か Gem::Dependency のインスタンスを指定します。

@
param requirements バージョンの必要条件を 0 個以上指定します。デフォルトは ">= 0" です。

@
see Gem::Specif...
...ication#add_development_dependency, Gem::Dependency...

絞り込み条件を変える

Gem::Specification#add_development_dependency(gem, *requirements) -> [Gem::Dependency] (6219.0)

この gem の DEVELOPMENT 依存性を追加します。 この gem の開発時に必要となる gem を指定します。

...1.6.12"
//}

@
param gem 依存する gem の名前か Gem::Dependency のインスタンスを指定します。

@
param requirements バージョンの必要条件を 0 個以上指定します。デフォルトは ">= 0" です。

@
see Gem::Specification#add_runtime_dependency, Gem::Dependency...
<< 1 2 3 ... > >>