News

A new standard of testing for GOV.UK - Technology in government
Sometimes it’s more practical to test a change manually, and over the years the idea of doing some kind of manual check had become a staple in our deployment process. But having too many manual checks can lead to problems. For example:it’s hard to...


Don't make me think, or why I switched to Rails from JavaScript SPAs
I picked Ruby on Rails over React-based SPA to build Reviewbunny and it was wonderful. I didn't procrastinate determining the perfect setup or choosing dependencies. Instead, I procrastinated after having finished the MVP. I'd rather do the latter...




What level of test coverage should I shoot for? - Code with Jason
“What level of test coverage should I shoot for?” is one of the questions most commonly asked by beginners to Rails testing.My answer is that you shouldn’t shoot for a particular level of test coverage. I recommend that instead you make testing a ...



Rails 7 allows setting timestamps on insert_all/upsert_all record creation | Saeloun Blog
ActiveRecord is one of the most useful utilities in the Rails toolkit. It allows us to perform complex database queries while abstracting the adapter, essentially making a database “pluggable”.However, some edge cases stand out like a sore thumb. ...