Skip to content

v4.0.3

Compare
Choose a tag to compare
@janko janko released this 29 Jan 23:24
· 269 commits to master since this release
  • When dealing with very large images, it can happen that your process runs our of memory (by raising Errno:: ENOMEM). You can now tell MiniMagick to use posix-spawn for executing shell commands, which uses much less memory:

    MiniMagick.configure do |config|
      config.shell_api = "posix-spawn"
    end