module Tins::FileBinary::ClassMethods

def binary?(name, options = {})

using the FileBinary#binary? method.
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