Module: RTesseract::Base

Included in:
Box, Pdf, Tsv
Defined in:
lib/rtesseract/base.rb

Instance Method Summary collapse

Instance Method Details

#temp_file(ext = '') ⇒ Object



9
10
11
12
13
# File 'lib/rtesseract/base.rb', line 9

def temp_file(ext = '')
  @rand_file ||= "rtesseract_#{SecureRandom.uuid}"

  Pathname.new(Dir.tmpdir).join("#{@rand_file}#{ext}").to_s
end