aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-25 15:22:32 -0800
committerAdam Vandenberg2012-02-25 15:22:32 -0800
commited5727925633ba6e307399afc04e91f1516f2b35 (patch)
treefae88beaacc3e6690f846dbdc826630bf3727105 /Library
parent8a4cb8c0acda73dae4234caeaeaa3a24eeb7b56c (diff)
downloadbrew-ed5727925633ba6e307399afc04e91f1516f2b35.tar.bz2
Add "require hardware" to formula.rb
Now individual formulae don't need to require this if they want to use Hardware methods outside of `def install`.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index ebe858897..fe9598b25 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -1,6 +1,7 @@
require 'download_strategy'
require 'fileutils'
require 'formula_support'
+require 'hardware'
# Derive and define at least @url, see Library/Formula for examples