diff options
| author | Jack Nagel | 2012-08-12 00:58:31 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-08-12 00:58:31 -0500 |
| commit | 91081897c09ccd43f0ea222083d878193b2d508d (patch) | |
| tree | 185cdbcbabb3e2f178dd760077b0d24b5f27ccd8 /Library | |
| parent | c21552a9ff730f5d54e00258b28a461c29d2831a (diff) | |
| download | homebrew-91081897c09ccd43f0ea222083d878193b2d508d.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.rb | 1 | ||||
| -rw-r--r-- | Library/Homebrew/dependencies.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/formula_installer.rb | 1 | ||||
| -rw-r--r-- | Library/Homebrew/global.rb | 1 |
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) |
