別のキーワード
ライブラリ
- fileutils (12)
-
irb
/ extend-command (24) -
rubygems
/ commands / build _ command (72) -
rubygems
/ commands / cert _ command (12) -
rubygems
/ commands / check _ command (12) -
rubygems
/ commands / cleanup _ command (12) -
rubygems
/ commands / contents _ command (12) -
rubygems
/ commands / dependency _ command (84) -
rubygems
/ commands / environment _ command (12) -
rubygems
/ commands / fetch _ command (12) -
rubygems
/ commands / generate _ index _ command (12) -
rubygems
/ commands / help _ command (36) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / list _ command (12) -
rubygems
/ commands / lock _ command (36) -
rubygems
/ commands / mirror _ command (12) -
rubygems
/ commands / outdated _ command (12) -
rubygems
/ commands / pristine _ command (12) -
rubygems
/ commands / query _ command (12) -
rubygems
/ commands / rdoc _ command (12) -
rubygems
/ commands / search _ command (12) -
rubygems
/ commands / server _ command (12) -
rubygems
/ commands / sources _ command (12) -
rubygems
/ commands / specification _ command (12) -
rubygems
/ commands / stale _ command (12) -
rubygems
/ commands / uninstall _ command (12) -
rubygems
/ commands / unpack _ command (24) -
rubygems
/ commands / update _ command (36) -
rubygems
/ commands / which _ command (48) - shell (6)
-
shell
/ command-processor (18)
クラス
モジュール
- FileUtils (12)
-
IRB
:: ContextExtender (12) -
IRB
:: ExtendCommandBundle (12)
キーワード
- BuildCommand (12)
- CertCommand (12)
- CheckCommand (12)
- CleanupCommand (12)
- ContentsCommand (12)
- DependencyCommand (12)
- EXAMPLES (12)
- EXT (12)
- EnvironmentCommand (12)
- FetchCommand (12)
- GenerateIndexCommand (12)
- HelpCommand (12)
- InstallCommand (12)
- ListCommand (12)
- LockCommand (12)
- MirrorCommand (12)
- OutdatedCommand (12)
- PLATFORMS (12)
- PristineCommand (12)
- QueryCommand (12)
- RdocCommand (12)
- SearchCommand (12)
- ServerCommand (12)
- SourcesCommand (12)
- SpecificationCommand (12)
- StaleCommand (12)
- UninstallCommand (12)
- UnpackCommand (12)
- UpdateCommand (12)
- WhichCommand (12)
- arguments (24)
- complain (12)
-
def
_ builtin _ commands (6) -
do
_ rubygems _ update (12) - execute (24)
-
find
_ gems (12) -
find
_ paths (12) -
find
_ reverse _ dependencies (12) -
gem
_ paths (12) -
get
_ path (12) -
install
_ builtin _ commands (6) -
install
_ extend _ commands (24) -
install
_ system _ commands (12) -
load
_ gemspecs (12) -
print
_ dependencies (12) -
ruby 1
. 8 . 3 feature (12) - rubygems (12)
-
rubygems
/ command _ manager (12) -
rubygems
/ commands / build _ command (12) -
rubygems
/ commands / cert _ command (12) -
rubygems
/ commands / check _ command (12) -
rubygems
/ commands / cleanup _ command (12) -
rubygems
/ commands / contents _ command (12) -
rubygems
/ commands / dependency _ command (12) -
rubygems
/ commands / environment _ command (12) -
rubygems
/ commands / fetch _ command (12) -
rubygems
/ commands / generate _ index _ command (12) -
rubygems
/ commands / help _ command (12) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / list _ command (12) -
rubygems
/ commands / lock _ command (12) -
rubygems
/ commands / mirror _ command (12) -
rubygems
/ commands / outdated _ command (12) -
rubygems
/ commands / pristine _ command (12) -
rubygems
/ commands / query _ command (12) -
rubygems
/ commands / rdoc _ command (12) -
rubygems
/ commands / search _ command (12) -
rubygems
/ commands / server _ command (12) -
rubygems
/ commands / sources _ command (12) -
rubygems
/ commands / specification _ command (12) -
rubygems
/ commands / stale _ command (12) -
rubygems
/ commands / uninstall _ command (12) -
rubygems
/ commands / unpack _ command (12) -
rubygems
/ commands / update _ command (12) -
rubygems
/ commands / which _ command (12) -
rubygems
/ server (12) -
spec
_ path (12) - usage (24)
-
which
_ to _ update (12) - yaml? (12)
- オブジェクト指向スクリプト言語 Ruby リファレンスマニュアル (12)
- コマンド (12)
検索結果
先頭5件
-
FileUtils
. commands -> Array (18107.0) -
何らかのオプションを持つメソッド名の配列を返します。
...何らかのオプションを持つメソッド名の配列を返します。
//emlist[][ruby]{
require 'fileutils'
FileUtils.commands # => ["chmod", "cp", "cp_r", "install", ...]
//}... -
Shell
:: CommandProcessor . def _ builtin _ commands(delegation _ class , commands _ specs) -> () (6208.0) -
@todo
...@todo
@param delegation_class 処理を委譲したいクラスかモジュールを指定します。
@param commands_specs コマンドの仕様を文字列の配列で指定します。
[[コマンド名, [引数1, 引数2, ...]], ...]... -
IRB
:: ExtendCommandBundle . install _ extend _ commands -> object (6107.0) -
定義済みの拡張を読み込みます。
...* irb_push_workspace
* irb_pop_workspace
* irb_load
* irb_require
* irb_source
* irb
* irb_jobs
* irb_fg
* irb_kill
* irb_help
irb/extend-command が require された時にライブラリ内部で自動的
に実行されます。
@see IRB::ExtendCommandBundle.install_extend_commands... -
Shell
. install _ system _ commands(pre = "sys _ ") -> () (6107.0) -
system_path上にある全ての実行可能ファイルをShellに定義する. メソッ ド名は元のファイル名の頭にpreをつけたものとなる.
...メソッド名の先頭に付加される文字列を指定します。
使用例: ls -l | head -n 5 のような例。
require 'shell'
Shell.install_system_commands
sh = Shell.new
sh.verbose = false
sh.transact {
(sys_ls("-l") | sys_head("-n 5")).each {|l|
puts l
}
}... -
IRB
:: ContextExtender . install _ extend _ commands -> object (6101.0) -
定義済みの拡張を読み込みます。
定義済みの拡張を読み込みます。
IRB::Context で以下のメソッドが利用できるようになります。
* eval_history=
* use_tracer=
* math_mode=
* use_loader=
* save_history=
irb/extend-command が require された時にライブラリ内部で自動的
に実行されます。
@see IRB::ContextExtender.def_extend_command -
Shell
:: CommandProcessor . install _ builtin _ commands -> () (6101.0) -
ビルトインコマンドを定義します。
ビルトインコマンドを定義します。 -
Shell
:: CommandProcessor . install _ system _ commands(prefix = "sys _ ") -> () (6101.0) -
全てのシステムコマンドをメソッドとして定義します。
全てのシステムコマンドをメソッドとして定義します。
既に定義されているコマンドを再定義することはありません。
デフォルトでは全てのコマンドに "sys_" というプレフィクスが付きます。
また、メソッド名として使用できない文字は全て "_" に置換してメソッドを定義します。
このメソッドの実行中に発生した例外は単に無視されます。
@param prefix プレフィクスを指定します。 -
rubygems
/ commands / help _ command (6006.0) -
Gem コマンドに関するヘルプを提供するためのライブラリです。
...ースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Arguments:
commands gem コマンドのサブコマンドの一覧を表示します
examples gem コマンドの使用例を表示します... -
rubygems
/ commands / build _ command (6000.0) -
Gem パッケージをビルドするためのライブラリです。
Gem パッケージをビルドするためのライブラリです。
Usage: gem build GEMSPEC_FILE [options]
Common Options:
-h, --help このコマンドのヘルプを表示します
-V, --[no-]verbose 表示を詳細にします
-q, --quiet 静かに実行します
--config-file FILE 指定された設定ファイルを使用します... -
rubygems
/ commands / cert _ command (6000.0) -
Gem パッケージの証明書や署名の設定を管理するためのライブラリです。
Gem パッケージの証明書や署名の設定を管理するためのライブラリです。
Usage: gem cert [options]
Options:
-a, --add CERT 信頼された証明書を追加します
-l, --list 信頼されている証明書の一覧を表示します
-r, --remove STRING STRING を含む証明書を削除します
-b, --build EMAIL_ADDR EMAIL_ADDR ... -
rubygems
/ commands / check _ command (6000.0) -
インストールされている Gem パッケージを検証するためのライブラリです。
インストールされている Gem パッケージを検証するためのライブラリです。
Usage: gem check [options]
Options:
--verify FILE 内部のチェックサムにより Gem パッケージを検証します
-a, --alien 管理されていないパッケージを報告します
-t, --test Gem パッケージのユニットテストを実行します
-v, --version VERSION ...