class Awestruct::CLI::Manifest::TouchFile
Public Class Methods
new(path)
click to toggle source
# File lib/awestruct/cli/manifest.rb, line 135 def initialize(path) @path = path end
Public Instance Methods
perform(dir)
click to toggle source
# File lib/awestruct/cli/manifest.rb, line 139 def perform(dir) FileUtils.touch(File.join(dir, @path)) end
unperform(dir)
click to toggle source
# File lib/awestruct/cli/manifest.rb, line 143 def unperform(dir) #nothing end