File: conjure.rb

package info (click to toggle)
ruby-mini-magick 4.10.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,588 kB
  • sloc: ruby: 1,859; sh: 7; makefile: 4
file content (14 lines) | stat: -rw-r--r-- 228 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module MiniMagick
  class Tool
    ##
    # @see http://www.imagemagick.org/script/conjure.php
    #
    class Conjure < MiniMagick::Tool

      def initialize(*args)
        super("conjure", *args)
      end

    end
  end
end