gga
(gga)
1
Thanks for the answers to my previous questions.
Now, some more newbie questions…
Is there…
-
any module to simplify command-line parsing?
Ideally, something like Perl’s Getopt::Declare.
-
any module to deal with either quicktime, mpeg or avi files (mainly play them)?
-
any 3D classes ( Vector, Matrix, etc)?
-
any module for secure shell, like Perl’s Net::SSH?
Thanks for the answers to my previous questions.
Now, some more newbie questions…
Is there…
- any module to simplify command-line parsing?
Ideally, something like Perl’s Getopt::Declare.
OptionParser (require ‘optparse’ in the standard library) does a great
job, and is similar, I think, to Python’s Optik.
GetoptLong (‘getoptlong’) is likely to be sorta like the Perl one.
- any module to deal with either quicktime, mpeg or avi files (mainly play them)?
Don’t know. Try searching raa.ruby-lang.org.
- any 3D classes ( Vector, Matrix, etc)?
Both of these are in the standard library (‘matrix’). See
RDoc Documentation for info on Matrix.
- any module for secure shell, like Perl’s Net::SSH?
Probably 
Take a look at online, or paperback, Pickaxe: Ruby-Doc.org: Documenting the Ruby Language
(“Document Bundle”) for pre-emptive answers to many more questions.
Cheers,
Gavin
···
On Sunday, December 28, 2003, 8:06:49 AM, GGarramuno wrote: