Skip to content

Blog

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


Test-Driven Development (TDD) in Ruby: A Step-by-Step Guide

Test-Driven Development (TDD) in Ruby: A Step-by-Step Guide

In Test-Driven Development (TDD), you start with tests, not code. First, write a test that defines...
Avoid data migrations in the schema migrations for Rails

Avoid data migrations in the schema migrations for Rails

Avoid data migrations in the schema migrations for Rails Could you re-run all migrations...
How To Name Variables And Methods In Ruby

How To Name Variables And Methods In Ruby

How To Name Variables And Methods In Ruby What’s in a name? that which we call...
Where to read ENV variables in Ruby on Rails application

Where to read ENV variables in Ruby on Rails application

The ENV variables should not be used outside the config folder. This rule will allow the...
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...