Method: Doable::Helpers::OS#touch

Defined in:
lib/doable/helpers/os.rb

#touch(file_list, options = {}) ⇒ Object

Used like Unix touch

Parameters:

  • file_list (Array<String>, String)

    List of files to create or verify



78
79
80
# File 'lib/doable/helpers/os.rb', line 78

def touch(file_list, options = {})
  FileUtils.touch(file_list, options)
end