207
208
209
210
211
212
213
214
215
216
|
# File 'lib/supplemental/facets/argvector.rb', line 207
def parse
args = assoc_options(argv)
opts, opds = args.partition{ |a| Array === a }
@operands = opds
@options = format_options(opts)
return @operands, @options
end
|