up vote 6 down vote favorite
4
share [g+] share [fb]

I'd like to be able to use ruby's OptionParser to parse sub-commands of the form

COMMAND [GLOBAL FLAGS] [SUB-COMMAND [SUB-COMMAND FLAGS]]

like:

git branch -a
gem list foo

I know I could switch to a different option parser library (like Trollop), but I'm interested in learning how to do this from within OptionParser, since I'd like to learn the library better.

Any tips?

link|improve this question

No tips, aside from a suggestion to remain open to switching directions. In my experience, OptionParser has been frustrating to use for several reasons, one of them being the poor documentation -- hence your question. William Morgan, the author of Trollop, shows no mercy in his criticism (for example, see stackoverflow.com/questions/897630/… and trollop.rubyforge.org). I can't dispute what he says. – FMc Apr 29 '10 at 12:18
1  
@FM: Well, like the author of that question, I'm stuck on a machine where importing libraries is a PITA, so I'm trying to make do with the standard libs - like optparse. – rampion Apr 29 '10 at 13:54
feedback

3 Answers

up vote 8 down vote accepted

Figured it out. I need to use OptionParser#order!. It will parse all the options from the start of ARGV until it finds a non-option (that isn't an option argument), removing everything it processes from ARGV, and then it will quit.

So I just need to do something like:

global = OptionParser.new do |opts|
  # ...
end
subcommands = { 
  'foo' => OptionParser.new do |opts|
     # ...
   end,
   # ...
   'baz' => OptionParser.new do |opts|
     # ...
   end
 }

 global.order!
 subcommands[ARGV.shift].order!
link|improve this answer
feedback

There are also other gems you can look at such as main.

link|improve this answer
does that have any docs? – rampion Apr 29 '10 at 14:16
@rampion: You can look at the samples, for example codeforpeople.com/lib/ruby/main/main-2.8.3/samples/f.rb – Ken Bloom Apr 30 '10 at 3:51
feedback

It looks like the OptionParser syntax has changed some. I had to use the following so that the arguments array had all of the options not parsed by the opts object.

begin
  opts.order!(arguments)
rescue OptionParser::InvalidOption => io
  # Prepend the invalid option onto the arguments array
  arguments = io.recover(arguments)
rescue => e
  raise "Argument parsing failed: #{e.to_s()}"
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.