Class: File

Inherits:
Object show all
Defined in:
lib/ruco/core_ext/file.rb

Class Method Summary collapse

Class Method Details

.write(to, content) ⇒ Object



2
3
4
# File 'lib/ruco/core_ext/file.rb', line 2

def self.write(to, content)
  File.open(to, 'w'){|f| f.write(content) }
end