aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/compat.rb1
-rw-r--r--Library/Homebrew/compat/tap.rb9
2 files changed, 10 insertions, 0 deletions
diff --git a/Library/Homebrew/compat.rb b/Library/Homebrew/compat.rb
index 19c92a523..4ee137f1d 100644
--- a/Library/Homebrew/compat.rb
+++ b/Library/Homebrew/compat.rb
@@ -1,4 +1,5 @@
require "compat/fails_with_llvm"
+require "compat/tap"
require "compat/formula"
require "compat/formula_specialties"
require "compat/hardware"
diff --git a/Library/Homebrew/compat/tap.rb b/Library/Homebrew/compat/tap.rb
new file mode 100644
index 000000000..fff6797f0
--- /dev/null
+++ b/Library/Homebrew/compat/tap.rb
@@ -0,0 +1,9 @@
+require "tap"
+
+class Tap
+ def core_formula_repository?
+ core_tap?
+ end
+end
+
+CoreFormulaRepository = CoreTap