I installed rvm, then, with rvm, installed ruby 1.8.6.
when i do :
gem list -d
/home/user/.rvm/gems/[email protected]/gems/executable-hooks-1.2.6/lib/executable-hooks/regenerate_binstubs_command.rb:47:
warning: parenthesize argument(s) for future version
*** LOCAL GEMS ***
bundler-unload (1.0.2)
Author: Michal P.
Homepage: https://github.com/mpapis/bundler-unload
License: Apache 2.0
Installed at: /home/user/.rvm/gems/[email protected]
Allow unloading bundler after Bundler.load
executable-hooks (1.2.6)
Author: Michal P.
Homepage: https://github.com/mpapis/executable-hooks
License: Apache 2.0
Installed at: /home/user/.rvm/gems/[email protected]
Hook into rubygems executables allowing extra actions to be taken
before executable is run.
rake (10.1.0)
Author: Jim W.
Rubyforge: http://rubyforge.org/projects/rake
Homepage: http://rake.rubyforge.org
License: MIT
Installed at: /home/user/.rvm/gems/[email protected]
Ruby based make-like utility.
rubygems-bundler (1.4.1)
Authors: Josh Hull, Michal P.
Homepage: http://mpapis.github.com/rubygems-bundler
License: Apache 2.0
Installed at: /home/user/.rvm/gems/[email protected]
Stop using bundle exec
rvm (1.11.3.8)
Authors: Wayne E. Seguin, Michal P.
Homepage: https://rvm.beginrescueend.com/
License: MIT
Installed at: /home/user/.rvm/gems/[email protected]
RVM Ruby Gem Library
I want to get rid of exectuable-hooks. So I do:
rvm remove executable-hooks
/home/user/.rvm/src/-hooks has already been removed.
/home/user/.rvm/rubies/-hooks has already been removed.
Removing -hooks aliases…
Removing -hooks wrappers…
Removing -hooks environments…
Removing -hooks binaries…
but when I subsequently do:
gem list -d
the results show the damn thing still in there:
/home/user/.rvm/gems/[email protected]/gems/executable-hooks-1.2.6/lib/executable-hooks/regenerate_binstubs_command.rb:47:
warning: parenthesize argument(s) for future version
*** LOCAL GEMS ***
bundler-unload (1.0.2)
Author: Michal P.
Homepage: https://github.com/mpapis/bundler-unload
License: Apache 2.0
Installed at: /home/user/.rvm/gems/[email protected]
Allow unloading bundler after Bundler.load
executable-hooks (1.2.6)
Author: Michal P.
Homepage: https://github.com/mpapis/executable-hooks
License: Apache 2.0
Installed at: /home/user/.rvm/gems/[email protected]
Hook into rubygems executables allowing extra actions to be taken
before executable is run.
How do I get rid of executable-hooks, which is installed under rvm, once
and for all? Thanks. RVic