1530件ヒット
[1-100件を表示]
(0.115秒)
別のキーワード
ライブラリ
- ビルトイン (297)
- delegate (24)
- fiddle (12)
- logger (12)
- matrix (56)
-
minitest
/ unit (1) - mkmf (12)
-
net
/ http (24) -
net
/ imap (24) -
net
/ pop (132) - openssl (156)
- pstore (24)
- rake (36)
-
rexml
/ document (24) -
rinda
/ rinda (12) -
rinda
/ tuplespace (12) - rubygems (12)
-
rubygems
/ commands / update _ command (12) -
rubygems
/ dependency _ installer (72) -
rubygems
/ gem _ path _ searcher (12) -
rubygems
/ installer (132) -
rubygems
/ remote _ fetcher (12) -
rubygems
/ source _ index (12) -
rubygems
/ source _ info _ cache (24) -
rubygems
/ spec _ fetcher (36) -
rubygems
/ specification (36) -
rubygems
/ uninstaller (84) - shell (18)
-
shell
/ command-processor (36) -
shell
/ filter (18) -
shell
/ process-controller (6) -
syslog
/ logger (12) - thwait (6)
- un (12)
-
webrick
/ httpauth / basicauth (12) -
webrick
/ httpauth / digestauth (12) -
win32
/ registry (12)
クラス
- Array (21)
- Delegator (24)
-
Fiddle
:: Function (12) -
Gem
:: Commands :: UpdateCommand (12) -
Gem
:: DependencyInstaller (72) -
Gem
:: GemPathSearcher (12) -
Gem
:: Installer (132) -
Gem
:: RemoteFetcher (12) -
Gem
:: SourceIndex (12) -
Gem
:: SourceInfoCache (24) -
Gem
:: SpecFetcher (36) -
Gem
:: Specification (36) -
Gem
:: Uninstaller (84) - Hash (67)
-
Logger
:: Formatter (12) - Matrix (56)
- Method (14)
- Module (48)
-
Net
:: HTTP (24) -
Net
:: IMAP (24) -
Net
:: POP3 (24) -
Net
:: POPMail (108) - NoMethodError (9)
- Object (12)
-
OpenSSL
:: Engine (12) -
OpenSSL
:: Netscape :: SPKI (24) -
OpenSSL
:: SSL :: SSLContext (72) -
OpenSSL
:: X509 :: Store (36) -
OpenSSL
:: X509 :: StoreContext (12) - PStore (24)
- Proc (26)
-
RDoc
:: Options (60) -
REXML
:: Element (12) -
REXML
:: Elements (12) -
Rake
:: Application (12) -
Rake
:: FileTask (12) -
Rinda
:: TupleSpace (12) -
Rinda
:: TupleSpaceProxy (12) - Shell (18)
-
Shell
:: CommandProcessor (36) -
Shell
:: Filter (18) -
Shell
:: ProcessController (6) -
Syslog
:: Logger :: Formatter (12) - SystemCallError (12)
- ThreadsWait (6)
- TracePoint (12)
-
WEBrick
:: HTTPAuth :: BasicAuth (12) -
WEBrick
:: HTTPAuth :: DigestAuth (12) -
Win32
:: Registry (12)
モジュール
- Enumerable (76)
- FileUtils (12)
-
Gem
:: InstallUpdateOptions (24) -
Gem
:: QuickLoader (12) - Kernel (24)
-
MiniTest
:: Assertions (1)
キーワード
- << (14)
- >> (14)
- [] (12)
- all? (53)
-
all
_ one _ file (12) -
all
_ waits (6) -
app
_ script _ text (12) -
ask
_ if _ ok (12) - call (48)
-
callee
_ id (12) - cat (6)
- challenge (36)
- challenge= (12)
-
check
_ point (18) - ciphers= (12)
- collect (14)
- collect! (14)
- create (12)
- delete (24)
-
delete
_ all (36) -
dependencies
_ ok? (12) - download (12)
- echo (6)
-
ensure
_ dependency (12) - errno (12)
- fetch (12)
-
find
_ all (12) -
find
_ gems _ with _ sources (12) -
find
_ matching (12) -
find
_ spec _ by _ name _ and _ version (12) -
finish
_ all _ jobs (18) - flags= (24)
-
formatted
_ program _ filename (12) -
gather
_ dependencies (12) -
gems
_ to _ install (12) -
generate
_ bin _ script (12) -
generate
_ windows _ script (12) - glob (18)
-
hyperlink
_ all (12) -
hyperlink
_ all= (12) - index (7)
- install (36)
-
install
_ files (12) -
install
_ update _ defaults _ str (12) -
installation
_ path (12) -
installation
_ satisfies _ dependency? (12) -
installed
_ gems (12) - key (12)
- lazy (12)
- list (12)
- mail (36)
- map (14)
- map! (14)
-
path
_ ok? (12) - pop (36)
-
private
_ call? (9) -
protected
_ methods (12) - public (48)
-
public
_ methods (12) -
push
_ all _ highest _ version _ gems _ on _ load _ path (12) -
read
_ all (24) - remove (12)
-
remove
_ executables (12) -
respond
_ to? (12) - search (12)
-
search
_ with _ source (12) -
set
_ default (12) - shift (12)
-
show
_ all (12) -
show
_ all= (12) - skip (1)
-
slice
_ before (24) - sort (12)
- spec (24)
-
split
_ all (12) - tally (8)
- tee (6)
-
tmp
_ dh _ callback (12) -
tmp
_ dh _ callback= (12) -
uid
_ sort (12) -
ultra
_ safe (12) -
ultra
_ safe= (12) -
uninstall
_ gem (12) - unpack (12)
- update (12)
-
verify
_ callback (36) -
verify
_ callback= (36) -
wait
_ all _ jobs _ execution (6) -
which
_ to _ update (12) - whitespace (12)
-
windows
_ stub _ script (12) -
write
_ spec (12)
検索結果
先頭5件
-
Net
:: POPMail # all -> String (21116.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
}......t/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::POPE......rror サーバが認証失敗以外のエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロトコル上不正であった場合に発生します... -
Net
:: POPMail # all {|str| . . . . } -> nil (21116.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
}......t/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::POPE......rror サーバが認証失敗以外のエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロトコル上不正であった場合に発生します... -
Net
:: POPMail # all(io) -> object (21116.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
}......t/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::POPE......rror サーバが認証失敗以外のエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロトコル上不正であった場合に発生します... -
Gem
:: InstallUpdateOptions # add _ install _ update _ options (18201.0) -
インストールとアップデートに関するオプションを追加します。
インストールとアップデートに関するオプションを追加します。 -
Gem
:: InstallUpdateOptions # install _ update _ defaults _ str -> String (18201.0) -
Gem コマンドの install サブコマンドに渡されるデフォルトのオプションを返します。
...Gem コマンドの install サブコマンドに渡されるデフォルトのオプションを返します。
デフォルトのオプションは以下の通りです。
--rdoc --no-force --no-test --wrappers... -
Gem
:: Installer # installation _ satisfies _ dependency?(dependency) -> bool (15301.0) -
登録されているソースインデックスが与えられた依存関係を 満たすことができる場合は、真を返します。そうでない場合は偽を返します。
...登録されているソースインデックスが与えられた依存関係を
満たすことができる場合は、真を返します。そうでない場合は偽を返します。
@param dependency Gem::Dependency のインスタンスを指定します。... -
RDoc
:: Options # hyperlink _ all=(val) (12224.0) -
val に true を指定した場合、コマンドライン引数の --hyperlink-all オプショ ンと同様の指定を行います。
...val に true を指定した場合、コマンドライン引数の --hyperlink-all オプショ
ンと同様の指定を行います。
@param val --hyperlink-all オプションと同じ指定を行う場合は true、そう
でない場合は false を指定します。... -
RDoc
:: Options # hyperlink _ all -> bool (12218.0) -
コマンドライン引数の --hyperlink-all オプションを指定していた場合、 true を返します。
...コマンドライン引数の --hyperlink-all オプションを指定していた場合、
true を返します。
指定しなかった場合は false を返します。... -
FileUtils
# split _ all(path) -> Array (12208.0) -
与えられたパスをディレクトリごとに分割します。
...与えられたパスをディレクトリごとに分割します。
@param path 分割するパスを指定します。
例:
split_all("a/b/c") # => ['a', 'b', 'c']...