Skip to main content
- App should have .ruby-version file
- Same version should be in Gemfile at the top
- All gems should be locked on minor version ('~> 5.0.1')
- Gems should be organized in groups
- Gems should have short description
- To know which gem should be update - rub bundle-audit or gem outdated
- Any keys shouldn't be in config/environments/
- db/seed.rb should exist.
- Check how many foreign keys grep -v 'add_index' db/schema.rb | grep '_id' | wc -l and compare it with grep 'add_index' db/schema.rb | wc -
https://medium.com/planet-argon-tenets/
Comments
Post a Comment