Class: Airhelp::Base

Inherits:
Thor
  • Object
show all
Defined in:
lib/airhelp.rb

Instance Method Summary collapse

Instance Method Details

#convert(input, output) ⇒ Object



18
19
20
21
22
23
# File 'lib/airhelp.rb', line 18

def convert(input, output)
  puts "input file: #{input} - output file: #{output}"
  puts 'Start of prcessing...'
  Processor.new(input, output, options).start
  puts 'Ending...'
end