るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
29件ヒット [1-29件を表示] (0.168秒)
トップページ > バージョン:2.3.0[x] > 種類:インスタンスメソッド[x] > クエリ:t[x] > クラス:URI::Generic[x]

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

ライブラリ

キーワード

検索結果

URI::Generic#registry -> String | nil (18607.0)

自身の registry を文字列で返します。設定されていない場合は nil を返します。

自身の registry を文字列で返します。設定されていない場合は nil を返します。

URI::Generic#absolute -> bool (18307.0)

自身に scheme が設定されているなら true を返します。そうでない場合は false を返します。

自身に scheme が設定されているなら true を返します。そうでない場合は false を返します。

例:
require 'uri'
p URI.parse('http://example.com/').absolute? #=> true
p URI.parse('./').absolute? #=> false

URI::Generic#absolute? -> bool (18307.0)

自身に scheme が設定されているなら true を返します。そうでない場合は false を返します。

自身に scheme が設定されているなら true を返します。そうでない場合は false を返します。

例:
require 'uri'
p URI.parse('http://example.com/').absolute? #=> true
p URI.parse('./').absolute? #=> false

URI::Generic#component -> [Symbol] (18307.0)

self.class.component を返します。

...self.class.component を返します。

@see URI::Generic.component...

URI::Generic#default_port -> Integer | nil (18307.0)

self.class.default_port を返します。

...self.class.default_port を返します。

@see URI::Generic.default_port...

絞り込み条件を変える

URI::Generic#fragment -> String | nil (18307.0)

自身の fragment を文字列で返します。設定されていない場合は nil を返します。

自身の fragment を文字列で返します。設定されていない場合は nil を返します。

例:
require 'uri'
u = URI.parse('http://example.com/#frgmt')
p u.fragment #=> "frgmt"

URI::Generic#fragment=(s) (18307.0)

自身の fragment を設定します。

自身の fragment を設定します。

@param s 自身の fragment を表す文字列を指定します。

@raise URI::InvalidComponentError 不正な引数 s に対して発生します。

URI::Generic#host -> String | nil (18307.0)

自身の host を文字列で返します。設定されていない場合は nil を返します。

...自身の host を文字列で返します。設定されていない場合は nil を返します。

@see URI::Generic#hostname...

URI::Generic#host=(s) (18307.0)

自身の host を設定します。

...を設定します。

@param s 自身の host を表す文字列を指定します。

@raise URI::InvalidComponentError 不正な引数 s に対して発生します。

@raise URI::InvalidURIError host と registry を同時に設定した場合に発生します。

@see URI::Generic#hostname=...

URI::Generic#hostname -> String | nil (18307.0)

自身の hostname を文字列で返します。また、URI::Generic#host が設 定されていない場合は nil を返します。

...自身の hostname を文字列で返します。また、URI::Generic#host が設
定されていない場合は nil を返します。

このメソッドは URI::Generic#host に IPv6 アドレスが設定されていた
場合はブラケットを削除した文字列を返しますがそれ以...

絞り込み条件を変える

URI::Generic#hostname=(s) (18307.0)

自身の hostname を設定します。

...自身の hostname を設定します。

このメソッドは引数に IPv6 アドレスを設定した場合は
URI::Generic
#host にブラケットを追加した文字列を設定しますがそれ
以外は同じ処理を行います。

require 'uri'
u = URI("http://foo/bar")
p u.to_s...

URI::Generic#path -> String | nil (18307.0)

自身の path を文字列で返します。設定されていない場合は nil を返します。

自身の path を文字列で返します。設定されていない場合は nil を返します。

require 'uri'
p URI.parse('http://example.com/hoge').path #=> "/hoge"
p URI.parse('http://example.com').path #=> ""
p URI.parse('mailto:nospam@localhost').path #=> nil
p URI('ftp://example.com/foo').path #=> 'foo'
p UR...

URI::Generic#path=(s) (18307.0)

自身の path を設定します。

自身の path を設定します。

@param s 自身の path を表す文字列を指定します。

@raise URI::InvalidComponentError 不正な引数 s に対して発生します。

@raise URI::InvalidURIError opaque と path を同時に設定した場合に発生します。

URI::Generic#port -> String | nil (18307.0)

自身の port を文字列で返します。設定されていない場合は nil を返します。

自身の port を文字列で返します。設定されていない場合は nil を返します。

URI::Generic#port=(s) (18307.0)

自身の port を設定します。

自身の port を設定します。

