class MiniMagick::Tool

Class that wraps command-line tools directly, as opposed MiniMagick::Image which is more high-level.

@example

MiniMagick.mogrify do |mogrify|
  mogrify.resize "500x500"
  mogrify << "path/to/image.jpg"
end