method
order!

order!(argv, &blk)
public
Hide source
# File lib/spec/runner/option_parser.rb, line 123 def order!(argv, &blk) @argv = argv.dup @argv = (@argv.empty? && self.class.spec_command?) ? ['--help'] : @argv @options.argv = @argv.dup return if parse_generate_options return if parse_drb super(@argv) do |file| @options.files << file blk.call(file) if blk end @options end