Understanding TypeProf: Design Goals, Limitations, and Effective Use in Ruby

Image

Understanding TypeProf: Design Goals, Limitations, and Effective Use in Ruby January 28, 2026 TypeProf is an official type inference tool for Ruby that has gained attention as part of the ecosystem surrounding RBS, Steep, and Sorbet. Despite this visibility, it is frequently misunderstood and often perceived as “not working” by first-time users. This article analyzes … Continue reading Understanding TypeProf: Design Goals, Limitations, and Effective Use in Ruby

Ruby Can Create Images Again

Image

January 5, 2026 How ruby-libgd brings a real raster engine back to Ruby For many years, Ruby quietly lost something fundamental: The ability to generate images natively, fast, and with full control. Yes, RMagick and MiniMagick exist. But they depend on external binaries, are slow, fragile in production, and unsuitable for things like: map tile … Continue reading Ruby Can Create Images Again

🔐 Securing Your Ruby Apps with bundler-audit

Image

June 10, 2025 In today’s world of frequent security breaches, keeping your Ruby application’s dependencies secure is non-negotiable. That’s where bundler-audit steps in—a powerful command-line tool that scans your Gemfile.lock for known vulnerabilities and insecure gem sources. 🛠 What is bundler-audit? bundler-audit checks your project for: Vulnerable versions of gems (by comparing with the ruby-advisory-db) … Continue reading 🔐 Securing Your Ruby Apps with bundler-audit

🔧 Making Ruby on Rails Integration Easier with trix-genius Generators

Image

April 9, 2025 I recently added a Rails Generator to the trix-genius gem — a small improvement that aims to make integration smoother and faster for developers using Trix with Rails and Stimulus. 👉 TL;DR: rails generate trix_genius:install now does the setup for you. 💬 Need a Custom Ruby Gem for Your App? If you're … Continue reading 🔧 Making Ruby on Rails Integration Easier with trix-genius Generators

Creating a Ruby Gem to Add AI Power to the Trix Text Editor – Trix-Genius v0.0.5

Image

April 1, 2025 Welcome to the second article in my three-part series on building and releasing Ruby gems. In the first article, we talked about Ruby gems and how they can simplify your Rails applications. In this article, I’ll dive deeper into the process of creating a gem designed to add AI-powered functionality to the … Continue reading Creating a Ruby Gem to Add AI Power to the Trix Text Editor – Trix-Genius v0.0.5

Creating a Ruby Gem Scaffold with Docker and PostgreSQL

Image

March 25, 2025 Introduction When building a new Ruby gem, setting up a consistent and isolated development environment is crucial. In this article, I’ll walk you through how I set up a Docker-based scaffold for a Ruby gem, ensuring a clean and reproducible setup with PostgreSQL integration. 💎 Build & Distribute Your Own Ruby Gem! … Continue reading Creating a Ruby Gem Scaffold with Docker and PostgreSQL