220件ヒット
[201-220件を表示]
(0.125秒)
ライブラリ
- ビルトイン (36)
- matrix (24)
-
net
/ ftp (10) - pathname (60)
- psych (36)
-
rubygems
/ indexer (12) -
rubygems
/ installer (12) -
rubygems
/ package / tar _ reader / entry (12) -
shell
/ command-processor (6) -
webrick
/ httpresponse (12)
クラス
- Complex (12)
-
File
:: Stat (12) -
Gem
:: Indexer (12) -
Gem
:: Installer (12) -
Gem
:: Package :: TarReader :: Entry (12) - Matrix (24)
-
Net
:: FTP :: MLSxEntry (10) - Numeric (12)
- Pathname (60)
-
Psych
:: Handler (12) -
Psych
:: Nodes :: Document (24) -
Shell
:: CommandProcessor (6) -
WEBrick
:: HTTPResponse (12)
キーワード
- children (12)
- directory? (42)
-
directory
_ makable? (10) -
each
_ child (24) -
make
_ temp _ directories (12) - rectangular (36)
-
relative
_ path _ from (12) -
set
_ redirect (12) -
start
_ document (12) -
tag
_ directives (12) -
tag
_ directives= (12) - unpack (12)
検索結果
先頭2件
-
WEBrick
:: HTTPResponse # set _ redirect(status , url) -> () (6201.0) -
指定された url にリダイレクトするためのヘッダと内容(エンティティボディ)を 設定し例外 status を発生させます。
...ためのヘッダと内容(エンティティボディ)を
設定し例外 status を発生させます。
@param status WEBrick::HTTPStatus::Redirect を指定します。
@param url URL を指定します。
例:
require 'webrick'
res.set_redirect WEBrick::HTTPStatus::TemporaryRedirect... -
Pathname
# children(with _ directory = true) -> [Pathname] (3201.0) -
self 配下にあるパス名(Pathnameオブジェクト)の配列を返します。
...self 配下にあるパス名(Pathnameオブジェクト)の配列を返します。
ただし、 ".", ".." は要素に含まれません。
@param with_directory 偽を指定するとファイル名のみ返します。デフォルトは真です。
@raise Errno::EXXX self が存在しないパ......スであったりディレクトリでなければ例外が発生します。
//emlist[例][ruby]{
require 'pathname'
Pathname.new("/tmp").children # => [#<Pathname:.X11-unix>, #<Pathname:.iroha_unix>, ... ]
//}...