]> git.openstreetmap.org Git - rails.git/blob - config/initializers/tempfile.rb
Fix YAML syntax error introduced in d67b9d73024558587828273dd8afa3da8d27889b. Thanks...
[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     return @tmpfile
6   end
7 end