aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2012-03-06 00:26:25 -0600
committerJack Nagel2012-03-06 00:28:50 -0600
commitd8c7ce480faff6921277ccb82dce24013e99bf00 (patch)
treefbd94242f55add7d1a80c34437cf435070021165 /Library
parent31a4db558cbc28480796ec020513c5b05c57f5c4 (diff)
downloadhomebrew-d8c7ce480faff6921277ccb82dce24013e99bf00.tar.bz2
Require specialties at the end of formula.rb
classes in formula_specialties.rb need Formula, so it has to be last. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 7f9a468f7..0e2e96e50 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -2,7 +2,6 @@ require 'download_strategy'
require 'formula_support'
require 'hardware'
require 'extend/fileutils'
-require 'formula_specialties'
# Derive and define at least @url, see Library/Formula for examples
@@ -727,3 +726,5 @@ private
end
end
end
+
+require 'formula_specialties'