2359件ヒット
[1-100件を表示]
(0.027秒)
ライブラリ
- ビルトイン (748)
- coverage (8)
- csv (48)
- debug (12)
- delegate (12)
- digest (12)
- drb (12)
-
drb
/ extserv (12) - e2mmap (6)
- gdbm (24)
- irb (12)
-
irb
/ ext / save-history (12) -
irb
/ extend-command (60) -
irb
/ frame (12) -
irb
/ inspector (12) -
irb
/ magic-file (24) -
irb
/ xmp (12) - json (48)
-
mutex
_ m (12) -
net
/ ftp (24) -
net
/ http (24) -
net
/ pop (24) -
net
/ smtp (32) - open-uri (16)
- openssl (132)
- pp (48)
- prettyprint (24)
- prime (48)
- psych (126)
- pty (24)
-
rdoc
/ code _ object (12) - resolv (24)
-
rinda
/ rinda (12) -
ripper
/ sexp (24) -
rubygems
/ specification (24) - sdbm (24)
-
shell
/ process-controller (6) - singleton (12)
- socket (264)
- stringio (36)
- tempfile (60)
-
test
/ unit (1) - tmpdir (24)
- tracer (12)
- uri (24)
- win32ole (84)
- zlib (96)
クラス
- CSV (48)
- Class (24)
- Coverage (8)
-
DRb
:: DRbObject (12) -
DRb
:: ExtServ (12) -
Digest
:: Base (12) - Dir (144)
- Fiber (12)
- File (36)
- GDBM (24)
-
Gem
:: Specification (24) - Hash (24)
- IO (312)
-
IRB
:: Frame (12) -
IRB
:: Inspector (12) - Integer (28)
-
JSON
:: Parser (12) -
JSON
:: State (12) - Module (24)
-
Net
:: FTP (24) -
Net
:: HTTP (24) -
Net
:: POP3 (24) -
Net
:: SMTP (32) - Object (24)
-
OpenSSL
:: ASN1 :: ObjectId (36) -
OpenSSL
:: X509 :: Attribute (24) -
OpenSSL
:: X509 :: Name (72) - PP (48)
- PrettyPrint (24)
- Prime (24)
- Proc (19)
-
RDoc
:: CodeObject (12) -
Resolv
:: DNS (24) -
Rinda
:: DRbObjectTemplate (12) - Ripper (24)
- SDBM (24)
-
Shell
:: ProcessController (6) - SimpleDelegator (12)
- Socket (168)
- String (12)
- StringIO (36)
- Tempfile (60)
- Thread (36)
- TracePoint (11)
- Tracer (24)
- UNIXServer (48)
- UNIXSocket (48)
- WIN32OLE (36)
-
WIN32OLE
_ METHOD (12) -
WIN32OLE
_ TYPE (24) -
WIN32OLE
_ TYPELIB (12) - XMP (12)
-
Zlib
:: GzipReader (48) -
Zlib
:: GzipWriter (48)
モジュール
- Exception2MessageMapper (6)
- GC (26)
-
GC
:: Profiler (24) - IRB (12)
-
IRB
:: ContextExtender (24) -
IRB
:: ExtendCommandBundle (36) -
IRB
:: HistorySavingAbility (12) - JSON (24)
-
Mutex
_ m (12) - PTY (24)
- Psych (114)
- Singleton (12)
-
Test
:: Unit (1) - URI (40)
オブジェクト
- ENV (16)
-
IRB
:: MagicFile (24) - main (36)
キーワード
- [] (12)
-
array
_ attributes (12) - chdir (48)
- clone (12)
- connect (12)
-
const
_ load (12) - constants (12)
- create (24)
-
create
_ id (12) -
def
_ extend _ command (24) -
def
_ inspector (12) -
default
_ value (12) -
define
_ method (24) - dump (24)
-
dump
_ stream (12) - dup (4)
- each (24)
-
each
_ active _ object (6) -
each
_ prime (24) - exclusive (12)
-
extend
_ object (30) - extended (12)
- file (12)
-
for
_ fd (12) - format (12)
- generate (12)
-
handle
_ interrupt (12) - include (12)
-
install
_ extend _ commands (24) - instance (36)
-
irb
_ exit (12) - join (12)
-
latest
_ gc _ info (24) - load (15)
-
load
_ documents (8) -
load
_ file (12) -
load
_ stream (24) - mktmpdir (24)
- new (427)
-
new
_ with _ uri (12) -
ole
_ classes (12) - open (400)
- parse (24)
-
parse
_ openssl (12) -
parse
_ rfc2253 (12) -
pending
_ interrupt? (12) - pipe (96)
- popen (168)
- pp (12)
- register (12)
- report (12)
- result (12)
-
safe
_ load (19) - sender (12)
-
setup
_ argv (1) - sexp (12)
-
sexp
_ raw (12) -
sharing
_ detection (12) -
sharing
_ detection= (12) -
singleline
_ format (12) -
singleline
_ pp (12) - start (88)
- stat (13)
- stdout (12)
- tcp (24)
-
tcp
_ server _ sockets (48) -
trace
_ func (12) -
try
_ convert (16) -
udp
_ server _ sockets (48) - unix (24)
-
unix
_ server _ socket (24) -
used
_ modules (12) - wrap (48)
-
yaml
_ tag (12) - yield (12)
検索結果
先頭5件
-
Object
. new -> Object (9130.0) -
Objectクラスのインスタンスを生成して返します。
...
Objectクラスのインスタンスを生成して返します。
//emlist[][ruby]{
some = Object.new
p some #=> #<Object:0x2b696d8>
//}... -
Object
. yaml _ tag(tag) -> () (9025.0) -
クラスと tag の間を関連付けます。
...end
attr_reader :x
end
# Dumps Ruby object normally
p Psych.dump(Foo.new(3))
# =>
# --- !ruby/object:Foo
# x: 3
# Registers tag with class Foo
Foo.yaml_as("tag:example.com,2013:foo")
# ... and dumps the object of Foo class
Psych.dump(Foo.new(3), STDOUT)
# =>......# --- !<tag:example.com,2013:foo>
# x: 3
# Loads the object from the tagged YAML node
p Psych.load(<<EOS)
--- !<tag:example.com,2012:foo>
x: 8
EOS
# => #<Foo:0x0000000130f48 @x=8>... -
Mutex
_ m . extend _ object(module) -> Module (6108.0) -
ユーザが直接、使うことはありません。
...ユーザが直接、使うことはありません。
@see Module#extend_object... -
Exception2MessageMapper
. extend _ object(cl) -> () (6102.0) -
@todo
@todo
@param cl -
IRB
:: ExtendCommandBundle . extend _ object(obj) -> IRB :: ExtendCommandBundle (6102.0) -
IRB::ExtendCommandBundle で定義済みの拡張に指定されたエイリアスを obj に定義します。
IRB::ExtendCommandBundle で定義済みの拡張に指定されたエイリアスを
obj に定義します。
@param obj IRB::ExtendCommandBundle を extend したオブジェクト -
Shell
:: ProcessController . each _ active _ object {|ref| . . . } -> () (6102.0) -
@todo
@todo -
OpenSSL
:: ASN1 :: ObjectId . new(value) -> OpenSSL :: ASN1 :: ObjectId (3107.0) -
ASN.1 のオブジェクト識別子を表わす OpenSSL::ASN1::ObjectId の オブジェクトを生成します。
...N1::ObjectId の
オブジェクトを生成します。
value としては、ドット区切り数字表記、short name、long name の文字列の
をいずれかを渡します。
value 以外の引数を省略した場合はタグクラスは :UNIVERSAL、
タグ は OpenSSL::ASN1::OBJECT と......なります。
例:
require "openssl"
include OpenSSL
p ASN1::ObjectId.new("1.2.840.10040.4.3").long_name # => "dsaWithSHA1"
p ASN1::ObjectId.new("dsaWithSHA1").oid # => "1.2.840.10040.4.3"
@param value ASN.1 オブジェクト識別子を表す文字列
@param tag タグ番... -
OpenSSL
:: ASN1 :: ObjectId . new(value , tag , tagging , tag _ class) -> OpenSSL :: ASN1 :: ObjectId (3107.0) -
ASN.1 のオブジェクト識別子を表わす OpenSSL::ASN1::ObjectId の オブジェクトを生成します。
...N1::ObjectId の
オブジェクトを生成します。
value としては、ドット区切り数字表記、short name、long name の文字列の
をいずれかを渡します。
value 以外の引数を省略した場合はタグクラスは :UNIVERSAL、
タグ は OpenSSL::ASN1::OBJECT と......なります。
例:
require "openssl"
include OpenSSL
p ASN1::ObjectId.new("1.2.840.10040.4.3").long_name # => "dsaWithSHA1"
p ASN1::ObjectId.new("dsaWithSHA1").oid # => "1.2.840.10040.4.3"
@param value ASN.1 オブジェクト識別子を表す文字列
@param tag タグ番... -
DRb
:: DRbObject . new _ with _ uri(uri) -> DRb :: DRbObject (3101.0) -
URI から新しい DRbObject を生成します。
...URI から新しい DRbObject を生成します。
別プロセスの DRb.#start_service で指定したフロントオブジェクトを
指すリモートオブジェクトを取り出します。
@param uri URI リモートオブジェクトを指定するための URI (文字列)... -
RDoc
:: CodeObject . new -> RDoc :: CodeObject (3101.0) -
自身を初期化します。
自身を初期化します。