Class: PrintRubyInfo::Command
- Inherits:
-
Thor
- Object
- Thor
- PrintRubyInfo::Command
- Defined in:
- lib/print_ruby_info/command.rb
Direct Known Subclasses
Class Method Summary collapse
Class Method Details
.dispatch(m, args, options, config) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/print_ruby_info/command.rb', line 6 def dispatch(m, args, , config) # Allow calling for help via: # print_ruby_info command help # print_ruby_info command -h # print_ruby_info command --help # print_ruby_info command -D # # as well thor's normal way: # # print_ruby_info help command help_flags = Thor::HELP_MAPPINGS + ["help"] if args.length > 1 && !(args & help_flags).empty? args -= help_flags args.insert(-2, "help") end super end |