class ActionController::DataStreaming::FileBody
def each
def each File.open(to_path, 'rb') do |file| while chunk = file.read(16384) yield chunk end end end
def each File.open(to_path, 'rb') do |file| while chunk = file.read(16384) yield chunk end end end