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
commited5f7dfbaa88562516eaa447ff69a891f49e3209 (patch)
tree51a0d97253036ae1d81885be286a031e808bc5ff /Library
parent962f4fa9ef4492fa62fc4c8aa6d827fa6d3f3590 (diff)
downloadbrew-ed5f7dfbaa88562516eaa447ff69a891f49e3209.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'