I have test-unit installed and rspec installed (along with -core, -expectations, -mocks and -rails
test-unit
rspec
-core
-expectations
-mocks
-rails
There's no native way to do this with the rails CLI. Generate a new project without test-unit:
rails
rails new rails-app --skip-test
And then follow rspec instructions to integrate it into the new Rails app.