Class: QRCodeScanner::Scanner

Inherits:
Nodo::Core
  • Object
show all
Defined in:
lib/qr_code_scanner/qr_code_scanner.rb

Class Method Summary collapse

Class Method Details

.scan_file(path) ⇒ Object



14
15
16
17
18
19
20
# File 'lib/qr_code_scanner/qr_code_scanner.rb', line 14

def self.scan_file(path)
  if path.end_with?(".pdf")
    new.parse_pdf(path)
  else
    [new.parse_image(path)]
  end
end