I am trying to deploy ruby on rails project on render platform. I inherited this project in my school and added new features there. I get the following error when I run my Rails application in production mode, but when I run my app in development mode it works fine. "Unable to load application: LoadError: cannot load such file -- database_cleaner/active_record ".
I tried to follow all steps in docs https://render.com/docs/deploy-rails, reinstall cleaner gem, checked compatability, nothing helped
Here are a few steps you can take to troubleshoot and resolve the issue:
Environment Configuration: Check your config/environments/production.rb file or the relevant environment configuration file. Ensure that the database_cleaner gem is not explicitly disabled or excluded in the production environment.
Database Cleaner Configuration: If you are using database_cleaner for test purposes only, make sure that it is correctly configured in your spec_helper.rb or rails_helper.rb file and not causing issues in the production environment.
Example configuration in rails_helper.rb:
Notes: Ensure that you are using a version of database_cleaner that is compatible with your Rails version.