Module: Paperclip::TempfileEncoding

Defined in:
lib/paperclip/tempfile.rb

Instance Method Summary collapse

Instance Method Details

#binmodeObject

This overrides Tempfile#binmode to make sure that the extenal encoding for binary mode is ASCII-8BIT. This behavior is what’s in CRuby, but not in JRuby



37
38
39
40
# File 'lib/paperclip/tempfile.rb', line 37

def binmode
  set_encoding("ASCII-8BIT")
  super
end