264件ヒット
[1-100件を表示]
(0.127秒)
ライブラリ
- ビルトイン (36)
-
net
/ imap (48) - openssl (36)
-
rdoc
/ code _ object (12) -
rdoc
/ parser / simple (12) -
rexml
/ document (24) -
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 (12)
-
Net
:: IMAP (48) - Object (12)
-
OpenSSL
:: SSL :: SSLContext (36) -
RDoc
:: CodeObject (12) -
RDoc
:: Parser :: Simple (12) -
REXML
:: Attribute (12) -
REXML
:: Child (12)
キーワード
-
add
_ response _ handler (24) -
document
_ children= (12) - idle (12)
-
ok
_ to _ remove? (12) -
remove
_ all (12) -
remove
_ by _ name (12) -
remove
_ class _ variable (12) -
remove
_ executables (12) -
remove
_ instance _ variable (12) -
remove
_ leading _ dot _ dir (12) -
remove
_ option (12) -
remove
_ private _ comments (12) -
remove
_ response _ handler (12) -
remove
_ spec (12) -
session
_ remove (12) -
session
_ remove _ cb (12) -
session
_ remove _ cb= (12) -
singleton
_ method _ removed (12)
検索結果
先頭5件
-
Gem
:: Uninstaller # remove(spec , list) (21202.0) -
指定された Gem を削除します。
...指定されている Gem の Gem::Specification を指定します。
@param list アンインストールする Gem のリストを指定します。
このパラメータは破壊的に変更されます。
@raise Gem::DependencyRemovalException アンインストール指定され......た Gem を削除すると
依存関係が壊れる場合に発生します。
@raise Gem::GemNotInHomeException アンインストール指定された Gem が所定の
ディレクトリにそんないしない場合に発... -
REXML
:: Attribute # remove -> () (21102.0) -
self を所属する要素から取り除きます。
self を所属する要素から取り除きます。 -
REXML
:: Child # remove -> self (21102.0) -
親ノードの子ノード列から self を取り除きます。
親ノードの子ノード列から self を取り除きます。 -
Gem
:: Validator # remove _ leading _ dot _ dir(path) -> String (12302.0) -
与えられたパスの先頭のドットを取り除いた文字列を返します。
与えられたパスの先頭のドットを取り除いた文字列を返します。 -
Object
# remove _ instance _ variable(name) -> object (12226.0) -
オブジェクトからインスタンス変数 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 (NameErr......or)
end
end
Foo.new.foo
//}
@see Module#remove_class_variable,Module#remove_const... -
BasicObject
# singleton _ method _ removed(name) -> object (12223.0) -
特異メソッドが Module#remove_method に より削除された時にインタプリタから呼び出されます。
...が Module#remove_method に
より削除された時にインタプリタから呼び出されます。
通常のメソッドの削除に対するフックには
Module#method_removedを使います。
@param name 削除されたメソッド名が Symbol で渡されます。
//emlist[例][ruby]......o
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_......method_undefined... -
Module
# remove _ class _ variable(name) -> object (12220.0) -
引数で指定したクラス変数を取り除き、そのクラス変数に設定さ れていた値を返します。
...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... -
OpenSSL
:: SSL :: SSLContext # session _ remove _ cb -> Proc | nil (12208.0) -
セッションが内部キャッシュから破棄されたときに呼び出される コールバックを返します。
...セッションが内部キャッシュから破棄されたときに呼び出される
コールバックを返します。
設定されていないときは nil を返します。
@see OpenSSL::SSL::SSLContext#session_remove_cb=... -
OpenSSL
:: SSL :: SSLContext # session _ remove _ cb=(cb) (12208.0) -
セッションが内部キャッシュから破棄されたときに呼び出される コールバックを設定します。
...れるセッション(OpenSSL::SSL::Session)]
という配列です。
セッションキャッシュについて詳しくは OpenSSL::SSL::Session を
見てください。
@param cb コールバックオブジェクト(Proc もしくは Method)
@see OpenSSL::SSL::SSLContext#session_remove_cb...