Blog

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


Minitest Advantages: Simple Testing for Rails Projects

Minitest Advantages: Simple Testing for Rails Projects

Minitest and RSpec are great testing tools for Ruby on Rails, each with its style, strengths, and...
Ruby on Rails 8: Simplifying Sharding with New Methods

Ruby on Rails 8: Simplifying Sharding with New Methods

Ruby on Rails 8 brings helpful updates for working with sharded databases. The new methods...
Ruby on Rails 8: Custom Compression for Encrypted Data

Ruby on Rails 8: Custom Compression for Encrypted Data

In Ruby on Rails 8, ActiveRecord's encryption features are more flexible than ever. You can now set a...
Ruby on Rails 8: How to Batch with Custom Columns

Ruby on Rails 8: How to Batch with Custom Columns

Ruby on Rails 8 introduces a handy feature for developers handling large datasets: batching with...
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...
Rails 8: Introducing the New Default Asset Pipeline – Propshaft

Rails 8: Introducing the New Default Asset Pipeline – Propshaft

The Rails asset pipeline helps manage static assets like CSS, JavaScript, and images. It improves...
Working with LLMs in Ruby on Rails: A Simple Guide

Working with LLMs in Ruby on Rails: A Simple Guide

Build AI features in Rails with LLMs. Step-by-step integration guide for OpenAI, Claude, and local models. Production code examples for Ruby developers ✓
Kamal Integration in Rails 8 by Default

Kamal Integration in Rails 8 by Default

In Rails 8, Kamal will be included by default. This change aims to simplify deployment and...
How to avoid N + 1 and keep your Ruby on Rails controller clean

How to avoid N + 1 and keep your Ruby on Rails controller clean

Where to put the logic related to database queries optimization in a Ruby on Rails...
Stop using Faker and random data in the test fixtures.

Stop using Faker and random data in the test fixtures.

Faker/FFaker can seem like the perfect solution to generate data for testing. In theory, Faker...