aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2012-08-12 00:58:31 -0500
committerJack Nagel2012-08-12 00:58:31 -0500
commitc9f824b54a068c69f9c2202362f6114460ecf8d6 (patch)
treeec98225c28579573c5cec61dd433794c229e6cb5 /Library
parentd1c0d4c8793d6ea80f1e9dd3759aa22eb506211a (diff)
downloadbrew-c9f824b54a068c69f9c2202362f6114460ecf8d6.tar.bz2
Make Set available globally
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/doctor.rb1
-rw-r--r--Library/Homebrew/dependencies.rb2
-rw-r--r--Library/Homebrew/formula_installer.rb1
-rw-r--r--Library/Homebrew/global.rb1
4 files changed, 1 insertions, 4 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index 1d46405b9..41f952b1e 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -1,4 +1,3 @@
-require 'set'
require 'cmd/missing'
class Volumes
diff --git a/Library/Homebrew/dependencies.rb b/Library/Homebrew/dependencies.rb
index 8407a7a70..c4b8f0b67 100644
--- a/Library/Homebrew/dependencies.rb
+++ b/Library/Homebrew/dependencies.rb
@@ -1,5 +1,3 @@
-require 'set'
-
## This file defines dependencies and requirements.
##
## A dependency is a formula that another formula needs to install.
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index 8f4f1b799..bb9b7e230 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -1,7 +1,6 @@
require 'exceptions'
require 'formula'
require 'keg'
-require 'set'
require 'tab'
require 'bottles'
diff --git a/Library/Homebrew/global.rb b/Library/Homebrew/global.rb
index a8dd3b04e..4bd8723cc 100644
--- a/Library/Homebrew/global.rb
+++ b/Library/Homebrew/global.rb
@@ -3,6 +3,7 @@ require 'extend/ARGV'
require 'extend/string'
require 'utils'
require 'exceptions'
+require 'set'
ARGV.extend(HomebrewArgvExtension)