I've looked around online a bit but cannot find any examples of (or evidence that it is even possible to) have RSpec run a set of specs listed in an arbitrary file as some other test frameworks can do. I don't really want to build a command line that is thousands of characters long in order to run many specific tests but I can easily stick the list of specs that I want to run in a file like this:
```
path/to/some_spec.rb[1:1:1]
path/to/some_spec.rb[1:2:1]
path/to/some_other_spec.rb[3:1]
...
etc.
```
Does RSpec have a mechanism that can handle that kind of input or am I limited to just specifying files and patterns on the command line?
Thanks,
Eric K