aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/options.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/options.rb')
-rw-r--r--Library/Homebrew/options.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/options.rb b/Library/Homebrew/options.rb
index 947ce5acd..08f459b24 100644
--- a/Library/Homebrew/options.rb
+++ b/Library/Homebrew/options.rb
@@ -21,7 +21,7 @@ class Option
def ==(other)
instance_of?(other.class) && name == other.name
end
- alias_method :eql?, :==
+ alias eql? ==
def hash
name.hash
@@ -51,7 +51,7 @@ class DeprecatedOption
def ==(other)
instance_of?(other.class) && old == other.old && current == other.current
end
- alias_method :eql?, :==
+ alias eql? ==
end
class Options
@@ -106,7 +106,7 @@ class Options
any? { |opt| opt == o || opt.name == o || opt.flag == o }
end
- alias_method :to_ary, :to_a
+ alias to_ary to_a
def inspect
"#<#{self.class.name}: #{to_a.inspect}>"