Blog

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


TDD in Ruby: A Step-by-Step Guide

TDD in Ruby: A Step-by-Step Guide

A working Ruby tutorial for TDD on a small Order class. The 90-second loop, Shameless Green, Tidy First commits, and the reset move that makes it all safe.
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...