727件ヒット
[1-100件を表示]
(0.064秒)
ライブラリ
- ビルトイン (84)
- fileutils (151)
-
net
/ imap (48) - openssl (60)
-
rake
/ packagetask (12) -
rdoc
/ code _ object (36) -
rdoc
/ parser / simple (12) -
rexml
/ document (24) -
rubygems
/ dependency _ list (24) -
rubygems
/ source _ index (12) -
rubygems
/ uninstaller (36) -
rubygems
/ validator (12) - tmpdir (24)
-
webrick
/ httpservlet / filehandler (12)
クラス
- BasicObject (12)
- Dir (24)
-
Gem
:: DependencyList (24) -
Gem
:: SourceIndex (12) -
Gem
:: Uninstaller (36) -
Gem
:: Validator (12) - Module (60)
-
Net
:: IMAP (48) - Object (12)
-
OpenSSL
:: SSL :: SSLContext (48) -
RDoc
:: CodeObject (36) -
RDoc
:: Parser :: Simple (12) -
REXML
:: Attribute (12) -
REXML
:: Child (12) -
Rake
:: PackageTask (12) -
WEBrick
:: HTTPServlet :: FileHandler (12)
モジュール
- FileUtils (139)
-
OpenSSL
:: OCSP (12)
キーワード
- FileUtils (12)
- Marshal フォーマット (12)
-
REVOKED
_ STATUS _ REMOVEFROMCRL (12) - Ruby プログラムの実行 (12)
- Ruby用語集 (12)
-
add
_ response _ handler (24) -
cp
_ lr (7) -
cp
_ r (12) -
document
_ children= (12) -
document
_ self= (12) -
generic
_ ivar _ remove (12) - idle (12)
-
method
_ removed (12) - mktmpdir (24)
- new (12)
-
ok
_ to _ remove? (12) -
rb
_ mod _ remove _ const (12) -
rb
_ mod _ remove _ cvar (12) -
rb
_ mod _ remove _ method (12) -
rb
_ obj _ remove _ instance _ variable (12) -
rb
_ remove _ method (12) -
remove
_ all (12) -
remove
_ by _ name (12) -
remove
_ class _ variable (12) -
remove
_ classes _ and _ modules (12) -
remove
_ const (12) -
remove
_ dir (12) -
remove
_ entry (12) -
remove
_ entry _ secure (12) -
remove
_ executables (12) -
remove
_ file (12) -
remove
_ handler (12) -
remove
_ instance _ variable (12) -
remove
_ leading _ dot _ dir (12) -
remove
_ method (24) -
remove
_ private _ comments (12) -
remove
_ response _ handler (12) -
remove
_ spec (12) -
remove
_ trace (12) - rm (12)
-
rm
_ r (12) -
rm
_ rf (12) - rmtree (12)
-
rubygems
/ commands / cert _ command (12) -
rubygems
/ commands / sources _ command (12) -
rubygems
/ commands / uninstall _ command (12) -
rubygems
/ security (12) -
session
_ remove (12) -
session
_ remove _ cb (12) -
session
_ remove _ cb= (12) -
set
_ params (12) -
singleton
_ method _ removed (12) -
undef
_ method (12)
検索結果
先頭5件
-
FileUtils
. # remove(list , options = {}) -> () (21201.0) -
list で指定された対象を消去します。
...
list で指定された対象を消去します。
@param list 削除する対象。一つの場合は文字列も指定可能です。
二つ以上指定する場合は配列で指定します。
@param options :force, :noop, :verbose が指定できます。
c:FileUti......ls#options
//emlist[][ruby]{
require 'fileutils'
FileUtils.rm('junk.txt')
FileUtils.rm(Dir.glob('*~'))
FileUtils.rm('NotExistFile', force: true) # never raises exception
//}... -
Gem
:: Uninstaller # remove(spec , list) (21201.0) -
指定された Gem を削除します。
...いる Gem の Gem::Specification を指定します。
@param list アンインストールする Gem のリストを指定します。
このパラメータは破壊的に変更されます。
@raise Gem::DependencyRemovalException アンインストール指定された Gem を削... -
REXML
:: Child # remove -> self (21201.0) -
親ノードの子ノード列から self を取り除きます。
...親ノードの子ノード列から self を取り除きます。... -
WEBrick
:: HTTPServlet :: FileHandler . remove _ handler(suffix) -> Class (21201.0) -
与えられた拡張子に対応するサーブレットを削除します。
与えられた拡張子に対応するサーブレットを削除します。
@param suffix 拡張子を指定します。 -
REXML
:: Attribute # remove -> () (21101.0) -
self を所属する要素から取り除きます。
...self を所属する要素から取り除きます。... -
Module
# remove _ class _ variable(name) -> object (15219.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... -
FileUtils
. # remove _ file(path , force = false) -> () (15201.0) -
ファイル path を削除します。
ファイル path を削除します。
@param path 削除するファイル。
@param force 真のときは削除中に発生した StandardError を無視します。 -
Gem
:: Uninstaller # remove _ all(list) (15201.0) -
list で与えられた Gem を全てアンインストールします。
...
list で与えられた Gem を全てアンインストールします。
@param list アンインストールする Gem のリストを指定します。... -
VALUE rb
_ obj _ remove _ instance _ variable(VALUE obj , VALUE name) (12400.0) -