# File lib/mongrel/command.rb, line 43
43:       def options(opts)
44:         # process the given options array
45:         opts.each do |short, long, help, variable, default|
46:           self.instance_variable_set(variable, default)
47:           @opt.on(short, long, help) do |arg|
48:             self.instance_variable_set(variable, arg)
49:           end
50:         end
51:       end