class Sys::Io::HxFile
Public Class Methods
get_content(path)
click to toggle source
# File lib/lib/sys/io/hx_file.rb, line 8 def HxFile.get_content(path) IO.read(path) end
save_content(path,content)
click to toggle source
# File lib/lib/sys/io/hx_file.rb, line 12 def HxFile.save_content(path,content) IO.write(path,content) end