Sha256: 38cbd5c826dd7f75f41da684339bf7bb42924b410cc9bea46fd5738f70bc8a3d
Contents?: true
Size: 1.63 KB
Versions: 2
Compression:
Stored size: 1.63 KB
Contents
require 'mini_magick/utilities' require 'logger' module MiniMagick module Configuration ## # Adds a prefix to the CLI command. # For example, you could use `firejail` to run all commands in a sandbox. # Can be a string, or an array of strings. # e.g. 'firejail', or ['firejail', '--force'] # # @return [String] # @return [Array<String>] # attr_accessor :cli_prefix ## # If you don't want commands to take too long, you can set a timeout (in # seconds). # # @return [Integer] # attr_accessor :timeout ## # Logger for commands, default is `Logger.new($stdout)`, but you can # override it, for example if you want the logs to be written to a file. # # @return [Logger] # attr_accessor :logger ## # Temporary directory used by MiniMagick, default is `Dir.tmpdir`, but # you can override it. # # @return [String] # attr_accessor :tmpdir ## # If set to `false`, it will not raise errors when ImageMagick returns # status code different than 0. Defaults to `true`. # # @return [Boolean] # attr_accessor :errors ## # If set to `false`, it will not forward warnings from ImageMagick to # standard error. attr_accessor :warnings def self.extended(base) base.tmpdir = Dir.tmpdir base.errors = true base.logger = Logger.new($stdout).tap { |l| l.level = Logger::INFO } base.warnings = true end ## # @yield [self] # @example # MiniMagick.configure do |config| # config.timeout = 5 # end # def configure yield self end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mini_magick-5.0.1 | lib/mini_magick/configuration.rb |
mini_magick-5.0.0 | lib/mini_magick/configuration.rb |