class ImageProcessing::MiniMagick::Processor

def rotate(degrees, background: nil)

fill in the gaps.
multiple of 90 degrees an optional background color can be specified to
Rotates the image by an arbitrary angle. For angles that are not
def rotate(degrees, background: nil)
  magick.background color(background) if background
  magick.rotate(degrees)
end