> -----Original Message-----
> From: bcorrigan78 / gmail.com [mailto:bcorrigan78 / gmail.com] 
> Sent: Monday, March 20, 2006 12:59 PM
> To: ruby-talk ML
> Subject: Re: I need some help with OptionsParser
> 
> 
> Nada.. This isn't working either:
> 
> c:\temp>test.rb -s "Very Big"
> 
> c:\temp>

This thread is a testament to why I wrote the getopt package:

# test.rb
require 'getopt/long'
include Getopt

opts = Long.getopts(['--size', '-s', REQUIRED])
p opts['size']

C:\ruby test.rb -s 'Very Big'
"Very Big"

C:\

gem install getopt :)

Regards,

Dan