ライブラリ
- ビルトイン (132)
-
cgi
/ session (48) -
cgi
/ session / pstore (12) - dbm (12)
- digest (108)
- gdbm (12)
-
net
/ http (12) - observer (36)
- openssl (192)
- optparse (144)
-
rake
/ packagetask (12) - rss (72)
-
rubygems
/ commands / update _ command (36) -
rubygems
/ config _ file (36) -
rubygems
/ doc _ manager (12) -
rubygems
/ package / tar _ header (12) -
rubygems
/ source _ index (12) -
rubygems
/ source _ info _ cache (12) -
rubygems
/ user _ interaction (36) - sdbm (12)
-
yaml
/ dbm (12)
クラス
-
CGI
:: Session (12) -
CGI
:: Session :: FileStore (12) -
CGI
:: Session :: MemoryStore (12) -
CGI
:: Session :: NullStore (12) -
CGI
:: Session :: PStore (12) - DBM (12)
-
Digest
:: Base (108) - GDBM (12)
-
Gem
:: Commands :: UpdateCommand (24) -
Gem
:: ConfigFile (36) -
Gem
:: DocManager (12) -
Gem
:: Package :: TarHeader (12) -
Gem
:: SourceIndex (12) -
Gem
:: SourceInfoCache (12) -
Gem
:: StreamUI :: SilentProgressReporter (12) -
Gem
:: StreamUI :: SimpleProgressReporter (12) -
Gem
:: StreamUI :: VerboseProgressReporter (12) - Hash (72)
-
OpenSSL
:: Cipher (12) -
OpenSSL
:: Digest (24) -
OpenSSL
:: HMAC (24) -
OpenSSL
:: OCSP :: BasicResponse (12) -
OpenSSL
:: X509 :: CRL (48) - OptionParser (144)
-
RDoc
:: Options (12) -
Rake
:: PackageTask (12) - SDBM (12)
-
YAML
:: DBM (12)
モジュール
- Enumerable (12)
-
Gem
:: InstallUpdateOptions (24) -
Gem
:: LocalRemoteOptions (12) -
Net
:: HTTPHeader (12) - Observable (24)
-
OpenSSL
:: X509 (24) -
RSS
:: SyndicationModel (72)
オブジェクト
- ENV (48)
キーワード
-
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) - << (36)
- == (24)
- Cipher (12)
-
DEFAULT
_ UPDATE _ SOURCES (12) - Digest (12)
- InstallUpdateOptions (12)
-
NEWS for Ruby 2
. 6 . 0 (7) -
NEWS for Ruby 3
. 0 . 0 (5) - OCSP (12)
- Observable (12)
- UpdateCommand (12)
-
V
_ ERR _ ERROR _ IN _ CRL _ LAST _ UPDATE _ FIELD (12) -
V
_ ERR _ ERROR _ IN _ CRL _ NEXT _ UPDATE _ FIELD (12) - X509 (12)
- []= (12)
-
add
_ observer (12) -
add
_ update _ sources _ option (12) - chunk (12)
- digest (12)
- digest! (12)
-
do
_ rubygems _ update (12) -
force
_ update (12) - hexdigest (12)
- hexdigest! (12)
-
install
_ update _ defaults _ str (12) -
last
_ update (12) -
last
_ update= (12) - merge (24)
- merge! (36)
- name= (12)
-
next
_ update (12) -
next
_ update= (12) -
notify
_ observers (12) -
on
_ head (12) -
on
_ tail (12) - parse (24)
- parse! (12)
- rdoc (12)
-
ruby 1
. 8 . 2 feature (12) -
ruby 1
. 8 . 4 feature (12) -
ruby 1
. 9 feature (12) - rubygems (12)
-
rubygems
/ commands / dependency _ command (12) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / list _ command (12) -
rubygems
/ commands / outdated _ command (12) -
rubygems
/ commands / query _ command (12) -
rubygems
/ commands / search _ command (12) -
rubygems
/ commands / sources _ command (12) -
rubygems
/ commands / specification _ command (12) -
rubygems
/ commands / update _ command (12) - status (12)
- summarize (24)
-
summary
_ indent (12) -
summary
_ indent= (12) -
summary
_ width (12) -
summary
_ width= (12) -
sy
_ updateBase (12) -
sy
_ updateBase= (12) -
sy
_ updateFrequency (12) -
sy
_ updateFrequency= (12) -
sy
_ updatePeriod (12) -
sy
_ updatePeriod= (12) -
to
_ a (12) -
to
_ s (12) -
update
_ checksum (12) -
update
_ ri _ cache (12) -
update
_ sources (12) -
update
_ sources= (12) - updated (36)
-
values
_ at (12) -
which
_ to _ update (12)
検索結果
先頭5件
-
CGI
:: Session # update -> () (18117.0) -
データベースクラスの update メソッドを呼び出して、 セッション情報をサーバに保存します。
...データベースクラスの update メソッドを呼び出して、
セッション情報をサーバに保存します。
MemoryStore の場合は何もしません。... -
SDBM
# update(other) -> self (18113.0) -
self と other の内容をマージします。
...DBM:0xb7d19554>
p db1.to_hash #=> {"a"=>"aaa", "b"=>"bbb", "c"=>"ccc"}
p db1.update(db2) #=> #<SDBM:0xb7d19554>
p db1.to_hash #=> {"a"=>"aaa", "b"=>"bbb", "c"=>"ccc", "d"=>"ddd"}
p db1.update(hash) #=> #<SDBM:0xb7d19554>
p db1.to_hash #=> {"a"=>"aaa", "x"=>"xxx", "b"=>... -
DBM
# update(other) {|key , value| . . . } -> self (18107.0) -
self と other の内容をマージします。
...ブジェクトでなければなりません。
require 'dbm'
db1 = DBM.open('aaa.db', 0666, DBM::NEWDB)
db1[:a] = 'aaa'
db1[:b] = 'bbbbbb'
db2 = DBM.open('bbb.db', 0666, DBM::NEWDB)
db2[:bb] = 'bbb'
db2[:cc] = 'ccc'
db1.update(db2)
p db1.keys #=> ["bb", "cc", "b", "a"]... -
ENV
. update(other) -> ENV (18102.0) -
ハッシュ other の内容を環境変数にマージします。重複するキー に対応する値は other の内容で上書きされます。
ハッシュ other の内容を環境変数にマージします。重複するキー
に対応する値は other の内容で上書きされます。
self と other に同じキーがあった場合はブロック付きか否かで
判定方法が違います。ブロック付きのときはブロックを呼び出して
その返す値を重複キーに対応する値にします。ブロック付きでない
場合は常に other の値を使います。
@param other 上書きするハッシュを指定します。 -
ENV
. update(other) {|key , self _ val , other _ val| . . . } -> ENV (18102.0) -
ハッシュ other の内容を環境変数にマージします。重複するキー に対応する値は other の内容で上書きされます。
ハッシュ other の内容を環境変数にマージします。重複するキー
に対応する値は other の内容で上書きされます。
self と other に同じキーがあった場合はブロック付きか否かで
判定方法が違います。ブロック付きのときはブロックを呼び出して
その返す値を重複キーに対応する値にします。ブロック付きでない
場合は常に other の値を使います。
@param other 上書きするハッシュを指定します。 -
CGI
:: Session :: FileStore # update -> () (18101.0) -
セッションの状態をファイルに保存します。
セッションの状態をファイルに保存します。 -
CGI
:: Session :: MemoryStore # update -> () (18101.0) -
セッションの状態を保存します。 このクラスでは何もしません。
セッションの状態を保存します。
このクラスでは何もしません。 -
CGI
:: Session :: NullStore # update -> () (18101.0) -
セッションの状態を保存します。 このクラスでは何もしません。
セッションの状態を保存します。
このクラスでは何もしません。 -
CGI
:: Session :: PStore # update -> () (18101.0) -
セッションの状態をファイルに保存します。
セッションの状態をファイルに保存します。 -
GDBM
# update(other) -> self (18101.0) -
self と other の内容をマージします。
self と other の内容をマージします。
重複するキーに対応する値はother の内容で上書きされます。
@param other each_pair メソッドを持つオブジェクトでなければなりません。