Method: CMSScanner::ParsedCli.method_missing

Defined in:
lib/cms_scanner/parsed_cli.rb

.method_missing(method_name, *_args, &_block) ⇒ Object

Unknown methods will return nil, this is the expected behaviour rubocop:disable Style/MissingRespondToMissing



30
31
32
33
34
# File 'lib/cms_scanner/parsed_cli.rb', line 30

def self.method_missing(method_name, *_args, &_block)
  super if method_name == :new

  options[method_name.to_sym]
end