]> git.openstreetmap.org Git - rails.git/blob - config/initializers/tempfile.rb
43b5a5443575162aec13a8672a85cde2ec5c7191
[rails.git] / config / initializers / tempfile.rb
1 # Hack TempFile to let us get at the underlying File object as ruby
2 # does a half assed job of making TempFile act as a File
3 class Tempfile
4   def file
5     @tmpfile
6   end
7 end