class Drupid::Updater::DeleteAction

Public Instance Methods

fire!() click to toggle source
    # File lib/drupid/updater.rb
735 def fire!
736   debug "Deleting #{component.local_path}"
737   dont_debug { component.local_path.rmtree if component.local_path.exist? }
738   @pending = false
739 end
msg() click to toggle source
    # File lib/drupid/updater.rb
741 def msg
742   "#{Tty.yellow}[Delete]#{Tty.white}  #{component.extended_name}#{Tty.reset} " +
743     "(#{component.local_path.relative_path_from(platform.local_path)})"
744 end