るりまサーチ

最速Rubyリファレンスマニュアル検索!
296件ヒット [1-100件を表示] (0.114秒)

別のキーワード

  1. kernel $-l
  2. matrix l
  3. _builtin $-l
  4. lupdecomposition l
  5. l

検索結果

<< 1 2 3 > >>

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...

Net::IMAP#move(set, mailbox) -> Net::IMAP::TaggedResponse (18224.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...

Gem::Uninstaller#remove_all(list) (15201.0)

list で与えられた Gem を全てアンインストールします。

...
l
ist で与えられた Gem を全てアンインストールします。

@param list アンインストールする Gem のリストを指定します。...

Module#remove_class_variable(name) -> object (15201.0)

引数で指定したクラス変数を取り除き、そのクラス変数に設定さ れていた値を返します。

...Symbol を指定します。

@return 引数で指定されたクラス変数に設定されていた値を返します。

@raise NameError 引数で指定されたクラス変数がそのモジュールやクラスに定義されていない場合に発生します。

//emlist[例][ruby]{
class F...
...oo
@@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...

Net::IMAP#remove_response_handler(handler) -> () (12301.0)

レスポンスハンドラを削除します。

...レスポンスハンドラを削除します。

@param handler 削除するハンドラ
@see Net::IMAP#add_response_handler...

絞り込み条件を変える

BasicObject#singleton_method_removed(name) -> object (12201.0)

特異メソッドが Module#remove_method に より削除された時にインタプリタから呼び出されます。

...dule#remove_method に
より削除された時にインタプリタから呼び出されます。

通常のメソッドの削除に対するフックには
Module#method_removedを使います。

@param name 削除されたメソッド名が Symbol で渡されます。

//emlist[例][ruby]{
clas...
...def singleton_method_removed(name)
puts "singleton method \"#{name}\" was removed"
end
end

obj = Foo.new
def obj.foo
end

class << obj
remove_method :foo
end

#=> singleton method "foo" was removed
//}

@see Module#method_removed,BasicObject#singleton_method_added,BasicObject#singleton_met...

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)

与えられたパスの先頭のドットを取り除いた文字列を返します。

与えられたパスの先頭のドットを取り除いた文字列を返します。

Object#remove_instance_variable(name) -> object (12201.0)

オブジェクトからインスタンス変数 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...
<< 1 2 3 > >>