Cling::Option
Inherits Reference < Object
Represents a command line flag option, supporting boolean and string values. Options are parsed
after the main command taking priority over the argument resolution (see Executor#handle).
Constructors
Instance methods
default
Sourcedefault=(default : Value::Type)
Sourcedescription
Sourcedescription=(description : String | Nil)
Sourceis?(name : String) : Bool
Returns true if the name matches the option's long or short flag name.
long
Sourcelong=(long : String)
Sourcerequired=(required : Bool)
Sourcerequired?
Sourceshort
Sourceshort=(short : Char | Nil)
Sourceto_s(io : IO) : Nil
Appends a short String representation of this object which includes its class name and its object address.
class Person
def initialize(@name : String, @age : Int32)
end
end
Person.new("John", 32).to_s # => #<Person:0x10a199f20>
type
Sourcetype=(type : Type)
Sourcevalue
Sourcevalue=(value : Value | Nil)
Source