class Controllers::UploadController

Public Instance Methods

finish_param_dict() click to toggle source
# File lib/upload_progress/test/multipart_progress_testx.rb, line 72
def finish_param_dict
  finish_upload_status "{a: 'b'}"
end
finish_param_number() click to toggle source
# File lib/upload_progress/test/multipart_progress_testx.rb, line 80
def finish_param_number
  finish_upload_status 123
end
finish_param_number_redirect() click to toggle source
# File lib/upload_progress/test/multipart_progress_testx.rb, line 84
def finish_param_number_redirect
  redirect_to "/redirected/"
  finish_upload_status 123
end
finish_param_string() click to toggle source
# File lib/upload_progress/test/multipart_progress_testx.rb, line 76
def finish_param_string
  finish_upload_status "'a string'"
end
norendered() click to toggle source
# File lib/upload_progress/test/multipart_progress_testx.rb, line 61
def norendered 
end
redirected() click to toggle source
# File lib/upload_progress/test/multipart_progress_testx.rb, line 68
def redirected
  redirect_to "/redirected/"
end
rendered() click to toggle source
# File lib/upload_progress/test/multipart_progress_testx.rb, line 64
def rendered
  render_text("rendered")
end