What is the best way to create an empty file in Ruby?
Something similar to the Unix command, touch:
touch file.txt
Just an example:
File.open "foo.txt", "w"