Michael Schidlowsky wrote: > Do you know if there's any way I can package > up the gem with my script somehow (like include it in a subdirectory > of the script location and load it from there) so that I can guarantee > the library is there even if the user does not have it installed? Add the path of the embedded gem's lib/ directory to the $: array (if you're in Ruby) or the RUBYLIB environment variable (if you're in a shell script). -- Posted via http://www.ruby-forum.com/.