Andrew Fosterandrewfoster.hashnode.dev·Jun 10, 2022Collections and Resources - DRYing UpNow that I've got some scaffolded code in there for the models I intend to use for this application there is something I can do to DRY up the code somewhat. Looking at CodeClimate for my repository as it stands right now it has given me a rating of C...1 like·92 readsRails 7 ApplicationRuby on Rails
Andrew Fosterandrewfoster.hashnode.dev·Jun 9, 2022Testing and Continuous IntegrationPreviously for CI/CD I have used CircleCI, TravisCI and other platforms (like Bamboo). For this project I will use GitHub Actions to see if that can do everything I need. In the Actions tab of my GitHub repository is the option to add a new workflow....133 readsRails 7 ApplicationTesting
Andrew Fosterandrewfoster.hashnode.dev·Jun 8, 2022Monitoring code qualityI want to keep an eye on best practices when it comes to writing my Ruby. This includes style, security, performance and readability/maintainability. There are a number of tools to assist with this. Rubocop The standard style guide for Ruby has been ...132 readsRails 7 ApplicationRubocop