1002件ヒット
[101-200件を表示]
(0.117秒)
ライブラリ
- ビルトイン (30)
- drb (24)
-
drb
/ extservm (12) -
net
/ http (288) - open-uri (84)
-
rexml
/ document (60) -
rubygems
/ remote _ fetcher (84) -
rubygems
/ spec _ fetcher (12) -
rubygems
/ specification (12) - uri (324)
-
webrick
/ httprequest (72)
クラス
-
DRb
:: DRbObject (12) -
DRb
:: DRbServer (12) -
DRb
:: ExtServManager (12) -
Gem
:: RemoteFetcher (84) -
Gem
:: SpecFetcher (12) -
Gem
:: Specification (12) -
Net
:: HTTP (12) -
Net
:: HTTPGenericRequest (36) -
Net
:: HTTPResponse (96) - Object (30)
-
REXML
:: Attribute (12) -
REXML
:: Attributes (12) -
REXML
:: Element (12) -
REXML
:: Entity (12) -
REXML
:: NotationDecl (12) -
URI
:: FTP (12) -
URI
:: Generic (192) -
URI
:: HTTP (12) -
URI
:: LDAP (60) -
URI
:: MailTo (48) -
WEBrick
:: HTTPRequest (72)
モジュール
-
Net
:: HTTPHeader (144) -
OpenURI
:: Meta (60) -
OpenURI
:: OpenRead (24)
キーワード
- [] (12)
-
_ _ drburi (12) - attributes (12)
-
basic
_ auth (12) - body (24)
-
cache
_ dir (12) - charset (24)
- code (12)
-
content
_ encoding (12) -
content
_ type (24) - delete (12)
- dn (12)
- download (12)
- entity (12)
- escape (12)
- extensions (12)
- fetch (36)
-
fetch
_ path (12) - filter (12)
- fragment (12)
-
get
_ fields (12) -
get
_ file _ uri _ path (12) - headers (12)
- homepage (12)
- host (24)
- hostname (12)
-
http
_ version (12) -
main
_ type (12) - method (24)
- msg (12)
- namespace (24)
- namespaces (12)
- normalize (12)
- normalize! (12)
-
normalize
_ uri (12) - opaque (12)
- open (12)
-
open
_ uri _ or _ path (12) - password (12)
- path (36)
-
path
_ info (12) - port (12)
-
proxy
_ basic _ auth (12) -
proxy
_ uri (12) - query (12)
-
query
_ string (12) -
query
_ string= (12) - read (12)
-
read
_ body (24) - ref (12)
- registry (12)
-
request
_ uri (12) - scheme (12)
- scope (12)
- select (12)
- status (12)
-
sub
_ type (12) - system (12)
- then (14)
- to (12)
-
to
_ mailtext (12) -
to
_ rfc822text (12) -
to
_ s (12) - typecode (12)
- unescape (12)
-
unparsed
_ uri (12) - user (12)
- userinfo (12)
-
yield
_ self (16)
検索結果
先頭5件
-
URI
:: Generic # normalize! -> String | nil (11131.0) -
URI オブジェクトを正規化して返します。ホスト名を小文字にし、パスと 構成要素がなければ '/' をセットします。
...
URI オブジェクトを正規化して返します。ホスト名を小文字にし、パスと
構成要素がなければ '/' をセットします。
例:
require 'uri'
u = URI.parse('http://Example.Com')
p u.to_s #=> "http://Example.Com"
p u.normalize.to_s... -
URI
:: Generic # to _ s -> String (11130.0) -
自身が表す URI を文字列として返します。
...自身が表す URI を文字列として返します。
例:
require 'uri'
p URI.parse('http://example.com/').to_s #=> "http://example.com/"... -
URI
:: Generic # opaque -> String | nil (11126.0) -
自身の opaque を文字列で返します。設定されていない場合は nil を返します。
...列で返します。設定されていない場合は nil を返します。
例:
require 'uri'
p URI.parse('http://example.com/').opaque #=> nil
p URI.parse('mailto:nospam@localhost').opaque #=> "nospam@localhost"
p URI.parse('urn:ietf:rfc:1149').opaque #=> "ietf:rfc:1149"... -
URI
:: Generic # select(*components) -> [String] (11126.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"]... -
URI
:: Generic # fragment -> String | nil (11114.0) -
自身の fragment を文字列で返します。設定されていない場合は nil を返します。
...自身の fragment を文字列で返します。設定されていない場合は nil を返します。
例:
require 'uri'
u = URI.parse('http://example.com/#frgmt')
p u.fragment #=> "frgmt"... -
URI
:: Generic # query -> String | nil (11114.0) -
自身の query を文字列で返します。設定されていない場合は nil を返します。
...自身の query を文字列で返します。設定されていない場合は nil を返します。
例:
require 'uri'
p URI.parse('http://example.com/?hoge').query #=> "hoge"... -
URI
:: MailTo # headers -> [[String]] (11114.0) -
自身のヘッダーを文字列の配列の配列として設定します。
...自身のヘッダーを文字列の配列の配列として設定します。
例:
require 'uri'
m = URI.parse("mailto:ruby-list@ruby-lang.org?subject=subscribe&cc=myaddr")
p m.headers #=> [["subject", "subscribe"], ["cc", "myaddr"]]... -
URI
:: MailTo # to -> String (11114.0) -
自身の e-mail アドレスを文字列で返します。
...自身の e-mail アドレスを文字列で返します。
例:
require 'uri'
p URI.parse("mailto:nospam@example.com").to #=> "nospam@example.com"... -
URI
:: Generic # host -> String | nil (11108.0) -
自身の host を文字列で返します。設定されていない場合は nil を返します。
...自身の host を文字列で返します。設定されていない場合は nil を返します。
@see URI::Generic#hostname...