Skip to content

Blog

Browse through our blog page filled with updated information and the latest tips to help you achieve your goals.


Placeholder Image

How we configure Simplecov for our Ruby on Rails projects.

Here’s a step-by-step guide to setting up simplecov with explanations of what each part of the code...
Integrating Bun with Vite Ruby for Lightning-Fast Frontend Builds

Integrating Bun with Vite Ruby for Lightning-Fast Frontend Builds

With the recent release of Bun and its newfound support for Vite, coupled with Ruby on Rails 7.1...
Ruby on Rails Views Resources for Frontend Developer

Ruby on Rails Views Resources for Frontend Developer

🚀 Excited to share some awesome resources to help front-end developers onboard into the Ruby on Rails...
How to keep clean Ruby on Rails views with the Null Object pattern

How to keep clean Ruby on Rails views with the Null Object pattern

One of the most common errors developers encounter is NoMethodError. It occurs when code is...
Custom templates for Rails scaffolding

Custom templates for Rails scaffolding

Rails has a very handy tool for rapid development called scaffolding. Often programmers ignore it,...
How to avoid callbacks using services.

How to avoid callbacks using services.

Often, programmers abuse callbacks, not fully understanding that their code will ultimately be...
Data migrations with Rails

Data migrations with Rails

Data migration is a common part of working with databases, and Ruby on Rails developers have many...
How to use Ruby on Rails Concerns

How to use Ruby on Rails Concerns

A Rails concern is a module that extends the ActiveSupport::Concern module. You can use Сoncerns to...
What is the difference between joins and includes in Rails ActiveRecord?

What is the difference between joins and includes in Rails ActiveRecord?

The main difference is that when using includes the eager loading is used. Eager loading allows you...
Preview UI changes with Ruby on Rails variants

Preview UI changes with Ruby on Rails variants

When implementing new design for a live application we usually don’t want our users to see an...