Flowdock
method

binread

Importance_0
v1.0.0 - Show latest stable - 0 notes - Class: File
binread(fname) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionwebservice/setup.rb, line 44
def File.binread(fname)
  open(fname, 'rb') {|f|
    return f.read
  }
end
Register or log in to add new notes.