Skip to content

Instantly share code, notes, and snippets.

@rwrrll
Created April 19, 2012 14:33
Show Gist options
  • Save rwrrll/2421335 to your computer and use it in GitHub Desktop.
Save rwrrll/2421335 to your computer and use it in GitHub Desktop.
Patch Rack::Test::UploadedFile to be compatible with ActionDispatch::Http::UploadedFile (avoid "undefined method 'Tempfile'" error)
module Rack
module Test
class UploadedFile
def tempfile
self
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment