1246件ヒット
[201-300件を表示]
(0.166秒)
ライブラリ
- ビルトイン (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件
-
Integer
# allbits?(mask) -> bool (12207.0) -
self & mask の全てのビットが 1 なら true を返します。
... true を返します。
self & mask == mask と等価です。
@param mask ビットマスクを整数で指定します。
//emlist[][ruby]{
42.allbits?(42) # => true
0b1010_1010.allbits?(0b1000_0010) # => true
0b1010_1010.allbits?(0b1000_0001) # => false
0b1000_0010.allbits?(......0b1010_1010) # => false
//}
@see Integer#anybits?
@see Integer#nobits?... -
OpenSSL
:: SSL :: SSLContext # tmp _ dh _ callback=(cb) (12207.0) -
一時的 DH 鍵を生成するためのコールバックを設定します。
...Method を渡します。
暗号で一時的な DH 鍵を利用する場合にはこのコールバックが
呼びだされ、呼びだされたブロックは適切な鍵パラメータを返さなければ
なりません。これで設定するブロックは
proc{|sslsocket, is_export, keyl......en| ... }
という引数を取るようにします。それぞれの引数の意味は
* sslsocket 通信に使われる OpenSSL::SSL::SSLSocket オブジェクト
* is_export 輸出規制のある暗号を利用するかどうかを0か0以外かで指定
* keylen 鍵長
となります。......れで返されるオブジェクトはパラメータしか
用いられません。
cb に nil を指定するとデフォルトのパラメータが利用されます。
デフォルト値は nil です。
@param cb 設定するコールバック
@see OpenSSL::SSL::SSLContext#tmp_dh_callback... -
Gem
:: Uninstaller # remove _ executables(gemspec) (12107.0) -
与えられた Gem::Specification に対応する実行ファイルを削除します。
...与えられた Gem::Specification に対応する実行ファイルを削除します。
@param gemspec アンインストール指定されている Gem の Gem::Specification を指定します。... -
Gem
:: SpecFetcher # fetch(dependency , all = false , matching _ platform = true) -> Array (9326.0) -
依存関係を満たす gemspec の配列を返します。
...依存関係を満たす gemspec の配列を返します。
@param dependency 依存関係を指定します。
@param all 真を指定するとマッチする全てのバージョンの情報を返します。
@param matching_platform 偽を指定すると全てのプラットフォームの情... -
Gem
:: SpecFetcher # find _ matching(dependency , all = false , matching _ platform = true) -> Array (9326.0) -
依存関係を満たす gemspec の名前の配列を返します。
...係を満たす gemspec の名前の配列を返します。
@param dependency 依存関係を指定します。
@param all 真を指定するとマッチする全てのバージョンの情報を返します。
@param matching_platform 偽を指定すると全てのプラットフォームの情... -
Delegator
# protected _ methods(all = true) -> [Symbol] (9314.0) -
そのオブジェクトが理解できる protected メソッド名の一覧を返します。
...そのオブジェクトが理解できる protected メソッド名の一覧を返します。
@param all 偽を指定すると __getobj__ のスーパークラスで定義されたメソッドを除きます。
@see Object#protected_methods... -
Logger
:: Formatter # call(severity , time , progname , msg) -> String (9225.0) -
ログ情報をフォーマットして返します。
...ログ情報をフォーマットして返します。
@param severity ログレベル。
@param time 時間。Time クラスのオブジェクト。
@param progname プログラム名
@param msg メッセージ。... -
Rinda
:: TupleSpaceProxy # read _ all(tuple) -> [Array|Hash] (9220.0) -
タプルスペース内の tuple にマッチするタプルをすべてコピーして返します。
...スペース内の tuple にマッチするタプルをすべてコピーして返します。
内部的にはリモートオブジェクトの Rinda::TupleSpace#read_all にフォワードされます。
詳細は Rinda::TupleSpace#read_all を参照してください。
@param tuple タプルの... -
Shell
:: Filter # tee(file) -> Shell :: Filter (9213.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...lter オブジェクトを返します.
@param file シェルコマンドtee に与えるファイル名を文字列で指定します。
動作例
require 'shell'
Shell.def_system_command("head")
sh = Shell.new
sh.transact {
glob("*.txt").to_a.each { |file|
file.chomp!
cat......(file).each { |l|
echo(l) | tee(file + ".tee") >> "all.tee"
}
}
}... -
WEBrick
:: HTTPAuth :: DigestAuth # challenge(request , response , stale = false) (9213.0) -
クライアントにパスワードを要求するためにレスポンスに WWW-Authenticate ヘッダを 設定し、例外 WEBrick::HTTPStatus::Unauthorized を発生させます。
...uthenticate ヘッダを
設定し、例外 WEBrick::HTTPStatus::Unauthorized を発生させます。
@param request WEBrick::HTTPRequest のインスタンスを指定します。
@param response WEBrick::HTTPResponse のインスタンスを指定します。
@raise WEBrick::HTTPStatus::Unauth...