Back-end Design Patterns in Rails
Introduction In Rails applications, it’s easy to fall into the trap of scattering business logic where it doesn’t belong, especially in controllers. At first, it might seem harmless:…
Introduction In Rails applications, it’s easy to fall into the trap of scattering business logic where it doesn’t belong, especially in controllers. At first, it might seem harmless:…
1. Rails & Open Source: A Match Made in Developer Heaven Since its debut in 2004, Ruby on Rails has embraced open-source principles like no other framework before…
Introduction You've likely seen this old and famous demo presentation on how powerful and easy it is to build an app with Ruby on Rails. As the demo…
Hello again! In case you fell here and have no context whatsoever, don't worry! This is the final part of a two-part blog post, in the first part…
Wrap and Roll - Part I - Faraday In case you ever have interacted with external APIs, you most likely have noticed that not all SDKs or connections…
Have you ever wondered about the complexity of importing data from Excel files (.xlsx) into a Ruby on Rails project? Considering that .xlsx files aren't plain-text like CSV,…