@param s 自身の port を表す文字列か整数を指定します。

@raise URI::InvalidComponentError 不正な引数 s に対して発生します。

@raise URI::InvalidURIError port と registry を同時に設定した場合に発生します。

絞り込み条件を変える

URI::Generic#registry=(s) (18307.0)

自身の registry を設定します。

自身の registry を設定します。

@param s 自身の registry を表す文字列を指定します。

@raise URI::InvalidComponentError 不正な引数 s に対して発生します。

@raise URI::InvalidURIError server 部と registry を同時に設定した場合に発生します。

URI::Generic#relative? -> bool (18307.0)

自身に scheme が設定されていないなら true を返します。そうでない場合は false を返します。

自身に scheme が設定されていないなら true を返します。そうでない場合は false を返します。

例:
require 'uri'
p URI.parse('http://example.com/').relative? #=> false
p URI.parse('./').relative? #=> true

URI::Generic#route_to(dst) -> URI::Generic (18307.0)

自身から dst への相対パスを返します。

...自身から dst への相対パスを返します。

@param dst URI を文字列かURIオブジェクトで与えます。

例:
require 'uri'
p URI.parse('http://example.com/').route_to('http://example.com/foo/bar.html')

#=> #<URI::Generic:0x20100198 URL:foo/bar.html>...

URI::Generic#select(*components) -> [String] (18307.0)

指定された components に対応する構成要素を文字列の配列として返します。

指定された 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#to_s -> String (18307.0)

自身が表す URI を文字列として返します。

自身が表す URI を文字列として返します。

例:
require 'uri'
p URI.parse('http://example.com/').to_s #=> "http://example.com/"

絞り込み条件を変える

URI::Generic#route_from(src) -> URI::Generic (9307.0)

与えられた URI を表す src からの相対パスを返します。

...rc からの相対パスを返します。

@param src 自身の相対パスを算出するための、ルートとなる Absolute URI を与えます。

例:
require 'uri'
p URI.parse('http://example.com/foo/bar.html') - 'http://example.com/'
#=> #<URI::Generic:0x20100256 URL:foo/bar.html>...

URI::Generic#coerce(oth) -> [URI, URI] (307.0)

引数 oth をパースして [パース後の oth, self] の配列を返します。

引数 oth をパースして [パース後の oth, self] の配列を返します。

@param oth URI オブジェクトか文字列を指定します。

例:

require 'uri'

uri = URI.parse("http://my.example.com")
uri.coerce("http://foo.com")
# => [#<URI::HTTP:0x00000000bcb028 URL:http://foo.com/>, #<URI::HTTP:0x00000000d92178 URL:http://my.example.com>]

URI::Generic#normalize! -> String | nil (307.0)

URI オブジェクトを正規化して返します。ホスト名を小文字にし、パスと 構成要素がなければ '/' をセットします。

URI オブジェクトを正規化して返します。ホスト名を小文字にし、パスと
構成要素がなければ '/' をセットします。

例:
require 'uri'
u = URI.parse('http://Example.Com')
p u.to_s #=> "http://Example.Com"
p u.normalize.to_s #=> "http://example.com/"

URI::Generic#opaque -> String | nil (307.0)

自身の opaque を文字列で返します。設定されていない場合は nil を返します。

自身の opaque を文字列で返します。設定されていない場合は 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#password -> String | nil (307.0)

自身の password を文字列で返します。設定されていない場合は nil を返します。

自身の password を文字列で返します。設定されていない場合は nil を返します。

絞り込み条件を変える

URI::Generic#query -> String | nil (307.0)

自身の query を文字列で返します。設定されていない場合は nil を返します。

自身の query を文字列で返します。設定されていない場合は nil を返します。

例:
require 'uri'
p URI.parse('http://example.com/?hoge').query #=> "hoge"

URI::Generic#scheme -> String | nil (307.0)

自身の scheme を文字列で返します。設定されていない場合は nil を返します。

自身の scheme を文字列で返します。設定されていない場合は nil を返します。

URI::Generic#user -> String | nil (307.0)

自身の userinfo を文字列で返します。

自身の userinfo を文字列で返します。

userinfo が「username:password」の形式である場合は、username 部を返します。
設定されていない場合は nil を返します。

URI::Generic#userinfo -> String | nil (307.0)

自身の userinfo を "username:password" という形式の文字列で返します。 設定されていない場合は nil を返します。

自身の userinfo を "username:password" という形式の文字列で返します。
設定されていない場合は nil を返します。