openstreetmap-website/config/initializers/tempfile.rb
2015-02-20 08:56:16 +00:00

7 lines
174 B
Ruby

# Hack TempFile to let us get at the underlying File object as ruby
# does a half assed job of making TempFile act as a File
class Tempfile
def file
@tmpfile
end
end