るりまサーチ

最速Rubyリファレンスマニュアル検索!
1590件ヒット [201-300件を表示] (0.141秒)

別のキーワード

  1. shell/builtin-command new
  2. rubygems/command command
  3. irb/extend-command def_extend_command
  4. irb/extend-command install_extend_commands
  5. shell/builtin-command each

モジュール

キーワード

検索結果

<< < 1 2 3 4 5 ... > >>

Gem::Commands::BuildCommand#load_gemspecs(filename) -> Array (6007.0)

gemspec ファイルをロードします。

...gemspec ファイルをロードします。

@
param filename ファイル名を指定します。...

Gem::Commands::BuildCommand#yaml?(filename) -> bool (6007.0)

与えられたファイル名を持つファイルが yaml ファイルである場合に真を返します。

...与えられたファイル名を持つファイルが yaml ファイルである場合に真を返します。

@
param filename ファイル名を指定します。...

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

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

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

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

Gem::Commands::LockCommand#spec_path(gem_full_name) -> String (6007.0)

指定された Gem パッケージの gemspec ファイルのフルパスを返します。

...指定された Gem パッケージの gemspec ファイルのフルパスを返します。

@
param gem_full_name Gem パッケージの名前を指定します。...

Gem::Commands::WhichCommand#gem_paths(spec) -> Array (6007.0)

与えられた Gem::Specification のインスタンスからその Gem が require するファイルのあるディレクトリをまとめて返します。

...与えられた Gem::Specification のインスタンスからその Gem が
require するファイルのあるディレクトリをまとめて返します。

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

絞り込み条件を変える

IRB::ExtendCommand::IrbCommand#execute(*obj) -> IRB::Irb (6007.0)

新しいサブ irb インタプリタを起動します。

...新しいサブ irb インタプリタを起動します。

@
param obj 新しいサブ irb インタプリタで self にするオブジェクトを指定
します。省略した場合は irb を起動したときの main オブジェク
トを self にします。...

Shell::CommandProcessor#system(command, *opts) -> Shell::SystemCommand (3248.0)

command を実行する.

...
command
を実行する.

@
param command 実行するコマンドのパスを文字列で指定します。

@
param opts command のオプションを文字列で指定します。複数可。

使用例:

require 'shell'
Shell.verbose = false
sh = Shell.new

print sh.system("ls", "-l")
S...
...hell.def_system_command("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT...

Gem::CommandManager#[](command_name) -> Gem::Command | nil (3215.0)

引数で指定されたコマンド名に対応するクラスのインスタンスを返します。

...引数で指定されたコマンド名に対応するクラスのインスタンスを返します。

@
param command_name コマンド名を文字列で指定します。...

Shell::CommandProcessor#[](command, file1, file2 = nil) -> bool | Time | Integer | nil (3133.0)

Kernel.#test や FileTest のメソッドに処理を委譲します。

...

@
param command 数値、またはサイズが 1 の文字列の場合は Kernel.#test に処理委譲します。
2 文字以上の文字列の場合は FileTest のメソッドとして実行します。

@
param file1 文字列でファイルへのパスを指定します。

@
para...
...ell'
Shell.verbose = false
sh = Shell.new
begin
sh.mkdir("foo")
rescue
end
p sh[?e, "foo"] # => true
p sh[:e, "foo"] # => true
p sh["e", "foo"] # => true
p sh[:exists?, "foo"] # => true
p sh["exists?", "foo"] # => true

@
see Kernel.#test, FileTest...

Shell::CommandProcessor#test(command, file1, file2 = nil) -> bool | Time | Integer | nil (3133.0)

Kernel.#test や FileTest のメソッドに処理を委譲します。

...

@
param command 数値、またはサイズが 1 の文字列の場合は Kernel.#test に処理委譲します。
2 文字以上の文字列の場合は FileTest のメソッドとして実行します。

@
param file1 文字列でファイルへのパスを指定します。

@
para...
...ell'
Shell.verbose = false
sh = Shell.new
begin
sh.mkdir("foo")
rescue
end
p sh[?e, "foo"] # => true
p sh[:e, "foo"] # => true
p sh["e", "foo"] # => true
p sh[:exists?, "foo"] # => true
p sh["exists?", "foo"] # => true

@
see Kernel.#test, FileTest...

絞り込み条件を変える

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

@todo

...@todo

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

@
param filter Shell::Filter のインスタンスを指定します。...
<< < 1 2 3 4 5 ... > >>