diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-05-25 12:25:58 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-05-25 12:47:24 +0200 |
commit | dc0229617ada67fd02815bbc94b245871248b9db (patch) | |
tree | 0af7418d7f3ebf8082408fa2ee9e73f5a572360f /doc/ja/autogen/user/ruby_commands.asciidoc | |
parent | 76a066c9cca620e1204815f63abbfa8b09f162c6 (diff) | |
download | weechat-dc0229617ada67fd02815bbc94b245871248b9db.zip |
doc: use .asciidoc extension instead of .txt for doc files
Diffstat (limited to 'doc/ja/autogen/user/ruby_commands.asciidoc')
-rw-r--r-- | doc/ja/autogen/user/ruby_commands.asciidoc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/ja/autogen/user/ruby_commands.asciidoc b/doc/ja/autogen/user/ruby_commands.asciidoc new file mode 100644 index 000000000..0d2ffabdc --- /dev/null +++ b/doc/ja/autogen/user/ruby_commands.asciidoc @@ -0,0 +1,22 @@ +[[command_ruby_ruby]] +[command]*`ruby`* スクリプトをリストアップ/ロード/アンロード:: + +---- +/ruby list|listfull [<name>] + load [-q] <filename> + autoload + reload|unload [-q] [<name>] + + list: ロード済みスクリプトをリストアップ +listfull: ロード済みスクリプトをリストアップ (詳細) + load: スクリプトをロード +autoload: "autoload" ディレクトリに含まれる全てのスクリプトをロード + reload: スクリプトのリロード (名前を指定しなかった場合、全てのスクリプトをアンロードし、"autoload" ディレクトリに含まれる全てのスクリプトをロード) + unload: スクリプトのアンロード (名前を指定しなかった場合、全てのスクリプトをアンロード) +filename: ロードするスクリプト (ファイル) + name: スクリプト名 (名前は "register" 関数を呼び出すために使われる) + -q: 出力抑制モード: メッセージを表示しない + +引数無しの場合、全てのロード済みスクリプトをリストアップします。 +---- + |