Class: FileSystem

Inherits:
Object
  • Object
show all
Defined in:
lib/subdl.rb

Instance Method Summary collapse

Instance Method Details

#save_file(filename, contents) ⇒ Object



103
104
105
106
107
# File 'lib/subdl.rb', line 103

def save_file filename, contents
  File.open filename, 'w' do |f|
    f.write contents
  end
end