Skip to content

Instantly share code, notes, and snippets.

@amitpatelx
Created September 6, 2019 08:08
Show Gist options
  • Save amitpatelx/03dc8caf3d55b47cd491df40bce9de01 to your computer and use it in GitHub Desktop.
Save amitpatelx/03dc8caf3d55b47cd491df40bce9de01 to your computer and use it in GitHub Desktop.
Basic gems used for rspec integration in Rails
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] # for debugging
gem 'rspec-rails', '~> 3.8', '>= 3.8.2' # drop-in alternative testing framework for Minitest
gem 'factory_bot_rails' # replaces Rails fixtures
gem 'database_cleaner' # ensures a clean state for testing
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment