I believe that you should be able to do this with the funcionality built into the sublime text's build system, by piggybacking on the error capturing functionality. although I'm not 100% sure if the clicking is supported.
There is some documentation here and here about setting them up. If you dig around in the default packages supplied with sublime text should be be able to find some more examples.
You'll want to make a build system that spawns off your rspec cmd. In the build configuration, you'll want to pay special attention to the the "file_regex" key. This will let you define a regex to capture the error output of the cmd.
Here is what the documentation says about it:
The file_regex option uses a Perl-style regular expression to capture up to four fields of error information from the build program’s output, namely: file name, line number, column number and error message. Use groups in the pattern to capture this information. The file name field and the line number field are required.
When error information is captured, you can navigate to error
instances in your project’s files with F4 and Shift+F4. If available,
the captured error message will be displayed in the status bar.
Also you might be able to get some more traction over at the sublimetext forums about the particulars.
Formatterclasses. See github.com/shingara/rspec-formatter for an example. You could then output the file:line paths as uris, then try to register a handler for that uri scheme which takes the url and calls thesublcommand with appropriate args – Rob Cowie Dec 1 '11 at 15:56