Minitreks. ioblog.minitreks.com·Oct 18, 2024Fun Facts About AnimalsThe Mayfly is the shortest-lived animal in the world, with a lifespan of 24 hours The Mayfly, known for having the shortest adult lifespan in the animal kingdom, reproduces and then dies within just 24 hours. However, some species live even shorter ...funfacts
Prabin Poudelblog.zeroconfigrails.com·Sep 26, 2024Configure Minitest with Gitlab CI and RailsAt Zero Config Rails, I (Prabin) am constantly working on automating configurations and boring setups like “Configure Minitest with Gitlab CI”. 💡 You can configure the Gitlab CI for Minitest with a single command using Zero Config Rails. Just hit t...199 readsRails
Janak Singh Dhamijsdhami.hashnode.dev·Mar 25, 2024Test Driven Development in Ruby Using Linux SystemTest-Driven Development (TDD) is a powerful methodology that emphasizes writing tests before implementing code, ensuring a more robust and error-resistant software development process. In this blog post, we’ll explore how to implement TDD in Ruby on ...TDD (Test-driven development)
Ajay Krishnanideas.krishnan.ca·Jul 26, 2023When rails fixtures and namespaces collideTesting helps Rails apps work properly and stops bugs. Fixtures are a useful testing tool. But fixtures can cause problems when models are namespaced. Say your app has a regular Vehicle model and a namespaced Vehicles::Car model. By convention, you'd...30 readsRails
Andrew Fosterandrewfoster.hashnode.dev·Aug 1, 2022Error HandlingErrors in an application are the bane of not just the owners of the application, but even more so for the users of that application. I know for sure there will be errors on occasion, most certainly validation errors but there could be other general e...108 readsRails 7 ApplicationRuby on Rails