# File lib/mongrel/command.rb, line 31 31: def options(opts) 32: # process the given options array 33: opts.each do |short, long, help, variable, default| 34: self.instance_variable_set(variable, default) 35: @opt.on(short, long, help) do |arg| 36: self.instance_variable_set(variable, arg) 37: end 38: end 39: end