Class: DeprecatedOption Private
Overview
This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.
A deprecated formula option.
Instance Attribute Summary collapse
-
#current ⇒ Object
readonly
private
-
#old ⇒ Object
readonly
private
Instance Method Summary collapse
-
#==(other) ⇒ Object
(also: #eql?)
private
-
#current_flag ⇒ String
private
-
#initialize(old, current) ⇒ DeprecatedOption
constructor
private
A new instance of DeprecatedOption.
-
#old_flag ⇒ String
private
Constructor Details
#initialize(old, current) ⇒ DeprecatedOption
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
Returns a new instance of DeprecatedOption.
47 48 49 50 |
# File 'options.rb', line 47 def initialize(old, current) @old = old @current = current end |
Instance Attribute Details
#current ⇒ Object (readonly)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
45 46 47 |
# File 'options.rb', line 45 def current @current end |
#old ⇒ Object (readonly)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
45 46 47 |
# File 'options.rb', line 45 def old @old end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
62 63 64 |
# File 'options.rb', line 62 def ==(other) instance_of?(other.class) && old == other.old && current == other.current end |
#current_flag ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
58 59 60 |
# File 'options.rb', line 58 def current_flag "--#{current}" end |
#old_flag ⇒ String
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
53 54 55 |
# File 'options.rb', line 53 def old_flag "--#{old}" end |