72件ヒット
[1-72件を表示]
(0.086秒)
種類
- インスタンスメソッド (48)
- 関数 (12)
- ライブラリ (12)
ライブラリ
- ビルトイン (12)
-
rubygems
/ uninstaller (36)
クラス
-
Gem
:: Uninstaller (36) - Object (12)
キーワード
検索結果
先頭5件
-
Gem
:: Uninstaller # remove(spec , list) (21101.0) -
指定された Gem を削除します。
指定された Gem を削除します。
@param spec アンインストール指定されている Gem の Gem::Specification を指定します。
@param list アンインストールする Gem のリストを指定します。
このパラメータは破壊的に変更されます。
@raise Gem::DependencyRemovalException アンインストール指定された Gem を削除すると
依存関係が壊れる場合に発生します。
@raise Gem::GemNotInHome... -
Object
# remove _ instance _ variable(name) -> object (12225.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... -
VALUE rb
_ obj _ remove _ instance _ variable(VALUE obj , VALUE name) (12200.0) -
-
Gem
:: Uninstaller # remove _ all(list) (9101.0) -
list で与えられた Gem を全てアンインストールします。
list で与えられた Gem を全てアンインストールします。
@param list アンインストールする Gem のリストを指定します。 -
Gem
:: Uninstaller # remove _ executables(gemspec) (9101.0) -
与えられた Gem::Specification に対応する実行ファイルを削除します。
与えられた Gem::Specification に対応する実行ファイルを削除します。
@param gemspec アンインストール指定されている Gem の Gem::Specification を指定します。 -
rubygems
/ commands / uninstall _ command (6006.0) -
Gem パッケージをアンインストールするためのライブラリです。
...gem uninstall GEMNAME [GEMNAME ...] [options]
Options:
-a, --[no-]all Uninstall all matching versions
-I, --[no-]ignore-dependencies Ignore dependency requirements while
uninstalling
-x, --[no-]executables Uninstall ap......n
-i, --install-dir DIR Directory to uninstall gem from
-n, --bindir DIR Directory to remove binaries from
-v, --version VERSION Specify version of gem to uninstall
--platform PLATFORM Specify the platform of gem to uninstall
Com......グオプションを有効にします
Arguments:
GEMNAME アンインストールする Gem パッケージ名を指定します。
Summary:
Gem パッケージをアンインストールします
Defaults:
--version '>= 0' --no-force --install-dir /usr/lib/ruby/gems/1.8...