Module: MiniMagick::Utilities
- Defined in:
- lib/mini_magick/utilities.rb
Class Method Summary collapse
- .tempfile(extension) {|tempfile| ... } ⇒ Object
-
.which(cmd) ⇒ Object
Cross-platform way of finding an executable in the $PATH.
Class Method Details
.tempfile(extension) {|tempfile| ... } ⇒ Object
26 27 28 29 30 31 |
# File 'lib/mini_magick/utilities.rb', line 26 def tempfile(extension) tempfile = Tempfile.new(["mini_magick", extension], MiniMagick.tmpdir, binmode: true) yield tempfile if block_given? tempfile.close tempfile end |
.which(cmd) ⇒ Object
Cross-platform way of finding an executable in the $PATH.
15 16 17 18 19 20 21 22 23 24 |
# File 'lib/mini_magick/utilities.rb', line 15 def which(cmd) exts = ENV['PATHEXT'] ? ENV['PATHEXT'].split(';') : [''] ENV.fetch('PATH').split(File::PATH_SEPARATOR).each do |path| exts.each do |ext| exe = File.join(path, "#{cmd}#{ext}") return exe if File.executable? exe end end nil end |