I want to define some rspec specs that will run at the end of the test suite. The reason being is that they will read the log output, generate some statistics and fail if the numbers are too high. In order to run correctly the test suite needs to be finished so that the log is complete.
Is there a way to run an rspec test suite with a particular spec/tag last? I'm running the rspecs through rake at the moment so I've just defined a separate rake task that runs second, but I'd like a cleaner way if possible.