Skip to content

Blog

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


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...
Incremental lint fixes by GitHub Actions

Incremental lint fixes by GitHub Actions

How do you apply new lint rules to the legacy project with active development? Have you added...
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...
How To Setup Default Values For Attributes In Ruby On Rails

How To Setup Default Values For Attributes In Ruby On Rails

Have you ever thought setting default values for attributes in Ruby on Rails could be...
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...