Class: Guideline::OptionParser::Argument
- Inherits:
-
Object
- Object
- Guideline::OptionParser::Argument
- Defined in:
- lib/guideline/option_parser.rb
Instance Attribute Summary collapse
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#key ⇒ Object
readonly
Returns the value of attribute key.
Instance Method Summary collapse
-
#initialize(key, description) ⇒ Argument
constructor
A new instance of Argument.
- #to_sym ⇒ Object
Constructor Details
#initialize(key, description) ⇒ Argument
Returns a new instance of Argument.
57 58 59 60 |
# File 'lib/guideline/option_parser.rb', line 57 def initialize(key, description) @key = key @description = description end |
Instance Attribute Details
#description ⇒ Object (readonly)
Returns the value of attribute description.
55 56 57 |
# File 'lib/guideline/option_parser.rb', line 55 def description @description end |
#key ⇒ Object (readonly)
Returns the value of attribute key.
55 56 57 |
# File 'lib/guideline/option_parser.rb', line 55 def key @key end |
Instance Method Details
#to_sym ⇒ Object
62 63 64 65 66 67 68 69 |
# File 'lib/guideline/option_parser.rb', line 62 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 |