class KXI::CLI::FlagArgument
Represents the flag argument (eg.: -f, –flag)
Public Class Methods
new(nm, desc, sh = nil)
click to toggle source
Instantiates the {KXI::CLI::FlagArgument} class @param nm [String] Name of argument @param desc [String] Description of argument @param sh [String] Shortcut of argument
Calls superclass method
KXI::CLI::ExplicitArgument::new
# File lib/kxi/cli/flag_argument.rb, line 11 def initialize(nm, desc, sh = nil) super(nm, desc, sh) end