Sub-command options inherit globals
Reported by TJ Holowaychuk | March 24th, 2009 @ 10:52 PM | in 4.0
Perhaps sub-command options should inherit the globals, in cases such as --verbose this would prevent the need to do things like:
global_option('--verbose'){ $verbose = true }
and instead would
global_option('--verbose')
...
c.when_called |args, options|
options.verbose # => true
end
Comments and changes to this ticket
-
TJ Holowaychuk March 26th, 2009 @ 04:53 PM
- State changed from new to resolved
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
The complete solution for Ruby command-line executables