Method: CommandLine::Application#__debug

Defined in:
lib/commandline/application.rb

#__debugObject



410
411
412
413
414
415
416
417
418
# File 'lib/commandline/application.rb', line 410

def __debug
   {
     :names           => %w(--debug -d),
     :arity           => [0,0],
     :opt_description => "Sets debug to true.",
     :arg_description => "",
     :opt_found       => lambda { $DEBUG = true }
   }
end