Method: Evm::Package#uninstall!
- Defined in:
- lib/evm/package.rb
#uninstall! ⇒ Object
60 61 62 63 64 65 66 67 68 |
# File 'lib/evm/package.rb', line 60 def uninstall! if File.exist?(path) FileUtils.rm_r(path) end if current? FileUtils.rm(Evm::EVM_EMACS_PATH) end end |