Class: Coco::FileWriter
- Inherits:
-
Object
- Object
- Coco::FileWriter
- Defined in:
- lib/coco/writer/file_writer.rb
Overview
I write one file.
Class Method Summary collapse
Class Method Details
.write(filename, content) ⇒ Object
7 8 9 10 11 |
# File 'lib/coco/writer/file_writer.rb', line 7 def FileWriter.write filename, content file = File.new(filename, "w") file.write content file.close end |