#!/usr/bin/env ruby # # Created on 2007-12-6. # Copyright (c) 2007. All rights reserved. begin require 'rubygems' rescue LoadError # no rubygems to load, so we fail silently end require 'optparse' require 'flac2mp3' # NOTE: the option -p/--path= is given as an example, and should probably be replaced in your application. OPTIONS = {} MANDATORY_OPTIONS = %w[] parser = OptionParser.new do |opts| opts.banner = <