Closed tf closed 9 years ago
Since 0.5.6 I get "cannot load such file -- posix/spawn" when using the gem with paperclip.
0.5.6
This change changed rescue LoadError to simply rescue. But LoadError is not a StandardError. Hence the detection is broken.
rescue LoadError
rescue
LoadError
StandardError
Thanks for reporting this. I'm fixing it now and will push 0.5.7 ASAP!
Already pushed a PR for your review.
Thank you. Again, i really appreciate it, though I'd already gotten halfway through it when you reported.
Since
0.5.6
I get "cannot load such file -- posix/spawn" when using the gem with paperclip.This change changed
rescue LoadError
to simplyrescue
. ButLoadError
is not aStandardError
. Hence the detection is broken.