Rails: How to setup rspec on Rails
Add rspec to the Gemfile;
group :development, :test do
gem 'rspec-rails'
end
Install the dependencies
bundle install
Check if it was installed correctly
gem list rspec
You should see something like this
Check version
Install rspe...
blog.alexandrecalaca.com1 min read