1246件ヒット
[1-100件を表示]
(0.119秒)
ライブラリ
- ビルトイン (178)
- continuation (12)
- csv (3)
- delegate (24)
-
drb
/ acl (24) - fiddle (24)
-
irb
/ extend-command (12) - logger (12)
- matrix (176)
-
minitest
/ unit (1) - mkmf (24)
-
net
/ http (12) -
net
/ imap (24) -
net
/ pop (108) - openssl (96)
- pstore (12)
- rake (12)
-
rexml
/ document (36) -
rinda
/ rinda (12) -
rinda
/ tuplespace (12) -
rubygems
/ dependency _ installer (36) -
rubygems
/ installer (96) -
rubygems
/ remote _ fetcher (12) -
rubygems
/ source _ index (12) -
rubygems
/ source _ info _ cache (24) -
rubygems
/ source _ info _ cache _ entry (12) -
rubygems
/ spec _ fetcher (36) -
rubygems
/ specification (12) -
rubygems
/ uninstaller (84) - shell (24)
-
shell
/ command-processor (24) -
shell
/ filter (24) -
webrick
/ httpauth / digestauth (12)
クラス
- ACL (24)
- Array (21)
-
CSV
:: Row (3) - Continuation (12)
- Delegator (24)
-
Fiddle
:: Closure :: BlockCaller (12) -
Fiddle
:: Function (12) -
Gem
:: DependencyInstaller (36) -
Gem
:: Installer (96) -
Gem
:: RemoteFetcher (12) -
Gem
:: SourceIndex (12) -
Gem
:: SourceInfoCache (24) -
Gem
:: SourceInfoCacheEntry (12) -
Gem
:: SpecFetcher (36) -
Gem
:: Specification (12) -
Gem
:: Uninstaller (84) - Hash (55)
- Integer (8)
-
Logger
:: Formatter (12) - Matrix (176)
- Method (38)
- Module (12)
-
Net
:: HTTP (12) -
Net
:: IMAP (24) -
Net
:: POPMail (108) - Object (12)
-
OpenSSL
:: Netscape :: SPKI (12) -
OpenSSL
:: SSL :: SSLContext (48) -
OpenSSL
:: X509 :: Store (24) -
OpenSSL
:: X509 :: StoreContext (12) - PStore (12)
-
RDoc
:: Options (24) -
REXML
:: Attributes (12) -
REXML
:: Element (12) -
REXML
:: Elements (12) -
Rinda
:: TupleSpace (12) -
Rinda
:: TupleSpaceProxy (12) - Shell (24)
-
Shell
:: CommandProcessor (24) -
Shell
:: Filter (24) -
WEBrick
:: HTTPAuth :: DigestAuth (12)
モジュール
- Enumerable (32)
- FileUtils (12)
-
IRB
:: ExtendCommandBundle (12) - Kernel (24)
-
MiniTest
:: Assertions (1)
キーワード
- << (7)
- >> (7)
- [] (12)
- all? (45)
- allbits? (8)
-
allow
_ socket? (12) -
ask
_ if _ ok (12) - call (72)
- cat (18)
- challenge (12)
- challenge= (12)
- ciphers= (12)
- collect (14)
- collect! (14)
- context= (12)
-
deconstruct
_ keys (3) - delete (24)
-
delete
_ all (24) -
dependencies
_ ok? (12) - download (12)
- each (24)
-
each
_ with _ index (24) - echo (18)
-
ensure
_ dependency (12) - fetch (12)
-
find
_ gems _ with _ sources (12) -
find
_ index (36) -
find
_ matching (12) -
find
_ spec _ by _ name _ and _ version (12) - flags= (24)
-
formatted
_ program _ filename (12) -
generate
_ bin _ script (12) -
generate
_ bin _ symlink (12) -
generate
_ windows _ script (12) - glob (18)
-
hyperlink
_ all= (12) - index (43)
- install (12)
-
install
_ alias _ method (12) -
install
_ files (12) -
install
_ list (12) -
install
_ rb (12) -
installation
_ satisfies _ dependency? (12) - key (12)
- list (12)
- mail (36)
- map (14)
- map! (14)
-
path
_ ok? (12) - pop (36)
-
protected
_ methods (12) - public (12)
-
public
_ methods (12) -
read
_ all (24) - refresh (12)
- remove (12)
-
remove
_ all (12) -
remove
_ executables (12) -
respond
_ to? (12) - search (12)
-
search
_ with _ source (12) - shebang (12)
-
show
_ all= (12) - skip (1)
- sort (12)
-
split
_ all (12) - tally (8)
- tee (18)
-
tmp
_ dh _ callback= (12) -
uid
_ sort (12) -
ultra
_ safe= (12) -
uninstall
_ gem (12) - unpack (12)
- update (12)
-
verify
_ callback= (36)
検索結果
先頭5件
-
Net
:: POPMail # all -> String (21222.0) -
メールを受信します。
...を返します。
pop, all, mail はすべて同じ効果ですが、
all と mail は obsolete です。
使用例:
require 'net/pop'
Net::POP3.start('pop.example.com', 110,
'YourAccount', 'YourPassword') {|pop|
pop.mails.each do |m|
puts m.pop
end
}......'net/pop'
Net::POP3.start('pop.example.com', 110) {|pop|
pop.each_mail do |m|
m.pop do |str|
print str
end
end
}
@param io メールの内容を書きこむオブジェクト
@raise TimeoutError 通信がタイムアウトした場合に発生します
@raise Net::P......OPError サーバが認証失敗以外のエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロトコル上不正であった場合に発生します... -
Net
:: POPMail # all {|str| . . . . } -> nil (21222.0) -
メールを受信します。
...を返します。
pop, all, mail はすべて同じ効果ですが、
all と mail は obsolete です。
使用例:
require 'net/pop'
Net::POP3.start('pop.example.com', 110,
'YourAccount', 'YourPassword') {|pop|
pop.mails.each do |m|
puts m.pop
end
}......'net/pop'
Net::POP3.start('pop.example.com', 110) {|pop|
pop.each_mail do |m|
m.pop do |str|
print str
end
end
}
@param io メールの内容を書きこむオブジェクト
@raise TimeoutError 通信がタイムアウトした場合に発生します
@raise Net::P......OPError サーバが認証失敗以外のエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロトコル上不正であった場合に発生します... -
Net
:: POPMail # all(io) -> object (21222.0) -
メールを受信します。
...を返します。
pop, all, mail はすべて同じ効果ですが、
all と mail は obsolete です。
使用例:
require 'net/pop'
Net::POP3.start('pop.example.com', 110,
'YourAccount', 'YourPassword') {|pop|
pop.mails.each do |m|
puts m.pop
end
}......'net/pop'
Net::POP3.start('pop.example.com', 110) {|pop|
pop.each_mail do |m|
m.pop do |str|
print str
end
end
}
@param io メールの内容を書きこむオブジェクト
@raise TimeoutError 通信がタイムアウトした場合に発生します
@raise Net::P......OPError サーバが認証失敗以外のエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロトコル上不正であった場合に発生します... -
Gem
:: DependencyInstaller # install(dep _ or _ name , version = Gem :: Requirement . default) -> Array (18213.0) -
指定された Gem とその依存する Gem を全てインストールします。
...その依存する Gem を全てインストールします。
@param dep_or_name Gem の名前か Gem::Dependency のインスタンスを指定します。
@param version バージョンに関する条件を指定します。
@return このメソッドでインストールした Gem のリス... -
Gem
:: Uninstaller # uninstall _ gem(spec , specs) (18213.0) -
与えられた spec に対応する Gem をアンインストールします。
...与えられた spec に対応する Gem をアンインストールします。
@param spec アンインストール指定されている Gem の Gem::Specification を指定します。
@param specs アンインストールする Gem のリストを指定します。
このパラ... -
Gem
:: Installer # installation _ satisfies _ dependency?(dependency) -> bool (18207.0) -
登録されているソースインデックスが与えられた依存関係を 満たすことができる場合は、真を返します。そうでない場合は偽を返します。
...登録されているソースインデックスが与えられた依存関係を
満たすことができる場合は、真を返します。そうでない場合は偽を返します。
@param dependency Gem::Dependency のインスタンスを指定します。... -
REXML
:: Attributes # delete _ all(name) -> [REXML :: Attribute] (12314.0) -
name という名前を持つ属性をすべて削除します。
...@param name 削除する属性の名前
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<-EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2' att='<'/>
</root>
EOS
a = doc.get_elements("/root/a").first
a.att......ributes.delete_all("att") # => [att='<']
a # => <a foo:att='1' bar:att='2'/>
//}... -
IRB
:: ExtendCommandBundle # install _ alias _ method(to , from , override = NO _ OVERRIDE) (12225.0) -
メソッドのエイリアスを定義します。ライブラリ内部で使用します。
...を定義します。ライブラリ内部で使用します。
@param to 新しいメソッド名を Symbol か文字列で指定します。
@param from 元のメソッド名を Symbol か文字列で指定します。
@param override 新しいメソッド名が定義済みであった場合に......のメソッドを
上書きするかどうかを
IRB::ExtendCommandBundle::NO_OVERRIDE、
IRB::ExtendCommandBundle::OVERRIDE_PRIVATE_ONLY、
IRB::ExtendCommandBundle::OVERRIDE_ALL のいずれか
で指定します。... -
Kernel
# install _ files(mfile , ifiles , map = nil , srcprefix = nil) -> [] (12225.0) -
このメソッドは create_makefile, install_rb が使用します。 内部用のメソッドです。
...メソッドは create_makefile, install_rb が使用します。
内部用のメソッドです。
@param mfile Makefile を表す File のインスタンスです。
@param ifiles インストールするファイルのリストを指定します。
@param map ???
@param srcprefix ソースデ...