Method: NHKore::Fileable#save_file

Defined in:
lib/nhkore/fileable.rb

#save_file(file, mode: 'wt', **kargs) ⇒ Object



17
18
19
20
21
# File 'lib/nhkore/fileable.rb', line 17

def save_file(file,mode: 'wt',**kargs)
  File.open(file,mode: mode,**kargs) do |f|
    f.write(to_s)
  end
end