kytrinyx/approvals

View on GitHub
lib/approvals/reporters/image_reporter.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Approvals
  module Reporters

    class ImageReporter < FirstWorkingReporter
      include Singleton

      def initialize
        super(ImageMagickReporter.instance, HtmlImageReporter.instance)
      end
    end

  end
end