Class: RubyEdit::CLI
- Inherits:
-
Thor
- Object
- Thor
- RubyEdit::CLI
- Defined in:
- lib/ruby_edit/cli.rb
Overview
Handle the application command line parsing and the dispatch to various command objects
Constant Summary collapse
- Error =
Error raised by this runner
Class.new(StandardError)
Instance Method Summary collapse
Instance Method Details
#configure ⇒ Object
27 28 29 30 31 32 33 34 |
# File 'lib/ruby_edit/cli.rb', line 27 def configure(*) if [:help] invoke :help, ['configure'] else require_relative 'commands/configure' RubyEdit::Commands::Configure.new().execute end end |