diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula_support.rb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Library/Homebrew/formula_support.rb b/Library/Homebrew/formula_support.rb index d70a0aa59..7efda3564 100644 --- a/Library/Homebrew/formula_support.rb +++ b/Library/Homebrew/formula_support.rb @@ -8,14 +8,15 @@ class KegOnlyReason def initialize reason, explanation=nil @reason = reason @explanation = explanation - @valid = case @reason - when :provided_pre_mountain_lion then MacOS.version < :mountain_lion - else true - end end def valid? - @valid + case @reason + when :provided_pre_mountain_lion + MacOS.version < :mountain_lion + else + true + end end def to_s |
