aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2016-07-29 20:31:32 -0600
committerMike McQuaid2016-07-29 21:21:02 -0600
commit164e46a7290769204c3078c3c371e93f04e4ed5b (patch)
tree849b22afb29b6f82a5876bd34790b963afcff870 /Library
parentbcee1e08415ee6f8bc961dc58c41c18a40278b43 (diff)
downloadbrew-164e46a7290769204c3078c3c371e93f04e4ed5b.tar.bz2
Add missing development_tools requires.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/install.rb1
-rw-r--r--Library/Homebrew/cmd/reinstall.rb1
-rw-r--r--Library/Homebrew/cmd/upgrade.rb1
-rw-r--r--Library/Homebrew/dev-cmd/test-bot.rb1
-rw-r--r--Library/Homebrew/diagnostic.rb1
-rw-r--r--Library/Homebrew/extend/ENV/shared.rb1
-rw-r--r--Library/Homebrew/formula_installer.rb1
-rw-r--r--Library/Homebrew/tab.rb1
8 files changed, 8 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb
index 935865bcc..d460452c5 100644
--- a/Library/Homebrew/cmd/install.rb
+++ b/Library/Homebrew/cmd/install.rb
@@ -61,6 +61,7 @@ require "cmd/search"
require "formula_installer"
require "tap"
require "hardware"
+require "development_tools"
module Homebrew
def install
diff --git a/Library/Homebrew/cmd/reinstall.rb b/Library/Homebrew/cmd/reinstall.rb
index aa705cff3..a7bbef32d 100644
--- a/Library/Homebrew/cmd/reinstall.rb
+++ b/Library/Homebrew/cmd/reinstall.rb
@@ -2,6 +2,7 @@
#: Uninstall then install <formula>
require "formula_installer"
+require "development_tools"
module Homebrew
def reinstall
diff --git a/Library/Homebrew/cmd/upgrade.rb b/Library/Homebrew/cmd/upgrade.rb
index d2e251783..382ff6b71 100644
--- a/Library/Homebrew/cmd/upgrade.rb
+++ b/Library/Homebrew/cmd/upgrade.rb
@@ -10,6 +10,7 @@
require "cmd/install"
require "cleanup"
+require "development_tools"
module Homebrew
def upgrade
diff --git a/Library/Homebrew/dev-cmd/test-bot.rb b/Library/Homebrew/dev-cmd/test-bot.rb
index 5c4d7000e..52e73565f 100644
--- a/Library/Homebrew/dev-cmd/test-bot.rb
+++ b/Library/Homebrew/dev-cmd/test-bot.rb
@@ -39,6 +39,7 @@ require "rexml/document"
require "rexml/xmldecl"
require "rexml/cdata"
require "tap"
+require "development_tools"
module Homebrew
BYTES_IN_1_MEGABYTE = 1024*1024
diff --git a/Library/Homebrew/diagnostic.rb b/Library/Homebrew/diagnostic.rb
index 62f63b34f..ccd159989 100644
--- a/Library/Homebrew/diagnostic.rb
+++ b/Library/Homebrew/diagnostic.rb
@@ -2,6 +2,7 @@ require "keg"
require "language/python"
require "formula"
require "version"
+require "development_tools"
module Homebrew
module Diagnostic
diff --git a/Library/Homebrew/extend/ENV/shared.rb b/Library/Homebrew/extend/ENV/shared.rb
index 62aa311ec..3566a5c50 100644
--- a/Library/Homebrew/extend/ENV/shared.rb
+++ b/Library/Homebrew/extend/ENV/shared.rb
@@ -1,5 +1,6 @@
require "formula"
require "compilers"
+require "development_tools"
# Homebrew extends Ruby's `ENV` to make our code more readable.
# Implemented in {SharedEnvExtension} and either {Superenv} or
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index 1285db794..eb98d8063 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -14,6 +14,7 @@ require "debrew"
require "sandbox"
require "requirements/cctools_requirement"
require "emoji"
+require "development_tools"
class FormulaInstaller
include FormulaCellarChecks
diff --git a/Library/Homebrew/tab.rb b/Library/Homebrew/tab.rb
index 42d4e3645..22489c4e5 100644
--- a/Library/Homebrew/tab.rb
+++ b/Library/Homebrew/tab.rb
@@ -2,6 +2,7 @@ require "cxxstdlib"
require "ostruct"
require "options"
require "utils/json"
+require "development_tools"
# Inherit from OpenStruct to gain a generic initialization method that takes a
# hash and creates an attribute for each key and value. `Tab.new` probably