aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/build_options.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/build_options.rb')
-rw-r--r--Library/Homebrew/build_options.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/Library/Homebrew/build_options.rb b/Library/Homebrew/build_options.rb
index a50aa21c1..e104a870a 100644
--- a/Library/Homebrew/build_options.rb
+++ b/Library/Homebrew/build_options.rb
@@ -1,8 +1,6 @@
require 'options'
class BuildOptions
- include Enumerable
-
attr_accessor :args
attr_accessor :universal
@@ -16,18 +14,6 @@ class BuildOptions
@args = other.args.dup
end
- def empty?
- @options.empty?
- end
-
- def each(*args, &block)
- @options.each(*args, &block)
- end
-
- def as_flags
- @options.as_flags
- end
-
def include? name
args.include? '--' + name
end