Class: GGem::CLI::CLIRB::Option

Inherits:
Object
  • Object
show all
Defined in:
lib/ggem/cli/clirb.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, desc = nil, abbrev: nil, value: nil) ⇒ Option

Returns a new instance of Option.



37
38
39
40
41
42
43
44
45
46
# File 'lib/ggem/cli/clirb.rb', line 37

def initialize(name, desc = nil, abbrev: nil, value: nil)
  @name, @desc = name, desc || ""
  @opt_name, @abbrev = parse_name_values(name, abbrev)
  @value, @klass = gvalinfo(value)
  @parser_args = if [TrueClass, FalseClass, NilClass].include?(@klass)
    ["-#{@abbrev}", "--[no-]#{@opt_name}", @desc]
  else
    ["-#{@abbrev}", "--#{@opt_name} VALUE", @klass, @desc]
  end
end

Instance Attribute Details

#abbrevObject (readonly)

Returns the value of attribute abbrev.



35
36
37
# File 'lib/ggem/cli/clirb.rb', line 35

def abbrev
  @abbrev
end

#descObject (readonly)

Returns the value of attribute desc.



35
36
37
# File 'lib/ggem/cli/clirb.rb', line 35

def desc
  @desc
end

#klassObject (readonly)

Returns the value of attribute klass.



35
36
37
# File 'lib/ggem/cli/clirb.rb', line 35

def klass
  @klass
end

#nameObject (readonly)

Returns the value of attribute name.



35
36
37
# File 'lib/ggem/cli/clirb.rb', line 35

def name
  @name
end

#opt_nameObject (readonly)

Returns the value of attribute opt_name.



35
36
37
# File 'lib/ggem/cli/clirb.rb', line 35

def opt_name
  @opt_name
end

#parser_argsObject (readonly)

Returns the value of attribute parser_args.



35
36
37
# File 'lib/ggem/cli/clirb.rb', line 35

def parser_args
  @parser_args
end

#valueObject (readonly)

Returns the value of attribute value.



35
36
37
# File 'lib/ggem/cli/clirb.rb', line 35

def value
  @value
end