Method: Clio::Commandable#option_missing
- Defined in:
- lib/clio/commandable.rb
#option_missing(opt, *argv) ⇒ Object
Override option_missing if needed. This receives the name of the option and the remaining arguments list. It must consume any argument it uses from the (begining of) the list.
63 64 65 |
# File 'lib/clio/commandable.rb', line 63 def option_missing(opt, *argv) raise NoOptionError, opt end |