Why I Still Choose Ruby on Rails in the Age of AI
Haruku, a freelance developer and founder, explains why they continue to choose Ruby on Rails in 2026 despite the rise of AI and other modern frameworks. They value Rails' convention-over-configuration approach, which reduces decision fatigue and enforces consistent, maintainable code structure. This opinionated design, they argue, complements AI-generated code by limiting architectural drift and keeping development efficient for small teams.
- ▪Haruku is a freelance developer who has launched projects using TypeScript, Go, and Rust but consistently returns to Ruby on Rails.
- ▪Rails’ 'Convention over Configuration' philosophy reduces the number of decisions developers must make, improving consistency and reducing stress.
- ▪The framework’s opinionated structure helps prevent AI-generated code from introducing architectural inconsistencies.
- ▪Rails is particularly effective for small teams of one to five developers, aligning with a lean, bootstrapped business approach.
- ▪The author plans to use Rails for all future businesses through their company, viewing it as ideal for CRUD-based applications in the AI era.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3936080) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Hulk in Public Posted on May 17 Why I Still Choose Ruby on Rails in the Age of AI #rails #ruby #ai #solopreneur Hello, I’m Haruku, a freelance developer. After recently starting my own company, I’ve found myself thinking more about what kind of web framework fits the age of AI. I entered the world of computer science through Ruby, and since then I’ve launched side projects using popular technologies such as TypeScript (Next.js, Nuxt.js), Go, and Rust.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).