Method: CommandKit::Main::ClassMethods#main
- Defined in:
- lib/command_kit/main.rb
#main(argv = [], **kwargs) ⇒ Integer
Initializes the command class with the given keyword arguments, then
calls main with the given argv.
78 79 80 |
# File 'lib/command_kit/main.rb', line 78 def main(argv=[], **kwargs) new(**kwargs).main(argv) end |