module Fi

Constants

VERSION

Public Class Methods

delete(path) click to toggle source
# File lib/fi.rb, line 20
def delete(path)
  ::File.delete path
end
new(path, content='') click to toggle source
# File lib/fi.rb, line 8
def new(path, content='')
  Fi::File.new path, content
end
open(path) click to toggle source
# File lib/fi.rb, line 12
def open(path)
  ::File.open path
end
read(path) click to toggle source
# File lib/fi.rb, line 16
def read(path)
  ::File.read path
end