summaryrefslogtreecommitdiff
path: root/doc/ja/autogen/user/ruby_commands.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ja/autogen/user/ruby_commands.txt')
-rw-r--r--doc/ja/autogen/user/ruby_commands.txt23
1 files changed, 12 insertions, 11 deletions
diff --git a/doc/ja/autogen/user/ruby_commands.txt b/doc/ja/autogen/user/ruby_commands.txt
index e4ac63e3c..d4bf50f81 100644
--- a/doc/ja/autogen/user/ruby_commands.txt
+++ b/doc/ja/autogen/user/ruby_commands.txt
@@ -2,19 +2,20 @@
[command]*`ruby`* スクリプトをリストアップ/ロード/アンロード::
........................................
/ruby list|listfull [<name>]
- load <filename>
+ load [-q] <filename>
autoload
- reload|unload [<name>]
+ reload|unload [-q] [<name>]
- list: ロード済みスクリプトをリストアップ
-listfull: ロード済みスクリプトをリストアップ (詳細)
- load: スクリプトをロード
-autoload: "autoload" ディレクトリに含まれる全てのスクリプトをロード
- reload: スクリプトのリロード (名前を指定しなかった場合、全てのスクリプトをアンロードし、"autoload" ディレクトリに含まれる全てのスクリプトをロード)
- unload: スクリプトのアンロード (名前を指定しなかった場合、全てのスクリプトをアンロード)
-filename: ロードするスクリプト (ファイル)
- name: スクリプト名 (名前は "register" 関数を呼び出すために使われる)
+ list: list loaded scripts
+listfull: list loaded scripts (verbose)
+ load: load a script
+autoload: load all scripts in "autoload" directory
+ reload: reload a script (if no name given, unload all scripts, then load all scripts in "autoload" directory)
+ unload: unload a script (if no name given, unload all scripts)
+filename: script (file) to load
+ name: a script name (name used in call to "register" function)
+ -q: quiet mode: do not display messages
-引数無しの場合、全てのロード済みスクリプトをリストアップする。
+Without argument, this command lists all loaded scripts.
........................................