2080件ヒット
[1-100件を表示]
(0.048秒)
種類
ライブラリ
- ビルトイン (38)
- json (24)
- monitor (12)
-
net
/ http (12) - openssl (1092)
- optparse (144)
- psych (12)
-
rexml
/ document (24) -
webrick
/ httputils (48)
クラス
-
Enumerator
:: Lazy (12) - Hash (14)
-
JSON
:: Parser (24) -
Net
:: HTTPResponse (12) -
OpenSSL
:: ASN1 :: ASN1Data (12) -
OpenSSL
:: ASN1 :: BMPString (24) -
OpenSSL
:: ASN1 :: BitString (24) -
OpenSSL
:: ASN1 :: Boolean (24) -
OpenSSL
:: ASN1 :: Enumerated (24) -
OpenSSL
:: ASN1 :: GeneralString (24) -
OpenSSL
:: ASN1 :: GeneralizedTime (24) -
OpenSSL
:: ASN1 :: GraphicString (24) -
OpenSSL
:: ASN1 :: IA5String (24) -
OpenSSL
:: ASN1 :: ISO64String (24) -
OpenSSL
:: ASN1 :: Integer (24) -
OpenSSL
:: ASN1 :: Null (24) -
OpenSSL
:: ASN1 :: NumericString (24) -
OpenSSL
:: ASN1 :: ObjectId (24) -
OpenSSL
:: ASN1 :: OctetString (24) -
OpenSSL
:: ASN1 :: PrintableString (24) -
OpenSSL
:: ASN1 :: Sequence (24) -
OpenSSL
:: ASN1 :: Set (24) -
OpenSSL
:: ASN1 :: T61String (24) -
OpenSSL
:: ASN1 :: UTCTime (24) -
OpenSSL
:: ASN1 :: UTF8String (24) -
OpenSSL
:: ASN1 :: UniversalString (24) -
OpenSSL
:: ASN1 :: VideotexString (24) - OptionParser (144)
-
REXML
:: CData (24) - Range (12)
-
WEBrick
:: HTTPUtils :: FormData (48)
モジュール
-
OpenSSL
:: ASN1 (540)
キーワード
-
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) - ASN1 (12)
- BMPString (24)
- BitString (24)
- Boolean (24)
-
CLASS
_ OF (12) - Enumerated (24)
- GeneralString (24)
- GeneralizedTime (24)
- GraphicString (24)
- IA5String (24)
- ISO64String (24)
- Integer (24)
- Marshal フォーマット (12)
- MonitorMixin (12)
-
NEWS for Ruby 2
. 0 . 0 (12) -
NEWS for Ruby 2
. 4 . 0 (9) -
NEWS for Ruby 2
. 5 . 0 (8) -
NEWS for Ruby 3
. 0 . 0 (5) -
NEWS for Ruby 3
. 1 . 0 (4) - Null (24)
- NumericString (24)
- ObjectId (24)
- OctetString (24)
- Parser (12)
- PrintableString (24)
- RCLASS (12)
- RMODULE (12)
- Ruby用語集 (12)
- Sequence (24)
- Set (24)
- T61String (24)
- UTCTime (24)
- UTF8String (24)
- UniversalString (24)
- VideotexString (24)
-
boot
_ defclass (12) - cgi (12)
-
cgi
/ session (12) - classname (12)
- decode (12)
- filename (12)
- filename= (12)
-
find
_ class _ path (12) -
include
_ class _ new (12) -
ins
_ methods _ i (12) -
ins
_ methods _ priv _ i (12) -
ins
_ methods _ prot _ i (12) - name (12)
- name= (12)
- new (576)
- on (144)
- parse (12)
-
rb
_ catch (12) -
rb
_ class2name (12) -
rb
_ class _ allocate _ instance (12) -
rb
_ class _ boot (12) -
rb
_ class _ inherited (12) -
rb
_ class _ initialize (12) -
rb
_ class _ instance _ methods (12) -
rb
_ class _ new (12) -
rb
_ class _ new _ instance (12) -
rb
_ class _ path (12) -
rb
_ class _ private _ instance _ methods (12) -
rb
_ class _ protected _ instance _ methods (12) -
rb
_ class _ real (12) -
rb
_ class _ s _ new (12) -
rb
_ class _ superclass (12) -
rb
_ clear _ cache _ by _ class (12) -
rb
_ define _ class (12) -
rb
_ define _ class _ id (12) -
rb
_ define _ class _ under (12) -
rb
_ define _ class _ variable (12) -
rb
_ frozen _ class _ p (12) -
rb
_ mod _ class _ variables (12) -
rb
_ name _ class (12) -
rb
_ obj _ class (12) -
rb
_ path2class (12) -
rb
_ set _ class _ path (12) -
rb
_ singleton _ class (12) -
rb
_ singleton _ class _ attached (12) -
rb
_ singleton _ class _ clone (12) -
rb
_ singleton _ class _ new (12) -
rdoc
/ parser / c (12) -
ruby 1
. 8 . 3 feature (12) -
ruby 1
. 8 . 4 feature (12) -
ruby 1
. 9 feature (12) - superclass (12)
-
to
_ h (14) -
to
_ s (12) - クラス/メソッドの定義 (12)
- パターンマッチ (12)
検索結果
先頭5件
-
static VALUE classname(VALUE klass) (26300.0)
-
-
Net
:: HTTPResponse # value -> nil (18119.0) -
レスポンスが 2xx(成功)でなかった場合に、対応する 例外を発生させます。
...t_response(URI.parse(uri))
response.value # => nil
//}
//emlist[例 レスポンスが 2xx以外][ruby]{
require 'net/http'
uri = "http://www.example.com/invalid.html"
response = Net::HTTP.get_response(URI.parse(uri))
begin
response.value
rescue => e
e.class # => Net::HTTPServerException
e.m... -
REXML
:: CData # value -> String (15119.0) -
テキスト文字列を返します。
...テキスト文字列を返します。
@see REXML::Text#value, REXML::Text#to_s
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root><![CDATA[foobar baz]]></root>
EOS
doc.root[0].class # => REXML::CData
doc.root[0].value # => "foobar baz"
//}... -
static VALUE rb
_ class _ superclass(VALUE klass) (12400.0) -
-
VALUE rb
_ class _ new _ instance(int argc , VALUE *argv , VALUE klass) (6416.0) -
Class#new の実体です。
...
Class#new の実体です。... -
static VALUE rb
_ class _ initialize(int argc , VALUE *argv , VALUE klass) (6416.0) -
Class#initialize の実体です。
...
Class#initialize の実体です。... -
VALUE rb
_ define _ class _ under(VALUE outer , const char *name , VALUE super) (6406.0) -
super のサブクラスとして新しい Ruby クラスを、outer の定数として定義し て返します。
...属するクラス
@param name クラス名
@param super 継承元のクラス。NULL を指定した場合は Object クラス
@raise TypeError 引数 name と同じ名前の定数が既に存在し、それが
Class オブジェクトではない場合に発生します。......ス。NULL を指定した場合は Object クラス
@raise TypeError 引数 name と同じ名前の定数が既に存在し、それが
Class オブジェクトではない場合に発生します。
@raise TypeError 定義済みのクラスと継承元のクラスが一致しな... -
VALUE rb
_ class _ inherited(VALUE super , VALUE klass) (6400.0) -
クラス super の下位クラス klass が作成されたことを 受けて、super に対し inherited メソッドを呼び出します。
クラス super の下位クラス klass が作成されたことを
受けて、super に対し inherited メソッドを呼び出します。 -
VALUE rb
_ class _ instance _ methods(int argc , VALUE *argv , VALUE mod) (6400.0) -
Module#instance_methods の実体。 モジュール mod に定義されている public メソッド名の リストを文字列の配列で返します。
Module#instance_methods の実体。
モジュール mod に定義されている public メソッド名の
リストを文字列の配列で返します。