# File lib/mspec/utils/options.rb, line 82
82:   def add(short, long, arg, description, block)
83:     s = short ? short.dup : "  "
84:     s << (short ? ", " : "  ") if long
85:     doc "   #{s}#{long} #{arg}".ljust(@width-1) + " #{description}"
86:     @options << MSpecOption.new(short, long, arg, description, block)
87:   end