Skip to content

Instantly share code, notes, and snippets.

@hathawad
Last active December 19, 2015 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hathawad/5959245 to your computer and use it in GitHub Desktop.
Save hathawad/5959245 to your computer and use it in GitHub Desktop.
Paperclip Override for Jruby 1.7.4 Windows Issue
#place this overide in a rails initailizer as a workaround
module Paperclip
class ContentTypeDetector
def type_from_file_command
type = SENSIBLE_DEFAULT
type.split(/[:;\s]+/)[0]
end
end
end
@hathawad
Copy link
Author

hathawad commented Jul 9, 2013

From what I can gather, paperclip is runnning the "file" command to identify a file type.
Windows has no such "file" command. Unfortunatly, there is a Jruby 1.7.4 issue with the "current thread" variable which prevents the type_from_file_command from failing gracefully. Here is a work around

@enebo
Copy link

enebo commented Jul 9, 2013

@hathawad have you confirmed this is fixed on master for 1.7.5 yet? We did change the logic of this so that we no longer have the current thread issue. I just want to make sure so we can make sure this is addressed for 1.7.5.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment