Class: CodeHunter::OptionParser::Argument

Inherits:
Object
  • Object
show all
Defined in:
lib/code_hunter/option_parser.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key, description) ⇒ Argument

Returns a new instance of Argument.



54
55
56
57
# File 'lib/code_hunter/option_parser.rb', line 54

def initialize(key, description)
  @key         = key
  @description = description
end

Instance Attribute Details

#descriptionObject (readonly)

Returns the value of attribute description.



52
53
54
# File 'lib/code_hunter/option_parser.rb', line 52

def description
  @description
end

#keyObject (readonly)

Returns the value of attribute key.



52
53
54
# File 'lib/code_hunter/option_parser.rb', line 52

def key
  @key
end

Instance Method Details

#to_symObject



59
60
61
62
63
64
65
66
# File 'lib/code_hunter/option_parser.rb', line 59

def to_sym
  str = @key
  str = without_head_hyphen(str)
  str = without_head_no(str)
  str = without_last_equal(str)
  str = underscored(str)
  str.to_sym
end