Returns:
44 45 46
# File 'lib/utils/file_xt.rb', line 44 def ascii?(name) File.open(name, 'rb') { |f| f.ascii? } end
40 41 42
# File 'lib/utils/file_xt.rb', line 40 def binary?(name) File.open(name, 'rb') { |f| f.binary? } end