#!/usr/bin/ruby -w
#
# TODO: Explain the command-line usage of this program here.
#
# Usage:
#
#   testing_please_ignore2 [Option...] Arg1 Arg2 Arg3...
#

require 'rubygems'
gem 'inochi', '~> 0'
require 'inochi'

options = Inochi.main :Testing_please_ignore2 do
  # TODO: define command-line options here.
  #       see http://trollop.rubyforge.org/
  #
  # NOTE: this is completely optional!
end

# TODO: add the body of your program here

puts "Command-line options:   #{options.inspect}"
puts "Command-line arguments: #{ARGV.inspect}"