Class: Awestruct::CLI::Manifest::TouchFile

Inherits:
Object
  • Object
show all
Defined in:
lib/awestruct/cli/manifest.rb

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ TouchFile

Returns a new instance of TouchFile.



135
136
137
# File 'lib/awestruct/cli/manifest.rb', line 135

def initialize(path)
  @path = path
end

Instance Method Details

#perform(dir) ⇒ Object



139
140
141
# File 'lib/awestruct/cli/manifest.rb', line 139

def perform(dir)
  FileUtils.touch(File.join(dir, @path))
end

#unperform(dir) ⇒ Object



143
144
145
# File 'lib/awestruct/cli/manifest.rb', line 143

def unperform(dir)
  #nothing
end