751件ヒット
[701-751件を表示]
(0.075秒)
ライブラリ
クラス
-
ARGF
. class (38) - IO (38)
-
Net
:: FTP (60) -
Net
:: HTTPResponse (12) -
Net
:: IMAP (12) -
Net
:: IMAP :: ResponseCode (24) -
Net
:: IMAP :: ResponseText (12) -
OpenSSL
:: Config (12) -
OpenSSL
:: OCSP :: BasicResponse (12) -
RDoc
:: CodeObject (216) - Refinement (4)
- String (153)
- StringIO (38)
-
URI
:: FTP (24) -
Win32
:: Registry :: Error (12) -
Zlib
:: GzipFile (12)
モジュール
-
CGI
:: HtmlExtension (24) -
RSS
:: ContentModel (24) - RakeFileUtils (24)
キーワード
- codepoints (66)
- comment (12)
- comment= (12)
-
content
_ encoded (12) -
content
_ encoded= (12) - data (12)
-
document
_ children (12) -
document
_ children= (12) -
document
_ self (12) -
document
_ self= (12) - documented? (12)
- each (12)
-
each
_ codepoint (96) - encode (36)
- encode! (24)
- form (24)
-
import
_ methods (4) - kconv (12)
-
last
_ response (12) -
last
_ response _ code (12) - lastresp (12)
- name (12)
- nowrite (12)
-
os
_ code (12) - parent (12)
- parent= (12)
-
parent
_ file _ name (12) -
parent
_ name (12) -
remove
_ classes _ and _ modules (12) -
remove
_ methods _ etc (12) -
return
_ code (12) -
return
_ code= (12) - section (12)
- section= (12)
-
start
_ doc (12) - status (12)
-
stop
_ doc (12) - typecode (12)
- typecode= (12)
-
unicode
_ normalize (11) -
unicode
_ normalize! (11) -
unicode
_ normalized? (11) - verbose (12)
- xlist (12)
検索結果
先頭5件
-
Net
:: IMAP # xlist(refname , mailbox) -> [Net :: IMAP :: MailboxList] (7.0) -
XLISTコマンドを送り、クライアントから利用可能なメールボックス名の集合から 引数にマッチするものすべてを返します。
...Net::IMAP#list とほぼ同様ですが、
「:Sent」などの拡張されたフラグを含むことが異なります。
詳しくは
http://code.google.com/apis/gmail/imap/
を参照してください。
@param refname 参照名(文字列)
@param mailbox 調べるメールボックスの名... -
OpenSSL
:: Config # each {|section , key , value| . . . } -> self (7.0) -
オブジェクトに含まれる全ての設定情報を順にブロックに渡し 呼び出します。
...::DEFAULT_CONFIG_FILE)
conf.each{|section, key, value| p [section, key, value]}
# => ["req_distinguished_name", "countryName", "Country Name (2 letter code)"]
# => ["req_distinguished_name", "countryName_default", "AU"]
# => ["req_distinguished_name", "countryName_min", "2"]
# => :... -
RakeFileUtils
# nowrite(value = nil) { . . . } (7.0) -
ファイルを書き込むかどうかを制御します。
...nowrite # 現在の状態を返します。
nowrite(v) # 与えられた状態に変更します。
nowrite(v) { code } # ブロックを評価する間だけ与えられた状態に変更します。
# ブロックの評価が終わる... -
RakeFileUtils
# verbose(value = nil) { . . . } (7.0) -
詳細を出力するかどうかを制御します。
...verbose # 現在の状態を返します。
verbose(v) # 与えられた状態に変更します。
verbose(v) { code } # ブロックを評価する間だけ与えられた状態に変更します。
# ブロックの評価が終わる... -
Refinement
# import _ methods(*modules) -> self (7.0) -
モジュールからメソッドをインポートします。
...level)
' ' * level + self
end
end
module M
refine String do
import_methods StrUtils
end
end
using M
p "foo".indent(3) # => " foo"
module M
refine String do
import_methods Enumerable
# Can't import method which is not defined with Ruby code: Enumerable#drop
end
end
//}...