From: "aef (Alexander E. Fischer)" Date: 2012-11-15T22:30:19+09:00 Subject: [ruby-core:49374] [ruby-trunk - Feature #7361][Open] Adding Pathname#touch Issue #7361 has been reported by aef (Alexander E. Fischer). ---------------------------------------- Feature #7361: Adding Pathname#touch https://bugs.ruby-lang.org/issues/7361 Author: aef (Alexander E. Fischer) Status: Open Priority: Normal Assignee: Category: lib Target version: Pathname has an #mkdir method to create a directory at the path, but does not have a #touch method to create an empty file at that path. There were numerous cases where I had to fallback to using new_file = Pathname.new('location/for/new/file') FileUtils.touch(new_file) instead of simply being able to use: new_file.touch I would like to add this method. If you like it, let me know. I will provide a patch then. -- http://bugs.ruby-lang.org/