[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

[ANN] Trollop 1.0 released

William Morgan

1/30/2007 3:24:00 AM

Trollop version 1.0 has been released!

http://trollop.rub...

Trollop is YAFCLAP --- yet another fine commandline argument
processing library for Ruby. Trollop is designed to provide the
maximal amount of GNU-style argument processing in the minimum number
of lines of code (for you, the programmer).

Trollop provides a nice automatically-generated help page, robust
option parsing, and sensible defaults for everything you don't
specify.

Synopsis:

###### simple ######

opts = Trollop::options do
opt :monkey, "Use monkey mode."
opt :goat, "Use goat model", :default => true
opt :num_limbs, "Set number of limbs", :default => 4
end

p opts

###### complex ######

opts = Trollop::options do
version "test 1.2.3 (c) 2007 William Morgan"
banner <<-EOS
Test is an awesome program that does something very, very important.

Usage:
test [options] <filenames>+
where [options] are:
EOS

opt :ignore, "Ignore incorrect values"
opt :file, "Extra data filename to read in, with a very long option description like this one", :type => String
opt :volume, "Volume level", :default => 3.0
opt :iters, "Number of iterations", :default => 5
end
Trollop::die :volume, "must be non-negative" if opts[:volume] < 0
Trollop::die :file, "must exist" unless File.exists?(opts[:file]) if opts[:file]

== REQUIREMENTS:

* none

Changes:

== 1.0 / 2007-01-29
* Initial release.

http://trollop.rub...

--
William <wmorgan-ruby-talk@masanjin.net>

6 Answers

Jan Friedrich

1/30/2007 7:59:00 PM

0

Nice work! Thank you!

Jan

jgbailey

1/30/2007 8:36:00 PM

0

On 1/29/07, William Morgan <wmorgan-ruby-talk@masanjin.net> wrote:
> Usage:
> test [options] <filenames>+
> where [options] are:
> EOS

How would I access the "filenames" arguments with Trollop?

Justin

Jan Friedrich

1/30/2007 8:45:00 PM

0

Justin Bailey schrieb:
> How would I access the "filenames" arguments with Trollop?
>
> Justin
The non parsed options are in ARGV.

Jan

Jan Friedrich

1/30/2007 8:46:00 PM

0

Justin Bailey schrieb:
> How would I access the "filenames" arguments with Trollop?
See in ARGV. :)

Jan

Jan Friedrich

1/30/2007 8:48:00 PM

0

Justin Bailey schrieb:
> How would I access the "filenames" arguments with Trollop?
Look into ARGV. :)

Jan

Jan Friedrich

1/30/2007 9:22:00 PM

0

Justin Bailey schrieb:
> > How would I access the "filenames" arguments with Trollop?
ARGV :)

Jan