Remove default argument

This method is called in two places, always with two arguments.
This commit is contained in:
Jack Nagel 2014-08-07 00:48:13 -05:00
parent acc1c35f35
commit dc9872eb83

View File

@ -20,7 +20,7 @@ class BuildOptions
@args = other.args.dup
end
def add name, description=nil
def add(name, description)
description ||= case name.to_s
when "universal" then "Build a universal binary"
when "32-bit" then "Build 32-bit only"