Skip to content

Blog

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


Anonymous block argument in Ruby

Anonymous block argument in Ruby

In the Ruby programming language, it is possible to use default block parameters instead of...
Custom ordering without custom SQL with Ruby on Rails 7

Custom ordering without custom SQL with Ruby on Rails 7

The problem It's a common case for Rails applications to have enum fields on a model like: class...
New methods that help implement authentication in Ruby on Rails 7.1

New methods that help implement authentication in Ruby on Rails 7.1

The new version of Ruby on Rails 7.1 has many new features, some of which make writing your own...
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...
How a large transaction can be a source of DB deadlocks and how this can be fixed.

How a large transaction can be a source of DB deadlocks and how this can be fixed.

Recently in a project, we encountered the fact that sometimes we had a DB Deadlocks error. After...
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...
Troubleshooting ruby build

Troubleshooting ruby build

Have you found problems building ruby on a local machine? How to configure your local environment...
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,...
Auto-install system dependencies for Ruby on Rails

Auto-install system dependencies for Ruby on Rails

Let's integrate Homebrew into our Ruby on Rails Project local set up. There is a convention for Ruby...
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...