module PDFDirectPrint

PDF Direct Print main module used for name spacing

Constants

VERSION

Public Class Methods

run() click to toggle source
# File lib/pdfdprint.rb, line 7
def self.run
  cl = CommandLine.new
  cl.parse_options
  cl.validate_options

  if File.directory?(ARGV[0])
    cl.process_directory
  elsif File.file?(ARGV[0])
    cl.process_file
  end
end