# File lib/rabbit/path-manipulatable.rb, line 27 def create_directory(path) @logger.info(_("Creating directory: %s") % path) FileUtils.mkdir_p(path) end
# File lib/rabbit/path-manipulatable.rb, line 32 def create_file(path, &block) @logger.info(_("Creating file: %s") % path) File.open(path, "w", &block) end