Class: CC2HTML::CLI

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

Instance Method Summary collapse

Instance Method Details

#convert(source, destination) ⇒ Object



11
12
13
14
15
# File 'lib/cc2html/cli.rb', line 11

def convert(source, destination)
  converter = CC2HTML::Converter.new source, destination, options
  converter.convert
  puts "#{source} converted to #{destination}.epub"
end