|
rspec is another ruby gem. I guess you don't have it installed. However, it is part of the Gemfile which means you should be able to run it in the scope of bundler, provided all dependencies are up to date. Try:
# just to make sure you have the latest gems
> bundler install
# run rspec using the bundler provided gems
> bundle exec rspec _spec/
|