Method: Thor::Group.class_options_help
- Defined in:
- lib/thor/group.rb
.class_options_help(shell, groups = {}) ⇒ Object
Overwrite class options help to allow invoked generators options to be shown recursively when invoking a generator.
161 162 163 164 165 166 |
# File 'lib/thor/group.rb', line 161 def (shell, groups = {}) #:nodoc: (groups, ) do |klass| klass.send(:get_options_from_invocations, groups, ) end super(shell, groups) end |