class Awestruct::CLI::Manifest::RemoveFile

Public Class Methods

new(path) click to toggle source
# File lib/awestruct/cli/manifest.rb, line 149
def initialize(path)
  @path = path
end

Public Instance Methods

perform(dir) click to toggle source
# File lib/awestruct/cli/manifest.rb, line 153
def perform(dir)
  FileUtils.rm(File.join(dir, @path), :force => true)
end
unperform(dir) click to toggle source
# File lib/awestruct/cli/manifest.rb, line 157
def unperform(dir)
  #nothing
end