354件ヒット
[201-300件を表示]
(0.128秒)
ライブラリ
- ビルトイン (48)
- logger (12)
-
net
/ pop (108) - openssl (12)
-
rubygems
/ installer (72) -
rubygems
/ remote _ fetcher (12) -
rubygems
/ specification (24) -
rubygems
/ uninstaller (24) - shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (6) -
syslog
/ logger (12)
クラス
-
Gem
:: Installer (72) -
Gem
:: RemoteFetcher (12) -
Gem
:: Specification (24) -
Gem
:: Uninstaller (24) -
Logger
:: Formatter (12) - Module (48)
-
Net
:: POPMail (108) -
OpenSSL
:: Netscape :: SPKI (12) - Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) -
Syslog
:: Logger :: Formatter (12)
モジュール
キーワード
-
app
_ script _ text (12) -
bin
_ dir (24) - call (24)
- challenge (12)
- download (12)
- echo (18)
-
formatted
_ program _ filename (12) -
gem
_ home (24) -
install
_ update _ defaults _ str (12) -
installation
_ path (12) - mail (36)
- pop (36)
- public (48)
- shebang (12)
-
windows
_ stub _ script (12)
検索結果
先頭5件
-
Gem
:: Installer # windows _ stub _ script -> String (3102.0) -
コマンドを起動するために使用する Windows 用のバッチファイルの内容を 文字列として返します。
コマンドを起動するために使用する Windows 用のバッチファイルの内容を
文字列として返します。 -
Gem
:: Uninstaller # bin _ dir -> String (3102.0) -
Gem でインストールされたコマンドのあるディレクトリを返します。
Gem でインストールされたコマンドのあるディレクトリを返します。 -
Gem
:: Uninstaller # gem _ home -> String (3102.0) -
Gem がインストールされているディレクトリを返します。
Gem がインストールされているディレクトリを返します。 -
Net
:: POPMail # mail {|str| . . . . } -> nil (3019.0) -
メールを受信します。
...通常 IO オブジェクトを渡します。
この場合引数として渡したオブジェクトを返します。
pop, all, mail はすべて同じ効果ですが、
all と mail は obsolete です。
使用例:
require 'net/pop'
Net::POP3.start('pop.example.com', 110,... -
Net
:: POPMail # mail(io) -> object (3019.0) -
メールを受信します。
...通常 IO オブジェクトを渡します。
この場合引数として渡したオブジェクトを返します。
pop, all, mail はすべて同じ効果ですが、
all と mail は obsolete です。
使用例:
require 'net/pop'
Net::POP3.start('pop.example.com', 110,... -
Net
:: POPMail # pop {|str| . . . . } -> nil (3019.0) -
メールを受信します。
...通常 IO オブジェクトを渡します。
この場合引数として渡したオブジェクトを返します。
pop, all, mail はすべて同じ効果ですが、
all と mail は obsolete です。
使用例:
require 'net/pop'
Net::POP3.start('pop.example.com', 110,... -
Net
:: POPMail # pop(io) -> object (3019.0) -
メールを受信します。
...通常 IO オブジェクトを渡します。
この場合引数として渡したオブジェクトを返します。
pop, all, mail はすべて同じ効果ですが、
all と mail は obsolete です。
使用例:
require 'net/pop'
Net::POP3.start('pop.example.com', 110,... -
Gem
:: RemoteFetcher # download(spec , source _ uri , install _ dir = Gem . dir) -> String (202.0) -
source_uri から取得した Gem パッケージをキャッシュディレクトリに配置します。
...。
@param spec Gem::Specification のインスタンスを指定します。
@param source_uri 取得先の URI を指定します。
@param install_dir ダウンロードしたファイルの配置先を指定します。
@return ローカルにコピーした Gem ファイルのパスを返... -
Module
# public(name) -> String | Symbol (120.0) -
メソッドを public に設定します。
...ます。
可視性については d:spec/def#limit を参照して下さい。
@param name 0 個以上の String または Symbol を指定します。
@param names 0 個以上の String または Symbol を Array で指定します。
@raise NameError 存在しないメソッド名を指定し......def foo() 1 end
p foo # => 1
# the toplevel default is private
p self.foo # => private method `foo' called for #<Object:0x401c83b0> (NoMethodError)
def bar() 2 end
public :bar # visibility changed (all access allowed)
p bar # => 2
p self.bar # => 2
//}...