Class: Option Private
- Inherits:
-
Object
- Object
- Option
- Defined in:
- Library/Homebrew/options.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
A formula option.
Instance Attribute Summary collapse
- #description ⇒ Object readonly private
- #flag ⇒ Object readonly private
- #name ⇒ Object readonly private
Instance Method Summary collapse
- #<=>(other) ⇒ Object private
- #==(other) ⇒ Object (also: #eql?) private
- #hash ⇒ Object private
-
#initialize(name, description = "") ⇒ Option
constructor
private
A new instance of Option.
- #inspect ⇒ Object private
- #to_s ⇒ Object private
Constructor Details
#initialize(name, description = "") ⇒ Option
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Option.
10 11 12 13 14 |
# File 'Library/Homebrew/options.rb', line 10 def initialize(name, description = "") @name = name @flag = "--#{name}" @description = description end |
Instance Attribute Details
#description ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
8 9 10 |
# File 'Library/Homebrew/options.rb', line 8 def description @description end |
#flag ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
8 9 10 |
# File 'Library/Homebrew/options.rb', line 8 def flag @flag end |
#name ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
8 9 10 |
# File 'Library/Homebrew/options.rb', line 8 def name @name end |
Instance Method Details
#<=>(other) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
20 21 22 23 24 |
# File 'Library/Homebrew/options.rb', line 20 def <=>(other) return unless other.is_a?(Option) name <=> other.name end |
#==(other) ⇒ Object Also known as: eql?
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
26 27 28 |
# File 'Library/Homebrew/options.rb', line 26 def ==(other) instance_of?(other.class) && name == other.name end |
#hash ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
31 32 33 |
# File 'Library/Homebrew/options.rb', line 31 def hash name.hash end |
#inspect ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
35 36 37 |
# File 'Library/Homebrew/options.rb', line 35 def inspect "#<#{self.class.name}: #{flag.inspect}>" end |
#to_s ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
16 17 18 |
# File 'Library/Homebrew/options.rb', line 16 def to_s flag end |