るりまサーチ

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

別のキーワード

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

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

Gem::Command#command -> String (21201.0)

コマンドの名前を返します。

コマンドの名前を返します。

Shell::SystemCommand#command -> String (21201.0)

@todo

@todo

コマンド名を返します。

DRb::ExtServManager.command -> { String => String|[String] } (18307.0)

サービスを起動するためのコマンドを指定するための Hash を 返します。

...ービスを起動するためのコマンドです。
この Hash を変更することでサービスを定義します。
DRb::ExtServManager.command= で Hash 自体を
変更することでも同じことができます。

コマンドは文字列、もしくは文字列の配列で指定し...

Shell::Filter#>(to) -> self (18118.0)

toをフィルタの出力とする。 toが, 文字列ならばファイルに, IOオブジェクトであれ ばそれをそのまま出力とする。

...ルに,IOオブジェクトならばそれに出力します。

使用例
require 'shell'
Shell.def_system_command("tail")
sh = Shell.new
sh.transact {
(sh.tail("-n 3") < "/etc/passwd") > File.open("tail.out", "w")
#(sh.tail("-n 3") < "/etc/passwd") > "tail.out" # と同じ.
}...

rubygems/commands/generate_index_command (12018.0)

ある Gem サーバに対するインデックスを作成するためのライブラリです。

...Summary:
Generates the index files for a gem server directory
Description:
The generate_index command creates a set of indexes for serving gems
statically. The command expects a 'gems' directory under the path given to
the --directory option. When done, it will generat...
...# quick index manifest
quick/<gemname>.gemspec.rz # legacy YAML quick index
file
quick/Marshal.<version>/<gemname>.gemspec.rz # Marshal quick index file
Marshal.<version>
Marshal.<version>.Z # Marshal full index
yaml
yaml....

絞り込み条件を変える

rubygems/commands/lock_command (12018.0)

指定された特定のバージョンの Gem パッケージに依存する Gem を使用するために 必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。

...使用するために必要な記述を表示します
Description:
The lock command will generate a list of +gem+ statements that will lock
down
the versions for the gem given in the command line. It will specify exact
versions in the requirements list to ensure that th...
...be consistent. A full recursive search of all effected gems will be
generated.

Example:

gemlock rails-1.0.0 > lockdown.rb

will produce in lockdown.rb:

require "rubygems"
gem 'rails', '= 1.0.0'
gem 'rake', '= 0.7.0....

rubygems/commands/help_command (12012.0)

Gem コマンドに関するヘルプを提供するためのライブラリです。

...のデバッグオプションを有効にします
Arguments:
command
s gem コマンドのサブコマンドの一覧を表示します
examples gem コマンドの使用例を表示します
<command> 指定されたコマンドのヘルプを表示します...

rubygems/commands/environment_command (12006.0)

RubyGems の環境に関する情報を表示するためのライブラリです。

...ersion Gem パッケージのフォーマットのバージョンを表示します
remotesources Gem パッケージを検索するサーバを表示します
<omitted> 省略すると全て表示します
Summary:
RubyGems の環境や設定を表示します...

Shell::CommandProcessor.def_system_command(command, path = command) -> () (9421.0)

@todo

...@todo

与えられたコマンドをメソッドとして定義します。

@param command 定義したいコマンドを指定します。

@param path command のパスを指定します。省略すると環境変数 PATH から command を探します。...

Gem::CommandManager#find_command(command_name) -> Gem::Command | nil (9415.0)

登録されているコマンドからマッチしたものを返します。

...登録されているコマンドからマッチしたものを返します。

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

@return Gem::Command のサブクラスのインスタンスを返します。

@raise RuntimeError マッチする可能性のあるコマンドが...

絞り込み条件を変える

Shell::CommandProcessor.alias_command(alias, command, *opts) -> self (9310.0)

@todo

...@todo

@param alias エイリアスの名前を指定します。

@param command コマンド名を指定します。

@param opts コマンドに与えるオプションを指定します。

@raise SyntaxError コマンドのエイリアス作成に失敗した時に発生します。...
<< 1 2 3 ... > >>