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
commitf3d3bc436829b5e9212e052cec50cded80cea2df (patch)
tree0d2ce31c56709e64a5ec66f03b8f061df34bbca2 /Library/Homebrew/extend
parentd8a83073ff69ea70f375238d810f833624823ea8 (diff)
downloadbrew-f3d3bc436829b5e9212e052cec50cded80cea2df.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 }