diff options
| author | Dominyk Tiller | 2017-04-28 04:56:22 +0100 |
|---|---|---|
| committer | Dominyk Tiller | 2017-05-01 19:22:40 +0100 |
| commit | 25ffa301b8a4f3613886158f7a8848ca53e634f3 (patch) | |
| tree | 2f6605016a26f46778f75c8ac0e057df9d82e02f | |
| parent | 85053b1476f9aee0f4608ea77f1594bec7014ac1 (diff) | |
| download | brew-25ffa301b8a4f3613886158f7a8848ca53e634f3.tar.bz2 | |
formula_support: keg_only style harmonisation
| -rw-r--r-- | Library/Homebrew/formula_support.rb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Homebrew/formula_support.rb b/Library/Homebrew/formula_support.rb index b8476f5cc..4d963a55e 100644 --- a/Library/Homebrew/formula_support.rb +++ b/Library/Homebrew/formula_support.rb @@ -32,30 +32,30 @@ class KegOnlyReason return @explanation unless @explanation.empty? case @reason when :versioned_formula then <<-EOS.undent - This is an alternate version of another formula. + this is an alternate version of another formula EOS when :provided_by_macos, :provided_by_osx then <<-EOS.undent macOS already provides this software and installing another version in - parallel can cause all kinds of trouble. + parallel can cause all kinds of trouble EOS when :shadowed_by_macos, :shadowed_by_osx then <<-EOS.undent macOS provides similar software and installing this software in - parallel can cause all kinds of trouble. + parallel can cause all kinds of trouble EOS when :provided_pre_mountain_lion then <<-EOS.undent - macOS already provides this software in versions before Mountain Lion. + macOS already provides this software in versions before Mountain Lion EOS when :provided_pre_mavericks then <<-EOS.undent - macOS already provides this software in versions before Mavericks. + macOS already provides this software in versions before Mavericks EOS when :provided_pre_el_capitan then <<-EOS.undent - macOS already provides this software in versions before El Capitan. + macOS already provides this software in versions before El Capitan EOS when :provided_until_xcode43 then <<-EOS.undent - Xcode provides this software prior to version 4.3. + Xcode provides this software prior to version 4.3 EOS when :provided_until_xcode5 then <<-EOS.undent - Xcode provides this software prior to version 5. + Xcode provides this software prior to version 5 EOS else @reason |
