Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KegOnlyReason: Reasons related to macOS valid only on macOS #4695

Merged
merged 1 commit into from
Aug 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions Library/Homebrew/extend/os/formula_support.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require "extend/os/mac/formula_support" if OS.mac?
5 changes: 5 additions & 0 deletions Library/Homebrew/extend/os/mac/formula_support.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class KegOnlyReason
def valid?
true
end
end
4 changes: 3 additions & 1 deletion Library/Homebrew/formula_support.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def initialize(reason, explanation)
end

def valid?
true
![:provided_by_macos, :provided_by_osx, :shadowed_by_macos].include?(@reason)
end

def to_s
Expand Down Expand Up @@ -61,3 +61,5 @@ def to_s
@reason
end
end

require "extend/os/formula_support"