260件ヒット
[1-100件を表示]
(0.143秒)
ライブラリ
- ビルトイン (84)
-
net
/ http (12) -
net
/ imap (32) -
rdoc
/ code _ object (12) -
rdoc
/ parser / simple (12) -
rexml
/ document (12) -
rubygems
/ command (12) -
rubygems
/ dependency _ list (24) -
rubygems
/ source _ index (12) -
rubygems
/ uninstaller (36) -
rubygems
/ validator (12)
クラス
- BasicObject (12)
-
Gem
:: Command (12) -
Gem
:: DependencyList (24) -
Gem
:: SourceIndex (12) -
Gem
:: Uninstaller (36) -
Gem
:: Validator (12) - Module (48)
-
Net
:: HTTP (12) -
Net
:: IMAP (32) - Object (12)
-
RDoc
:: CodeObject (12) -
RDoc
:: Parser :: Simple (12) -
REXML
:: Attribute (12) - ThreadGroup (12)
キーワード
- enclose (12)
-
method
_ removed (12) -
ok
_ to _ remove? (12) - remove (24)
-
remove
_ all (12) -
remove
_ by _ name (12) -
remove
_ class _ variable (12) -
remove
_ classes _ and _ modules (12) -
remove
_ const (12) -
remove
_ executables (12) -
remove
_ instance _ variable (12) -
remove
_ leading _ dot _ dir (12) -
remove
_ method (12) -
remove
_ option (12) -
remove
_ private _ comments (12) -
remove
_ response _ handler (12) -
remove
_ spec (12) -
singleton
_ method _ removed (12) -
uid
_ move (10)
検索結果
先頭5件
-
Net
:: IMAP # move(set , mailbox) -> Net :: IMAP :: TaggedResponse (21224.0) -
MOVEコマンドを送り、set で指定したメッセージを mailbox の 末尾に移動させます。
...MOVEコマンドを送り、set で指定したメッセージを mailbox の
末尾に移動させます。
set はmessage sequence number(整数)、
message sequence numberの配列、もしくは Range で
指定します。
コピー元のメールボックスは
Net::IMAP#examine もしくは......Net::IMAP#select で
指定したものを用います。
@param set 移動するメッセージの message sequence number(整数、整数の配列、整数の Range)
@param mailbox 移動先のメールボックス(文字列)
@see Net::IMAP#uid_move, 6851... -
Net
:: HTTP # move(path , body , initheader = nil) -> Net :: HTTPResponse (18224.0) -
サーバの path に MOVE リクエストを ヘッダが initheader, ボディを body として送ります。
...サーバの path に MOVE リクエストを
ヘッダが initheader, ボディを body として送ります。
レスポンスを Net::HTTPResponse のオブジェクト
で返します。
@param path リクエストを送るパスを文字列で与えます。
@param body リクエストのボ......ディを文字列で与えます。
@param initheader リクエストのヘッダを「文字列=>文字列」の
ハッシュで与えます。
@see Net::HTTP::Move... -
Gem
:: Uninstaller # remove _ all(list) (15201.0) -
list で与えられた Gem を全てアンインストールします。
...list で与えられた Gem を全てアンインストールします。
@param list アンインストールする Gem のリストを指定します。... -
Gem
:: DependencyList # remove _ by _ name(full _ name) -> Gem :: Specification (12301.0) -
与えられた名前を持つ Gem::Specification を自身から削除します。
...名前を持つ Gem::Specification を自身から削除します。
このメソッドでは削除後の依存関係をチェックしません。
@param full_name バージョンを含むフルネームで Gem の名前を指定します。
@see Gem::Specification#full_name, Array#delete_if... -
Net
:: IMAP # remove _ response _ handler(handler) -> () (12301.0) -
レスポンスハンドラを削除します。
...レスポンスハンドラを削除します。
@param handler 削除するハンドラ
@see Net::IMAP#add_response_handler... -
Gem
:: Uninstaller # remove _ executables(gemspec) (12201.0) -
与えられた Gem::Specification に対応する実行ファイルを削除します。
...与えられた Gem::Specification に対応する実行ファイルを削除します。
@param gemspec アンインストール指定されている Gem の Gem::Specification を指定します。... -
Gem
:: Validator # remove _ leading _ dot _ dir(path) -> String (12201.0) -
与えられたパスの先頭のドットを取り除いた文字列を返します。
与えられたパスの先頭のドットを取り除いた文字列を返します。 -
Module
# remove _ class _ variable(name) -> object (12201.0) -
引数で指定したクラス変数を取り除き、そのクラス変数に設定さ れていた値を返します。
...のクラス変数に設定さ
れていた値を返します。
@param name String または Symbol を指定します。
@return 引数で指定されたクラス変数に設定されていた値を返します。
@raise NameError 引数で指定されたクラス変数がそのモジュール......やクラスに定義されていない場合に発生します。
//emlist[例][ruby]{
class Foo
@@foo = 1
remove_class_variable(:@@foo) # => 1
p @@foo # => uninitialized class variable @@foo in Foo (NameError)
end
//}
@see Module#remove_const, Object#remove_instance_variable... -
Object
# remove _ instance _ variable(name) -> object (12201.0) -
オブジェクトからインスタンス変数 name を取り除き、そのインス タンス変数に設定されていた値を返します。
...ンス変数 name を取り除き、そのインス
タンス変数に設定されていた値を返します。
@param name 削除するインスタンス変数の名前をシンボルか文字列で指定します。
@raise NameError オブジェクトがインスタンス変数 name を持たな......い場合に発生します。
//emlist[][ruby]{
class Foo
def foo
@foo = 1
p remove_instance_variable(:@foo) #=> 1
p remove_instance_variable(:@foo) # instance variable @foo not defined (NameError)
end
end
Foo.new.foo
//}
@see Module#remove_class_variable,Module#remove_const...