Flowdock
order!(argv, &blk) public

No documentation

This method has no description. You can help the RSpec community by adding new notes.

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
Register or log in to add new notes.