I have test-unit installed and rspec installed (along with -core, -expectations, -mocks and -rails
test-unit
rspec
-core
-expectations
-mocks
-rails
The following should work:
rails new MYAPP -T # The -T option tells rails not to include Test::Unit
gem 'rspec-rails'
bundle install rails g rspec:install