要約
gem コマンドによってサポートされているサブコマンドを管理するクラスです。
目次
- 特異メソッド
- インスタンスメソッド
継承しているメソッド
- Gem::UserInteractionから継承しているメソッド
- Gem::DefaultUserInteractionから継承しているメソッド
特異メソッド
instance -> Gem::CommandManager
[permalink][rdoc][edit]-
自身をインスタンス化します。
インスタンスメソッド
self[command_name] -> Gem::Command | nil
[permalink][rdoc][edit]-
引数で指定されたコマンド名に対応するクラスのインスタンスを返します。
- [PARAM] command_name:
- コマンド名を文字列で指定します。
command_names -> Array
[permalink][rdoc][edit]-
登録されているコマンド名の配列を返します。
find_command(command_name) -> Gem::Command | nil
[permalink][rdoc][edit]-
登録されているコマンドからマッチしたものを返します。
- [PARAM] command_name:
- コマンド名を文字列で指定します。
- [RETURN]
- Gem::Command のサブクラスのインスタンスを返します。
- [EXCEPTION] RuntimeError:
- マッチする可能性のあるコマンドが複数ある場合に発生します。また、マッチするコマンドが無かった場合にも発生します。
find_command_possibilities(command_name) -> Array
[permalink][rdoc][edit]-
登録されているコマンドでマッチする可能性のあるものを返します。
- [PARAM] command_name:
- コマンド名を文字列で指定します。
process_args(args) -> ()
[permalink][rdoc][edit]-
引数 args を処理して gem コマンドを実行するために必要な処理を行います。
- [PARAM] args:
- コマンドラインから受け取った引数を指定します。
register_command(command_name) -> false
[permalink][rdoc][edit]-
コマンドを自身に登録します。
- [PARAM] command_name:
- コマンド名をシンボルで指定します。
run(args) -> ()
[permalink][rdoc][edit]-
引数 args を処理して gem コマンドを実行中のエラーを捕捉します。
- [PARAM] args:
- コマンドラインから受け取った引数を指定します。