aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/extend
diff options
context:
space:
mode:
authorJack Nagel2013-01-23 00:26:20 -0600
committerJack Nagel2013-01-26 11:37:00 -0600
commit8d0c65e47b69ac7625e5b467a5c4ca7feb632d0f (patch)
tree724bf1990b1b4b7a3ff5f10fa575296aeaef8b8c /Library/Homebrew/extend
parent76c01e91e43f2403635f69be253d2ef6727b065d (diff)
downloadhomebrew-8d0c65e47b69ac7625e5b467a5c4ca7feb632d0f.tar.bz2
Move option comparison into BuildOptions
Diffstat (limited to 'Library/Homebrew/extend')
-rw-r--r--Library/Homebrew/extend/ARGV.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/Library/Homebrew/extend/ARGV.rb b/Library/Homebrew/extend/ARGV.rb
index e409199aa..5f9b992a8 100644
--- a/Library/Homebrew/extend/ARGV.rb
+++ b/Library/Homebrew/extend/ARGV.rb
@@ -7,14 +7,6 @@ module HomebrewArgvExtension
select {|arg| arg[0..0] == '-'}
end
- def used_options f
- f.build.as_flags & options_only
- end
-
- def unused_options f
- f.build.as_flags - options_only
- end
-
def formulae
require 'formula'
@formulae ||= downcased_unique_named.map{ |name| Formula.factory name }