OptionParser questions

R

Rich Morin

I'm a bit confused by the way that OptionParser works. In
the "Complete example" on


http://www.ruby-doc.org/stdlib/libdoc/optparse/rdoc/classes/OptionParser.html

I see

opts = OptionParser.new do |opts|
opts.banner = "Usage: example.rb [options]"
...

It looks like the "opts" object is being handed to the block,
as well as being returned as the result of the "new" method.
Is this the case? Is this a common way of doing things? Are
there any caveats that must be observed in this situation?

-r
--
http://www.cfcl.com/rdm Rich Morin
http://www.cfcl.com/rdm/resume (e-mail address removed)
http://www.cfcl.com/rdm/weblog +1 650-873-7841

Technical editing and writing, programming, and web development
 
F

F. Senault

Le 5 octobre 2006 à 21:03, Rich Morin a écrit :
opts = OptionParser.new do |opts|
opts.banner = "Usage: example.rb [options]"
...

It looks like the "opts" object is being handed to the block,
as well as being returned as the result of the "new" method.
Is this the case?

Not really. I'd say that example is badly written. The
OptionParser.new call can take a block, with one parameter. The name
between || is the name of that parameter, and is a variable local to the
block. I'd write something like this myself :

opts = OptionParser.new do |o|
o.banner = ...
...
end

(If the whole code is inside the block, you can even drop the first
assignment, too.)
Is this a common way of doing things? Are
there any caveats that must be observed in this situation?

I'm not good enough with the Ruby usages to reply here...

Fred
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top