512件ヒット
[501-512件を表示]
(0.070秒)
ライブラリ
-
cgi
/ core (24) -
net
/ ftp (12) -
net
/ http (72) -
net
/ imap (12) -
net
/ smtp (32) - openssl (36)
- resolv (72)
- resolv-replace (36)
- socket (132)
- uri (60)
-
webrick
/ httprequest (12) -
webrick
/ httpserver (12)
クラス
- Addrinfo (72)
-
Net
:: FTP (12) -
Net
:: HTTP (48) -
Net
:: HTTPResponse (24) -
Net
:: IMAP :: Address (12) -
Net
:: SMTP (32) -
OpenSSL
:: SSL :: SSLSocket (36) -
Resolv
:: Hosts (72) - UDPSocket (96)
-
URI
:: Generic (60) -
WEBrick
:: HTTPRequest (12) -
WEBrick
:: HTTPServer (12)
モジュール
-
CGI
:: QueryExtension (24)
キーワード
- bind (24)
- connect (36)
-
connect
_ from (24) -
connect
_ to (24) -
each
_ address (12) -
each
_ name (12) -
family
_ addrinfo (24) - getaddress (12)
- getaddresses (12)
- getname (12)
- getnames (12)
- host= (12)
- hostname (24)
- hostname= (24)
-
local
_ host (12) -
local
_ host= (12) -
local
_ port (12) -
local
_ port= (12) -
post
_ connection _ check (12) -
read
_ body (24) -
remote
_ host (12) - select (12)
- send (48)
- start (32)
-
virtual
_ host (12)
検索結果
-
URI
:: Generic # select(*components) -> [String] (7.0) -
指定された components に対応する構成要素を文字列の配列として返します。
...字列の配列として返します。
@param components 構成要素名をシンボルで指定します。
例:
require 'uri'
uri = URI.parse('http://myuser:mypass@my.example.com/test.rbx')
p uri.select(:userinfo, :host, :path)
# => ["myuser:mypass", "my.example.com", "/test.rbx"]...