module Tins::FileBinary::ClassMethods
def ascii?(name, options = {})
Returns true if the file with name +name+ is considered to be ascii
def ascii?(name, options = {}) open(name, 'rb') { |f| f.ascii?(options) } end
def binary?(name, options = {})
Returns true if the file with name +name+ is considered to be binary
def binary?(name, options = {}) open(name, 'rb') { |f| f.binary?(options) } end