Class: Awestruct::CLI::Manifest::TouchFile
- Inherits:
-
Object
- Object
- Awestruct::CLI::Manifest::TouchFile
- Defined in:
- lib/awestruct/cli/manifest.rb
Instance Method Summary collapse
-
#initialize(path) ⇒ TouchFile
constructor
A new instance of TouchFile.
- #perform(dir) ⇒ Object
- #unperform(dir) ⇒ Object
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 |